https://websiteforstudents.com/how-to-mount-remote-directories-over-ssh-via-sshfs-on-ubuntu-18-04-16-04/ https://www.digitalocean.com/community/tutorials/how-to-use-sshfs-to-mount-remote-file-systems-over-ssh https://itectec.com/ubuntu/ubuntu-sshfs-is-not-mounting-automatically-at-boot-despite-etc-fstab-configuration/ https://www.cyberciti.biz/faq/how-to-mount-remote-directory-filesystems-with-sshfs-on-linux/ # /etc/fstab: static file system information. # # Use 'blkid' to print the universally unique identifier for a # device; this may be used with UUID= as a more robust way to name devices # that works even if disks are added and removed. See fstab(5). # # # / was on /dev/sda3 during installation UUID=4d10d87d-bcfd-488c-a455-c840fad15cd9 / ext4 errors=remount-ro 0 1 # /boot/efi was on /dev/sda1 during installation UUID=0D53-DE0E /boot/efi vfat umask=0077 0 1 /swapfile none swap sw 0 0 # - - # # - Hiding disks - # # - Hiding /dev/sda2: LABEL="Ubuntu" -> Ubuntu after installation - # # - - # UUID=a23dfbae-b4e5-4886-b25e-9166f40938a9 /mnt/HideDisk2 ext4 defaults,noauto 0 0 # - - # # - /home/Data1 /dev/sda4 after installation - # # - /home/Data2 /dev/sdb1 after installation - # # - - # UUID=1bb2204f-acb4-488d-86e2-b20ae053ed40 /home/Data1 ext4 defaults 0 2 UUID=6e98e305-235c-4081-ba32-b9816ee744ff /home/Data2 ext4 defaults 0 2 # - - # # - Complete server root mounting / Home & Office - # # - uServerHome - # sshfs#is_derayo@192.168.1.100:/ /home/is_derayo/uServerHome fuse user,noauto,transform_symlinks 0 0 # - uServerOffice - # sshfs#is_derayo@192.168.1.200:/ /home/is_derayo/uServerOffice fuse user,noauto,transform_symlinks 0 0 # - uServerHome - # #sshfs#is_derayo@192.168.1.100:/ /home/is_derayo/uServerHome fuse defaults,idmap=user,allow_other,reconnect,_netdev 0 0 # - uServerOffice - # #sshfs#is_derayo@192.168.1.200:/ /home/is_derayo/uServerOffice fuse defaults,idmap=user,allow_other,reconnect,_netdev 0 0 #sshfs#is_derayo@192.168.1.100:/ /home/is_derayo/uServerHome fuse defaults,idmap=user 0 0 #sshfs#is_derayo@192.168.1.200:/ /home/is_derayo/uServerOffice fuse defaults,idmap=user,allow_other,reconnect,_netdev 0 0 #sshfs#user@host:/remote/dir /local/dir fuse delay_connect,idmap=user,uid=1000,gid=1000,umask=0,allow_other,_netdev,workaround=rename 0 0 #sshfs#is_derayo@192.168.1.100:/ /home/is_derayo/uServerHome fuse defaults,idmap=user 0 0 #sshfs#is_derayo@192.168.1.100:/ /home/is_derayo/uServerHome fuse defaults,idmap=user,allow_other,reconnect,_netdev,users,IdentityFile=/home/is_derayo/.ssh/id_rsa 0 0 #sshfs#$root@192.168.1.142:/ /mnt/server1 fuse defaults,idmap=user,allow_other,reconnect,_netdev,users,IdentityFile=/path/to/.ssh/keyfile 0 0