Sean
Sean

Reputation: 3385

How to connect the Atom Editor with a remote server?

I've tried looking at other questions here with similar problems, but unfortunately I haven't been able to solve this issue.

For some basic background info, I'm currently using a PC in a lab and the lab has GPU servers somewhere in the institution. I'm attempting to connect the Atom Editor to the remote host. My PC uses Windows 10 and the remote server is Ubuntu 16.04.

I've looked at thie remote-atom guide but for some reason the "Start Server" option is not working. I've also tried to do what this answer has stated, but unfortunately I don't have sudo permission.

Would there be another way that I can connect Atom remotely? Thank you.

Upvotes: 4

Views: 9609

Answers (1)

UBops
UBops

Reputation: 76

You can easily connect to remote FTP using atom even if you do not have any sudo permission on the sudo server.

On Remote server: - Create a rsa key (ssh-keygen -t rsa) - add the public key to .ssh/authorized_keys file - download the private key to you local desktop

On local machine > open Atom editor: - press ctrl+space to open the 'ftp-remote-edit' - add the server if not present already

Atom editor: remote server configs

That's it, you are ready to connect and edit files.

Other viable option is using VS code using winScp.

Upvotes: 6

Related Questions