Created
January 5, 2014 11:48
-
-
Save fiedl/8267386 to your computer and use it in GitHub Desktop.
mount ssh folder with rw access for my own user
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# install tools (Mac OS) | |
brew install sshfs | |
# mount ssh folder with rw access for my own user | |
mkdir /Volumes/foo | |
sshfs [email protected]:/path/to/folder /Volumes/foo -o idmap=user -o uid=$(id -u) -o gid=$(id -g) | |
# References | |
# | |
# * http://wiki.ubuntuusers.de/FUSE/sshfs | |
# * http://stackoverflow.com/questions/12510421/sshfs-for-osx-10-8-mountain-lion |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment