Project

General

Profile

Support #649

Using Sshfs To Mount Remote Folders Over SSH

Added by Daniel Curtis over 8 years ago. Updated over 8 years ago.

Status:
Closed
Priority:
Normal
Assignee:
Category:
Network Attached Storage
Target version:
Start date:
08/30/2015
Due date:
% Done:

100%

Estimated time:
0.50 h
Spent time:

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 line
    user@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

#1

Updated by Daniel Curtis over 8 years ago

  • Description updated (diff)
  • Status changed from New to Resolved
  • % Done changed from 0 to 100
#2

Updated by Daniel Curtis over 8 years ago

  • Status changed from Resolved to Closed

Also available in: Atom PDF