Fast forward to a few months later (or aeons in OSS terms) and there's standard kernels and packages to operate FUSE. You can pull everything you need from your distro's stock repository.
In particular, there is sshfs which is hella tight. "sshfs" is, as you might guess, a file system over SSH, e.g. in FUSE. This means the security and features of SSH including SSH keys and all that good fun. Installing "sshfs" and FUSE is a simple three step process:
- yum install sshfs (or aptitude install sshfs for Debian / Ubuntu users)
- ?
- Profit!
Similarly, once you've installed "sshfs", using it is a simple three step process:
- sshfs myhost.example.com:/some/remote/path /some/local/path
- ?
- Profit!
What could be simpler? If you're finding your virtual file system access in Gnome or KDE produces odd behaviour sometimes, just FUSE your remote file system instead. You get fully functional and secure access to remote file systems.
Oh, and just one last note, you use a FUSE command to disconnect the mount:
fusermount -u /some/local/path
Thanks, Toddz for mentioning FUSE the other day and getting me to revisit it.
Ciao,
- Arch
(title for this post nicked from an Invader Zim quote)
Toddz just mentioned to me that there's a FUSE+SSHFS for Windows:
ReplyDeletehttp://dokan-dev.net/en/download/#sshfs
Very awesome!
- Arch