Ubuntu 16.04 – auto mount smb share
Create a file where your smb credentials are stored. e.g. touch /etc/samba/user sudo gedit /etc/samba/user Enter your credentials like this: username=samba_user password=samba_user_password create the directory where you want your smb share should be mounted sudo mkdir /media/smb_share edit your fstab to auto-mount your smb share sudo gedit /etc/fstab add a line like this: //myserver_ip_address/folderToShare/ /media/smb_share/ […]