Mounting Windows Shares Automatically

If you want to mount a remote windows share,

you can use the command below:

sudo mount -t smbfs //path/to/share /path/to/local/directory -o
username=username,password=password,rw,uid=user_id,gid=group_id

You can edit /etc/rc.local in order to enable mount operation everytime system boots up.

Comments are closed.