I'm mounting a Synology NFS share using the following fstab line:
If I "cd" into the mount as root, I can see it has mounted successfully - all my files are visible. But I cannot access the mount as a regular user, which is my problem:
Permissions pre-mount:
Permissions post-mount:
I thought having the user option was meant to allow me to access the share without being root. How do I have fstab mount such that the user can access without root permission?
Code:
192.168.1.11:/volume1/Backup /home/gonzo/SynMounts/Backup nfs auto,rw,user 0 0
Code:
gonzo@abc:~/SynMounts$ mount Backup/ gonzo@abc:~/SynMounts$ cd Backup/ bash: cd: Backup/: Permission denied
Code:
4 drwxrwxr-x 2 gonzo gonzo 4096 Jul 19 19:20 Backup
Code:
8 d--------- 3 root root 4096 May 25 14:05 Backup
Comment