Tips, tricks, and codes that I use to make my time on a computer more efficient.
Friday, April 5, 2013
Mount filesystem using ssh
It is very easy to mount a filesystem that lives on a remote computer using sshfs.
Simply run,
mkdir mountpoint
sshfs -o follow_symlinks hostname: mountpoint/
where hostname is what you use to ssh into the remote computer (e.g. name@computer.gov)
No comments:
Post a Comment