0

I there a way (plugin) in eclipse that can run (console) application over ssh (of course do a synchronize before that with something like rsync), and display results in standard console?

Primk
  • 481
  • 1
  • 5
  • 10
  • possible duplicate of [Work on a remote project with Eclipse via SSH](http://stackoverflow.com/questions/4216822/work-on-a-remote-project-with-eclipse-via-ssh) – karlphillip Jan 13 '11 at 11:16
  • You could tag your question a little better. It will help it get more visibility. – karlphillip Jan 13 '11 at 13:07

2 Answers2

0

Try following:

best-sftp-plugin-eclipse

eclipse-sftp

eclipse-cvsssh2

eclipsesshconsole

Also take a look at: are-there-any-good-ssh-consoles-for-eclipse

Hope this helps.

Community
  • 1
  • 1
Harry Joy
  • 58,650
  • 30
  • 162
  • 207
0

You could also run Eclipse remotely.

It should be fairly easy: use ssh -Y server_ip to connect to it, execute eclipse & and it will have direct access to the filesystem.

Of course, this solution is only practical if you have a decent network connection to the remote PC since GUI processing will be handled by the other machine (not yours).

Anyway, someone asked a similar question here. Take a look at the answer.

Community
  • 1
  • 1
karlphillip
  • 92,053
  • 36
  • 243
  • 426