Basically I'm trying to use fstab to automatically mount a smb share on my NAS at boot. I've already made the folder for it (media/lg-nas) and have successfully had this configured in past installations of Kubuntu, however for some reason this time around it doesn't want to work.
It's simply not mounting the share. What was confusing me however is that running
still works; the share will then be mounted and all will be fine.
If it helps the share requires no credentials for rw access. My fstab line is as follows:
Cheers for any help; not the end of the world running mount -a after each boot, but would rather not having to.
It's simply not mounting the share. What was confusing me however is that running
Code:
sudo mount -a
If it helps the share requires no credentials for rw access. My fstab line is as follows:
Code:
//192.168.1.5/Volume /media/lg-nas/ smbfs rw,iocharset=utf8,uid=1000,gid=1000 0 0
Comment