Automount Samba share

Automount Samba share during boot. This is very easy to accomplish in Ubuntu or any other Linux distribution.

First backup your original /etc/fstab file.

sudo cp /etc/fstab /etc/fstab.backup

Then, install the smbfs package if you dont already have it:

sudo apt-get install smbfs

Next, edit /etc/fstab in your favorite editor.

sudo nano -w /etc/fstab

Add the following line as a new single line into fstab file:

\\SAMBASERVERShareName /mountlocation smbfs user=username,passwd=password 0 0

Automount Samba share Notes

SAMBASERVER is the domain name, hostname or ip address of the Samba server.
ShareName is the name of the samba share (can be found in /etc/samba/smb.conf file on the server).
/mountlocation is the location on the computer where you would like to mount the Samba share. username and password are the username and password to access the Samba share.

Recommended Guides on Linux Commands:

Here is an example:

\\192.168.1.100movies /media/movies smbfs user=ryan,passwd=xXxXxXxXxXx 0 0

Note that everything is in a single line. "192.168.1.100" can also be mysambaserver.com if you have domain name setup.

I hope it works for you. Good luck!.

Be the 1 in 200,000. Help us sustain what we do.
34 / 150 by Dec 31, 2024
Join Us (starting from just $1.67/month)

Anand

Anand is a self-learned computer enthusiast, hopeless tinkerer (if it ain't broke, fix it), a part-time blogger, and a Scientist during the day. He has been blogging since 2010 on Linux, Ubuntu, Home/Media/File Servers, Smart Home Automation, and related HOW-TOs.