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 ?
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 ?
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.