Raspberry PI CIFS mount on boot
Today I've Learned postIn order to mount NAS unit / network folder in linux / Raspbery PI
place this in your /etc/fstab
//192.168.1.150/Volume_1/ /mnt/mymount cifs uid=1000,gid=1000,rw,username=myusername,password=MyPAssWD 0 0
# or if you use older samba version
//192.168.1.150/Volume_1/ /mnt/mymount cifs uid=1000,gid=1000,vers=1.0,rw,username=myusername,password=MyPAssWD 0 0
Now in order for Rasp PI to mount this on boot you need
to configure in sudo raspi-config
Boot Options > Wait for Network at Boot > Yes
source
Entire blog website and all the articles can be forked from this Github Repo