0

I am using the Thunar file manager on Ubuntu Desktop and wish to connect to a Ubuntu server using SFTP and a PEM key.

What is the syntax in Thunar for this? Was thinking along the lines of

sftp://user@myserver.com /pemkey ?

2 Answers2

0

Added the following to my ssh config file:

Host myserver
HostName xx.xx.xx.xx
User myuser
IdentityFile key.pem
Compression yes

then sftp://myserver in Thunar.

Now have a connection.

0

Just to complement user10311596's answer, you have to add this settings in: ~/.ssh/config file. Create one if the file does not exists.

cigien
  • 57,834
  • 11
  • 73
  • 112