I am not able to auto mount a
windows shared folder from my corporate network. I was able to mount it manually as root. I used the following command to mount it as root
sudo mount -t cifs //192.168.111.11/software /home/ashokcm/shares/folder/ -o user=111111,domain=somedomain,password=******
this command mounts the shared folder successfully. But i want to load this at startup for any user(not only as root).I tried modifying the /etc/fstab to contain the following entry
//192.168.111.11/software /mnt/share cifs user,rw,noauto,username=111111,password=******,dom ain=somedomain,uid=ashokcm,gid=0 0 0
this mounts the device and display it, but when i am trying to access it says
Unable to mount the selected volume
and there is no more details displayed.
Any idea on how to mount this shared folder for all users?