Remote Programming [Eclipse - ruby]

Has anyone used any add-on on eclipse to develop on a remote machine?

I need ssh through the terminal and copy the eclipse code insert to run on a remote host that has the necessary permissions for the task. I am wondering if I can do this on eclipse from the ubuntu desktop

Thank!

Edit: The   https://help.ubuntu.com/community/SSHFS proposed by Sean Bower works as far as the OS is concerned.

Q] Unfortunately, eclipse can open the script on the remote remote FS, however it does not appear in the script explorer or in the launch configurations. "Invalid working directory"

Q] Is there a sudo su method when I use SSHFS.

To give a perspective: Usually I log in to the remote user as @remote myself, and then sudo su - powerUser, and then use it to run my ruby ​​scripts. Unfortunately, I do not have pswd for powerUser.

So now, although I can edit scripts on eclipse after using SSHFS, I still cannot run them as powerUSer.

Thank!

+5
source share
1 answer

Have you studied using sshfs? https://help.ubuntu.com/community/SSHFS . This will allow you to mount the remote file system so that it works as a local file system. Then you can just point the eclipse on the local path and edit. I use this for a bunch of sites.

+4

All Articles