First I tried <span style="font-weight: bold;">scp </span>command  i got error then tried to connection with ssh as you said.<br>
<span style="font-weight: bold;"> ssh -v    user_login@www.place_ my <a href="http://site.com">site.com</a> </span><br>
  I  got this error<br>
<span style="font-weight: bold;">OpenSSh_3.2           ,SSH protocol 1.5/2. openSSL 0X0090701f</span><br style="font-weight: bold;">
<span style="font-weight: bold;">debug1: Rhosts Authentication disabled, originating  Port will not be trusted.</span><br style="font-weight: bold;">
<span style="font-weight: bold;">ssh: user_login@www.place_ my <a href="http://site.com">site.com</a>  Temporary failure in name resolution</span><br style="font-weight: bold;">
<br><br><div><span class="gmail_quote">On 3/20/06, <b class="gmail_sendername">Les Mikesell</b> <<a href="mailto:lesmikesell@gmail.com">lesmikesell@gmail.com</a>> wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
On Mon, 2006-03-20 at 00:21, M.K wrote:<br>> I could find the root/local directory. let say I created a tar file<br>> and called it<br>> my-tar.tgz  I want to pass this tar file with ssh to my another server<br>> for exxample
<br>>  ' <a href="http://www.mysite.com">www.mysite.com</a>'<br>><br>> Where I have to put my tar file' my-tar.tgz' to the next comand<br>><br>> rsync -essh -av . www.mysite.com:/path/to/directory<br><br>The '.' (current directory) in this command is the source that
<br>rsync will send and the -a option says (among other things) to recurse<br>through subdirectories.  The /path/to/directory<br>part of the command will create one (and only one) new subdirectory<br>at the end of the path if it doesn't already exist.  If you use
<br>that, you wouldn't have to create the tar file first unless you<br>want compression or the convenience of having everything in one<br>file while you rebuild your machine.<br><br>If you do make a tar file first, you could use scp instead of
<br>rsync like:<br>  cd  /dir/with/tarfile<br>  scp my-tar.tgz  www.mysite.com:/path/to/directory<br>or with rsync like:<br>  rsync -essh my-tar.tgz www.mysite.com:/path/to/directory<br><br>If you have trouble with either of these, test your ssh
<br>connection with something like:<br>  ssh <a href="http://www.mysite.com">www.mysite.com</a> id<br>If you don't have root access to the other machine you can<br>specify a user name like:<br>  ssh <a href="mailto:user@www.mysite.com">
user@www.mysite.com</a> <br>and connect with the specified user's password.  The same<br>user@host style works in the scp and rsync commands.<br><br>--<br>  Les Mikesell<br>   <a href="mailto:lesmikesell@gmail.com">lesmikesell@gmail.com
</a><br><br><br>--<br>fedora-list mailing list<br><a href="mailto:fedora-list@redhat.com">fedora-list@redhat.com</a><br>To unsubscribe: <a href="https://www.redhat.com/mailman/listinfo/fedora-list">https://www.redhat.com/mailman/listinfo/fedora-list
</a><br></blockquote></div><br>