My university allows me to connect to my school folder using mount and this is what they suggest I should add to my fstab file:
//servername/uni-user /home/myusername/sharedfolder smbfs noauto,username=uni-user,user,rw 0 0
And because smbfs is not available anymore at Ubuntu 14.04, I've installed cifs-utils and changed the fstab line to be as following:
//servername/uni-user /home/myusername/sharedfolder cifs noauto,username=uni-user,user,rw 0 0
Now when I write mount folder, it says timeout error. My question is, is there anything else I should change in the fstab line other than the name of the mounting utility? Are the parameters at the end of the line still relevant between smbfs and cifs?
I've tried mounting using the command:
/home/myusername/sharedfolder
servername
? Is it an IP or a name? Does it contain spaces? Is the server accessible from your home network? What happens if youping servername
? – terdon Jun 05 '14 at 13:54