How to register FUSE filesystem type with mount(8) and fstab?

后端 未结 5 1058
醉酒成梦
醉酒成梦 2021-01-31 03:08

I\'ve written a small FUSE-based filesystem and now the only part\'s missing is that I want to register it with fstab(5) to auto-mount it on system startup and/or manually mount

5条回答
  •  天涯浪人
    2021-01-31 03:31

    You could just use fuse filesystem type. The following works on my system:

    smbnetfs    /media/netbios    fuse    defaults,allow_other    0    0
    

    Another example:

    sshfs#user@example.com:/    /mnt    fuse    user,noauto    0    0
    

提交回复
热议问题