In Ubuntu 14.04, I was auto-mounting my NAS partition using NFS by adding the following line in my /etc/fstab:
192.168.1.100:/volume1/Downloads /home/pierre/Downloads_NAS nfs rsize=8192,wsize=8192,timeo=14,intr
As a result, I could access my NAS in Nautilus directly after booting up.
I upgraded to Ubuntu 14.10, and I can no longer access it after booting up. When trying to access the folder, I have the following error:
**Unable to access “Downloads_NAS”**
mount: only root can mount 192.168.1.100:/volume1/Downloads on /home/pierre/Downloads_NAS
if I open a term and run
% sudo mount 192.168.1.100:/volume1/Downloads /home/pierre/Downloads_NAS
Then I can access it normally.
What can I do to mount the partition automatically at boot time?
Thanks!
As proposed by @AlaaAli, I just needed to add
user
to the option of the mount in theetc/fstab
:192.168.1.100:/volume1/Downloads /home/pierre/Downloads_NAS nfs rsize=8192,wsize=8192,timeo=14,intr,user
Now the partition is automatically mounted when needed.
Use the GUI Disk utility come with Ubuntu. The software is named "Disks"
You're done. Congratulations.