LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   putty equivalent in Linux ? (https://www.linuxquestions.org/questions/linux-newbie-8/putty-equivalent-in-linux-643128/)

concoran 05-18-2008 06:22 PM

putty equivalent in Linux ?
 
When in Windows, I use putty to log onto a remote Linux machine.
Now that I can dual boot my personal machine into Linux as well, how can I log into that remote linux machine from my personal linux machine.
In putty, the options selected are 'port 22, SSH'.

ranger_nemo 05-18-2008 06:49 PM

From a terminal... "ssh hostname" or "ssh ip-address"

yaye 05-18-2008 09:48 PM

Since you're already familiar with Putty, you could install the Linux version of Putty:

Fedora Core 8 version: http://rpm.pbone.net/index.php3/stat....i386.rpm.html

lazlow 05-18-2008 11:07 PM

Putty is also in the standard F8 repo.

yaye 05-18-2008 11:32 PM

Quote:

Originally Posted by lazlow (Post 3157533)
Putty is also in the standard F8 repo.

Thanks for the info. I haven't used Fedora in a couple years.

concoran 05-22-2008 03:11 AM

Quote:

Originally Posted by ranger_nemo (Post 3157406)
From a terminal... "ssh hostname" or "ssh ip-address"

The problem with ssh is that it asks for root password. In putty I get to enter a username.

pwc101 05-22-2008 04:05 AM

First, don't run as root, and then it won't assume you're trying to log in to the remote server as root.

Second, us the -l (that's a lowercase L) flag to specify user name:
Code:

ssh -l username host
This information is in the man page for ssh:
Code:

man ssh

Tinkster 05-22-2008 04:34 AM

Or
ssh username@host

but not working as root on a regular basis is a good start.



Cheers,
Tink


All times are GMT -5. The time now is 04:03 AM.