Online home | GitHub
cpollet.me
back to posts list
Mount SSHFS on Linux
Published on 07 Jun 2013
As root, execute the following:
- apt-get install sshfs
- adduser [user] fuse
- mkdir /path/to/mount
- chown root:fuse /path/to/mount
And as the user [user], execute
- sshfs -o idmap=user [remote_user]@[server]:/path/to/remote/folder /path/to/mount
Source: http://www.howtoforge.com/mounting-remote-directories-with-sshfs-on-ubuntu-11.10
Last generated on 18 Nov 2016