Jump to content

ssh client GUI for linux?


toxic
 Share

Recommended Posts

Hi there.

 

I have been searching for a ssh client with a GUI, for my linux machine. In windows I use the ssh secureshell client witch i'm am very satisfied with. But I am not ably to find any for linux. I have tryed ssh in the console but I would like a GUI.

 

is there any one who knows where I can find this???

Link to comment
Share on other sites

ssh stands for secure shell. Open terminal, type
ssh servername.serverdomain

, and you're there. Don't we become obsessed with GUIs too much?

 

 

use a non-standard port, forward/tunnel a few ports, etc... and you discover it's a pain to do from the command line unless you write a script for it.

 

PuTTY works great but I think it's windows only?

Link to comment
Share on other sites

  • 5 years later...

use konqueror as gui then

 

fish://user@host

 

Or fish through Dolphin. (hm? fish-dolphin?)

Link to comment
Share on other sites

use a non-standard port, forward/tunnel a few ports, etc... and you discover it's a pain to do from the command line unless you write a script for it.

 

PuTTY works great but I think it's windows only?

mkdir ~/.ssh

add configs into a file called ~/.ssh/config

 

example:


Host colosus.18londonst.co.nz
User paulw
Port 4755

Host donk
User paul
Port 4755

Host oink
User root
Port 4755

Host home.loudas.com
User root
Port 4755

then

ssh donk

uses the user and custom port by default

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...