I am running a NAS box with a smb share //192.168.1.16/media
The share is available from all Windows and Android clients.
On Ubuntu PCs it can be accessed with file browsers like Nemo or Nautilus as smb://192.168.1.16/media
However, on the Ubuntu (14.04) PCs the share cannot be mounted from fstab
. The fstab
line is
//192.168.1.16/media /mnt/readynas cifs username=validuser,password=validpassword 0 0
which on sudo mount -a
returns:
mount: special device //192.168.1.16/media does not exist
Clearly, the device does exist.
Any clues, hints or tips?
OK, solved it. I needed to add
to the mount options in the
fstab
line.