View Single Post
Posts: 43 | Thanked: 2 times | Joined on Dec 2007
#14
I just solved my own issue with cifs causing a
mount failed. Maybe it will help others. My server share does NOT have a password.

Rather than my old method of passing user=pcguest to the mount command, I passed the option guest instead which worked!

This failed:
mount -t cifs //192.168.2.100/podcast /media/mmc2/mnt -o noperm,sec=none,uid=user,user=guest
This worked:
mount -t cifs //192.168.2.100/podcast /media/mmc2/mnt -o noperm,sec=none,uid=user,guest
 

The Following User Says Thank You to krbvroc1 For This Useful Post: