Skip to content

Instantly share code, notes, and snippets.

@heldr
Created October 12, 2012 01:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save heldr/3876847 to your computer and use it in GitHub Desktop.
Save heldr/3876847 to your computer and use it in GitHub Desktop.
Create ssh drive using sshfs
sudo gpasswd -a $USER fuse
mkdir ~/drive_dir
sshfs -o idmap=user $USER@my_ip:/path ~/drive_dir
#umount
fusermount -u ~/drive_dir
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment