Atom is able to open a project, and to show the whole tree of the project on the left side, a really nice feature.
Now I\'m using SSH on Host OS to access a Guest OS (sa
Well yes there is!
You just need to configure sshfs, optionally with autofs. Then you can access the files as if they are stored locally. I've used this with Atom and it works seamlessly.
$ sudo apt-get install sshfs
$ sshfs [user@]host:[dir] mountpoint
The following link has instructions for a setup using autofs.
Note: This requires you to setup SSH for the root user.
http://www.mccambridge.org/blog/2007/05/totally-seamless-sshfs-under-linux-using-fuse-and-autofs/
Additionally to that post, I've added some tricks for an even more seamless experience.
I've noticed a significant performance boost by adding this SSH config to /root/.ssh/config
:
Ciphers arcfour
Compression no
Note: This does make the connection less secure.
If you set the mount point to a directory in /media
, the mount point will show up as a disk in your file browser. For example /media/sshfs
.