fuse-nfs
fuse-nfs copied to clipboard
Not able to write to mounted system
I am using fuse-nfs to mount NFS version 4 shares in an Apptainer container running on Rocky Linux 8. I can read the data on mounted directory but cannot write. The remote file server is running CentOS 6 and has this line in /etc/exports:
/data1 10.11.12.13(rw,no_root_squash,sync,insecure)
On the container I am running this command:
fuse-nfs -a -n "nfs://172.28.50.50/data1/?version=4" -m /data1
All the mounted directories are shown as being owned by root : root , but even if the directory permission is 777 it is not writable.
You can enable other users by uncommenting user_allow_other in the /etc/fuse.conf file to enable write access.
answered