Project

General

Profile

Support #649

Updated by Daniel Curtis over 8 years ago

This is some basic usage for mounting remote folders using SSH. on Arch Linux. 

 h2. Prepare the System 

 * Make sure the system is up to date: 
 <pre> 
 pacman -Syu 
 </pre> 

 h2. Using Sshfs 

 * Install sshfs: 
 <pre> 
 pacman -S sshfs 
 </pre> 

 * Mount remote /home/user/folder to /mnt/remote/folder: 
 <pre> 
 sshfs user@box.example.com:/home/user/folder /mnt/remote/folder 
 </pre> 

 * To mount the folder at boot, add the following to the fstab line 
 <pre> 
 user@192.168.1.200:/home/user/folder    /mnt/remote/folder    fuse.sshfs    defaults,_netdev    0    0 
 </pre> 

 * To unmount the remote system: 
 <pre> 
 fusermount -u /mnt/remote/folder 
 </pre> 

 h2. Resources 

 * https://wiki.archlinux.org/index.php/Sshfs

Back