Using SFTP with Thunar file manager and a PEM key on Ubuntu

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://[email protected] /pemkey ?
0

2 Answers

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.

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

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge that you have read and understand our privacy policy and code of conduct.

You Might Also Like