Is it possible to work on remote files in Eclipse?

前端 未结 6 1984
[愿得一人]
[愿得一人] 2021-01-17 21:08

I\'m looking into using Eclipse as a dev environment for PHP projects, but it\'s pretty huge and I\'m not sure where to look for answers. I want to be able to work on remote

相关标签:
6条回答
  • 2021-01-17 21:43

    The RSE (Remote System Explorer) may be what you're looking for. It's an implementation of the Eclipse File System framework which allows resources in your workspace to be backed in reality by remote resources.

    0 讨论(0)
  • 2021-01-17 21:44

    This is more general than Eclipse: http://curlftpfs.sourceforge.net. I usually use the SSH/SFTP version (safer): http://fuse.sourceforge.net/sshfs.html

    Both are based on FUSE (http://fuse.sourceforge.net/)

    0 讨论(0)
  • 2021-01-17 21:53

    Since you are working on Ubuntu, you can have a look over here

    0 讨论(0)
  • 2021-01-17 21:54

    I usually develop using remote Eclipse. Use ssh -Y user@server to login and try executing eclipse on that shell, it should open on your computer if you have X properly configured.

    Of course, this Eclipse instance will have access to the remote server files.

    0 讨论(0)
  • 2021-01-17 21:59

    Perhaps this will be of some help

    http://www.jcraft.com/eclipse-sftp/

    I've never used it myself but it seems to do what you're looking for syncing and editing files over SFTP.

    0 讨论(0)
  • 2021-01-17 22:00

    Install eclipse plugin Remote System Explorer End-User Runtime. See video at How to Edit codes and files remotely with Eclipse.

    Also, check out how to configure the remote connection: Using Remote Connections.

    0 讨论(0)
提交回复
热议问题