Difference between revisions of "NetBeans"
Jump to navigation
Jump to search
(better example of sshfs) |
(Created page with "NetBeans is a decent editor, but it lacks some features (who knows why). If you ever wanted to work on a remote server without having to download files and/or synchronize the...") |
||
(3 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
− | NetBeans is a | + | NetBeans is a decent editor, but it lacks some features (who knows why). If you ever wanted to work on a remote server without having to download files and/or synchronize them (which NetBeans is horrible at), then use this simple hack: |
<blockquote> | <blockquote> | ||
Line 5: | Line 5: | ||
</blockquote> | </blockquote> | ||
e.g. | e.g. | ||
− | * [http://sourceforge.net/p/fuse/wiki/Mounting_SSHFS/ SSHFS] (one of [http://fuse.sourceforge.net/ FUSE]) | + | * [http://sourceforge.net/p/fuse/wiki/Mounting_SSHFS/ SSHFS] (one of <abbr title="File system in User SpacE">[http://fuse.sourceforge.net/ FUSE]</abbr>) |
* [http://avf.sourceforge.net/ AVFS] | * [http://avf.sourceforge.net/ AVFS] | ||
− | * [http://www.maketecheasier.com/quick-easy-guide-to-kde-kio-slaves/ KIO] | + | * <abbr title="KDE Input/Output slaves">[http://www.maketecheasier.com/quick-easy-guide-to-kde-kio-slaves/ KIO]</abbr> |
<source lang="bash"> | <source lang="bash"> | ||
sudo sshfs -o IdentityFile=/home/greg/.ssh/id_rsa -o allow_other greg@eqt:/var/www/freephile.com/www/wikireport /mnt/droplet | sudo sshfs -o IdentityFile=/home/greg/.ssh/id_rsa -o allow_other greg@eqt:/var/www/freephile.com/www/wikireport /mnt/droplet | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
</source> | </source> | ||
Then, setup a project in NetBeans with existing sources, and use the mountpoint | Then, setup a project in NetBeans with existing sources, and use the mountpoint | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
[[Category:Developer]] | [[Category:Developer]] | ||
[[Category:Tools]] | [[Category:Tools]] |
Revision as of 20:44, 23 June 2015
NetBeans is a decent editor, but it lacks some features (who knows why). If you ever wanted to work on a remote server without having to download files and/or synchronize them (which NetBeans is horrible at), then use this simple hack:
Use a remote filesystem available in your Operating System
e.g.
sudo sshfs -o IdentityFile=/home/greg/.ssh/id_rsa -o allow_other greg@eqt:/var/www/freephile.com/www/wikireport /mnt/droplet
Then, setup a project in NetBeans with existing sources, and use the mountpoint