Re: ssh tutorial

2009-06-11 Thread gmspro
> file ("man ssh_config" for details) That's a long tutorial.I will read this if possible. However thanks for your reply. > > -- > Sam -- fedora-list mailing list fedora-list@redhat.com To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list Guidelines: http://fedorapro

Re: ssh tutorial

2009-06-11 Thread Sharpe, Sam J
2009/6/11 gmspro : > >> Is your username on the machine you are ssh'ing from the >> same as your >> username on the machine you are ssh'ing to? > > Never, usernames are different. Well that is why "ssh -l abc ipaddress" and "ssh a...@ipaddress" work for you, but "ssh ipaddress" won't. You are try

Re: ssh tutorial

2009-06-11 Thread gmspro
> Is your username on the machine you are ssh'ing from the > same as your > username on the machine you are ssh'ing to? Never, usernames are different. > If your username locally is USERLOCAL, then "ssh -v > ipaddress" is > equivalent to "ssh -v userlo...@ipaddress" or "ssh -v -l > USERLOCAL >

Re: ssh tutorial

2009-06-11 Thread Sharpe, Sam J
2009/6/11 gmspro : > >> I would try >>     ssh -v ipaddress > > This does not work. > It says "permission denied" after giving the password three times. > >> and >>     ssh -l abc ipaddress > Giving the same password this works. Is your username on the machine you are ssh'ing from the same as your

Re: ssh tutorial

2009-06-11 Thread gmspro
--- On Thu, 6/11/09, Sharpe, Sam J wrote: > From: Sharpe, Sam J > Subject: Re: ssh tutorial > To: "Community assistance, encouragement, and advice for using Fedora." > > Date: Thursday, June 11, 2009, 4:18 PM > 2009/6/11 gmspro : > > > > ---

Re: ssh tutorial

2009-06-11 Thread gmspro
> > >> ssh -l yourusername yourserver Sorry,It is also correct. > > > I also think,it is a wrong format. > > Correct format is : > ssh yourn...@yourserver -- fedora-list mailing list fedora-list@redhat.com To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list Guideli

Re: ssh tutorial

2009-06-11 Thread Sharpe, Sam J
2009/6/11 gmspro : > > --- On Sat, 6/6/09, Timothy Murphy wrote: > >> From: Timothy Murphy >> Subject: Re: ssh tutorial >> To: fedora-list@redhat.com >> Date: Saturday, June 6, 2009, 6:49 PM >> Uwe Kiewel wrote: >> >> >>> yourna

Re: ssh tutorial

2009-06-11 Thread gmspro
> I would try > ssh -v ipaddress This does not work. It says "permission denied" after giving the password three times. > and > ssh -l abc ipaddress Giving the same password this works. -- fedora-list mailing list fedora-list@redhat.com To unsubscribe: https://www.redhat.com/

Re: ssh tutorial

2009-06-11 Thread gmspro
--- On Sat, 6/6/09, Timothy Murphy wrote: > From: Timothy Murphy > Subject: Re: ssh tutorial > To: fedora-list@redhat.com > Date: Saturday, June 6, 2009, 6:49 PM > Uwe Kiewel wrote: > > >>> yourname=linux user account // Am i > correct? > >>

Re: ssh tutorial

2009-06-11 Thread Timothy Murphy
gmspro wrote: > I did this and it works for me. > > ssh a...@ipaddress > > But if I do > > ssh ipaddress > ssh: connect to host ipaddress port 22: No route to host I would try ssh -v ipaddress and ssh -l abc ipaddress -- Timothy Murphy e-mail: gayleard /at/ eircom.net tel:

Re: ssh tutorial

2009-06-11 Thread gmspro
Thanks. I did this and it works for me. ssh a...@ipaddress But if I do ssh ipaddress ssh: connect to host ipaddress port 22: No route to host --- On Sun, 6/7/09, Chris Tyler wrote: > From: Chris Tyler > Subject: Re: ssh tutorial > To: "Community assistance, encouragement,

Re: ssh tutorial

2009-06-11 Thread gmspro
I just did this and it worked for me. ssh a...@p.q.r.s p.q.r.s is the ip address of the remote pc. Both pc have openssh-server,openssh-client installed. --- On Sun, 6/7/09, Rick Sewill wrote: > From: Rick Sewill > Subject: Re: ssh tutorial > To: "Community assistance, enco

Re: ssh tutorial

2009-06-07 Thread Rick Sewill
On Sat, 2009-06-06 at 17:26 -0700, gmspro wrote: > Many thanks. > This is a great tutorial. > It helps to learn basic uses of ssh. > I was looking for this. > It saved my time from googling and reading long "man ssh" page. > > One last thing,reading other mail from fedora-list I knew that I > must

Re: ssh tutorial

2009-06-06 Thread gmspro
; From: Chris Tyler > Subject: Re: ssh tutorial > To: "Community assistance, encouragement, and advice for using Fedora." > > Date: Sunday, June 7, 2009, 12:04 AM > On Fri, 2009-06-05 at 23:39 -0700, > gmspro wrote: > > Would anyone tell how to use ssh comma

Re: ssh tutorial

2009-06-06 Thread gmspro
Yes,I am not ssh administrator. > Chris' explanation is good. > > May I suggest the original questioner needs to "find" the > information > needed to connect to "that particular" ssh server.  > The original > questioner may need to talk with the person (ssh server > administrator) > who is runni

Re: ssh tutorial

2009-06-06 Thread Rick Sewill
On Sat, 2009-06-06 at 13:24 -0500, Gregory P. Ennis wrote: > On Fri, 2009-06-05 at 23:39 -0700, gmspro wrote: > > Would anyone tell how to use ssh command in brief? > > > > Cris gave a great explanation. and looking at the man page is also a > must. > > In practical terms ssh replaces telnet so

Re: ssh tutorial

2009-06-06 Thread Gregory P. Ennis
On Fri, 2009-06-05 at 23:39 -0700, gmspro wrote: > Would anyone tell how to use ssh command in brief? > Cris gave a great explanation. and looking at the man page is also a must. In practical terms ssh replaces telnet so that your computer to computer connections can be accomplished with encryp

Re: ssh tutorial

2009-06-06 Thread Chris Tyler
On Fri, 2009-06-05 at 23:39 -0700, gmspro wrote: > Would anyone tell how to use ssh command in brief? Let me try my hand at a basic primer... (1) SSH is used to login to a remote computer: ssh u...@computer Or: ssh -l user computer Where: 'user' is your username on the remote

Re: ssh tutorial

2009-06-06 Thread Timothy Murphy
gmspro wrote: > > Thank you. > Can you give a specific example of > > ssh yourserver > > What would be the "yourserver"? 1) You could use the IP address of the machine you are trying to connect to, eg ssh 192.168.1.4 2) Or if you have the name of the machine in your /etc/hosts you co

Re: ssh tutorial

2009-06-06 Thread Timothy Murphy
Uwe Kiewel wrote: >>> yourname=linux user account // Am i correct? >>> yourserver=?? >> >> No. >> ssh -l yourusername yourserver > > ssh username_at_remote_ser...@remote_server is also possible Apologies. I thought I had tried that in the past, and it did not work. But it seems fine now. --

Re: ssh tutorial

2009-06-06 Thread gerrynix
> Thank you. > Can you give a specific example of > > ssh yourserver > > What would be the "yourserver"?   i'm sorry but i have to ask -- do you actually know what the "ssh" command is supposed to do?  seriously, asking how to use "ssh", reproducing the sample line "ssh yourserver" and asking wha

Re: ssh tutorial

2009-06-06 Thread Robert P. J. Day
On Sat, 6 Jun 2009, gmspro wrote: > > Thank you. > Can you give a specific example of > > ssh yourserver > > What would be the "yourserver"? i'm sorry but i have to ask -- do you actually know what the "ssh" command is supposed to do? seriously, asking how to use "ssh", reproducing the sample

Re: ssh tutorial

2009-06-06 Thread Joachim Backes
at, 6/6/09, Timothy Murphy wrote: From: Timothy Murphy Subject: Re: ssh tutorial To: fedora-list@redhat.com Date: Saturday, June 6, 2009, 2:37 PM gmspro wrote: Some confusion ssh yourusern...@yourserver Here yourname=linux user account // Am i correct? yourserver=?? No. ssh -l yourusername you

Re: ssh tutorial

2009-06-06 Thread gmspro
Thank you. Can you give a specific example of ssh yourserver What would be the "yourserver"? --- On Sat, 6/6/09, Timothy Murphy wrote: > From: Timothy Murphy > Subject: Re: ssh tutorial > To: fedora-list@redhat.com > Date: Saturday, June 6, 2009, 2:37 PM > gmspr

Re: ssh tutorial

2009-06-06 Thread Uwe Kiewel
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Timothy Murphy schrieb: > gmspro wrote: > >> Some confusion >> >> ssh yourusern...@yourserver >> >> Here >> yourname=linux user account // Am i correct? >> yourserver=?? > > No. > ssh -l yourusername yourserver ssh username_at_remote_ser...@r

Re: ssh tutorial

2009-06-06 Thread Timothy Murphy
gmspro wrote: > > Some confusion > > ssh yourusern...@yourserver > > Here > yourname=linux user account // Am i correct? > yourserver=?? No. ssh -l yourusername yourserver Or just ssh yourserver if the user name is the same on both machines. Nb The remote machine must be run

Re: ssh tutorial

2009-06-06 Thread gmspro
Some confusion ssh yourusern...@yourserver Here yourname=linux user account // Am i correct? yourserver=?? -- fedora-list mailing list fedora-list@redhat.com To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list Guidelines: http://fedoraproject.org/wiki/Communicate/M

Re: ssh tutorial

2009-06-06 Thread gmspro
Can anyone give an example how to log in remote computer with ssh? --- On Sat, 6/6/09, Craig White wrote: > From: Craig White > Subject: Re: ssh tutorial > To: "Community assistance, encouragement, and advice for using Fedora." > > Date: Saturday, June 6, 2009, 1:5

Re: ssh tutorial

2009-06-06 Thread Craig White
On Fri, 2009-06-05 at 23:39 -0700, gmspro wrote: > Would anyone tell how to use ssh command in brief? ssh --help less brief man ssh Craig -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean. -- fedora-list mailing list fedora-l