User Tools

Site Tools


computing:linux:sshfs

This is an old revision of the document!


SSHFS

SSHFS is a simple way to mount remote filesystems accessible via SSH.

Install SSHFS

CentOS

yum install sshfs

Ubuntu

sudo apt-get update

sudo apt-get install sshfs

Mount a Remote Filesystem

:!: Use sudo as necessary on Ubuntu/Debian.

sshfs root@<hostname or IP>:/path/to/mount /mount/point/

Example:

sudo mkdir /mnt/www
sudo chmod 777 /mnt/www
sshfs root@www.yourdomain.tld:/home /mnt/www/
computing/linux/sshfs.1433091011.txt.gz · Last modified: 2015/05/31 10:50 by gcooper