Support #649
Using Sshfs To Mount Remote Folders Over SSH
Status:
Closed
Priority:
Normal
Assignee:
Category:
Network Attached Storage
Target version:
Description
This is some basic usage for mounting remote folders using SSH. on Arch Linux.
Prepare the System¶
- Make sure the system is up to date:pacman -Syu 
Using Sshfs¶
- Install sshfs:pacman -S sshfs 
- Mount remote /home/user/folder to /mnt/remote/folder:sshfs user@box.example.com:/home/user/folder /mnt/remote/folder 
- To mount the folder at boot, add the following to the fstab lineuser@192.168.1.200:/home/user/folder /mnt/remote/folder fuse.sshfs defaults,_netdev 0 0 
- To unmount the remote system:fusermount -u /mnt/remote/folder 
Resources¶
Updated by Daniel Curtis about 10 years ago
- Description updated (diff)
- Status changed from New to Resolved
- % Done changed from 0 to 100