how to copy file over ssh (Fedora Linux)

its good if we can copy remote files to local and vice versa using ssh with out the help of any third party utilities

here is the solution

]# scp  root@127.0.0.1:/home/user1/file.extn ./

Enter password root @127.0.0.1 :

will copy file  /home/user1/file.extn from server 127.0.0.1 to ur local directory when u provide password of root @ 127.0.0.1

  • Share/Bookmark