I can run the following command:
sudo mount -t cifs -s -o credentials=/home/freymann/samba_lmce.txt,dir_mode=0777,file_mode=0777 //192.168.80.2/Storage203$ /mnt/device/203
on my ubuntu workstation so I have access to my 500GB drive on the living-room media director from my workstation. This works great and allows me to do backups to the drive.
I wanted to make this permanent, so I added this line into my /etc/fstab file:
192.168.80.2://Storage203$/ /mnt/device/203/ cifs credentials=/home/freymann/samba_lmce.txt,dir_mode=0777,file_mode=0777 0 0
but when I fire up my workstation in the morning, it doesn't take, and if I run "sudo mount -a" form the command line I get this message:
retrying with upper case share name
mount error 6 = No such device or address
Refer to the mount.cifs(8) manual page (e.g.man mount.cifs)
Can anybody spot what I've done wrong in my fstab file?