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

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
 Share

×
×
  • Create New...