Mount NAS share under Linux
April 13, 2020More of a note-to-self, but here’s how to mount a CIFS (or SMB) share on Ubuntu Linux (192.168.1.20 is the NAS IP address in this case):
mkdir ~/data_flightsim/
sudo apt-get install cifs-utils
sudo mount -t cifs -o username=my-username,uid=$(id -u),gid=$(id -g) //192.168.1.20/data_flightsim ~/data_flightsim/