You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
Any help would be appreciated :)
The text was updated successfully, but these errors were encountered:
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 :)
The text was updated successfully, but these errors were encountered: