title: sshfs 01 tags: linux net ssh fs sshfs # fstab Thanks to [this askubuntu](https://askubuntu.com/questions/710149/how-to-convert-sshfs-command-to-fstab-entry) ``` sshfs#me@host:/home/mrturnip /path/to/mnt fuse defaults,_netdev,allow_other 0 0 ``` Note that you need ``` user_allow_other ``` in your `/etc/fuse.conf` I set up a folder `/h` in which I have folders for machines on my lan. ``` $ ls /h dink halfling midge titch ``` ``` sshfs#me@halfling:/ /h/halfling fuse defaults,_netdev,allow_other,noauto 0 0 sshfs#me@dink:/ /h/dink fuse defaults,_netdev,allow_other,noauto 0 0 sshfs#me@titch:/ /h/titch fuse defaults,_netdev,allow_other,noauto 0 0 sshfs#me@midge:/ /h/midge fuse defaults,_netdev,allow_other,noauto 0 0 ```