I have been trying to use the Fuse mount over NFS lately and am facing an issue.
When trying to create a file, NFS will send the operation mknod and not create as what we get when creating a file directly from the Fuse mount.
I tried to implement the mknod operation in the code by reusing how we create a new file but following the spec for mknod basically.
Compile alright, but when creating the file and then listing the current directory with the new file I get an error:
/mnt/nfs/gdrive/media # touch worldd
/mnt/nfs/gdrive/media # ls -l
ls: ./worldd: No such file or directory
total 0
drwxrwxrwx 2526 root root 4096 Mar 13 2017 movies
drwxrwxrwx 1 root root 4096 Sep 10 00:55 music
drwxrwxrwx 299 root root 4096 Mar 13 2017 tvshows
Hello,
I have been trying to use the Fuse mount over NFS lately and am facing an issue. When trying to create a file, NFS will send the operation
mknod
and not create as what we get when creating a file directly from the Fuse mount.I tried to implement the mknod operation in the code by reusing how we create a new file but following the spec for mknod basically.
I have this:
Compile alright, but when creating the file and then listing the current directory with the new file I get an error:
Any help would be appreciated :)