About 145,000 results
Open links in new tab
  1. How do I use scp to copy a file from the server to the client side

    Apr 29, 2016 · As an example, if the file is on the remote computer called remotecomputer.com in a subdirectory of your home directory called important and the file is called test.txt, you can issue this …

  2. How do I copy a folder from remote to local using scp?

    But here is the better way for do it with sftp - SSH File Transfer Protocol (also Secure File Transfer Protocol, or SFTP) is a network protocol that provides file access, file transfer, and file management …

  3. scp - Transferring files over SSH - Stack Overflow

    Dec 5, 2008 · # upload: local -> remote scp local_file user@remote_host:remote_file If you want to copy a whole directory, you will need -r. Think of scp as like cp, except you can specify a file with …

  4. Copying a local file from Windows to a remote server using scp

    I try to transfer a folder of files from my local computer to a server via ssh and scp. After getting sudo privileges, I'm using the command as follows:

  5. Automate scp file transfer using a shell script - Stack Overflow

    Jun 19, 2015 · I have some n number of files in a directory on my unix system. Is there a way to write a shellscript that will transfer all those files via scp to a specified remote system. I'll specify the passw...

  6. Transfer files to/from session I'm logged in with PuTTY

    103 This is probably not a direct answer to what you're asking, but when I need to transfer files over a SSH session I use WinSCP, which is an excellent file transfer program over SCP or SFTP. Of course …

  7. scp with port number specified - Stack Overflow

    user88595 Over a year ago Only solution which allows the use of scp -3 from and to servers with ssh listeners on different ports. scp -3 -P 123 server1:/file -P 456 server2:/file or similar alternatives …

  8. Using scp to copy a file to Amazon EC2 instance? [closed]

    Jul 9, 2012 · I am trying to use my Mac Terminal to scp a file from Downloads (phpMyAdmin I downloaded online) to my Amazon EC2 instance. The command I used was: scp -i …

  9. How to copy a file to a remote server in Python using SCP or SSH?

    I have a text file on my local machine that is generated by a daily Python script run in cron. I would like to add a bit of code to have that file sent securely to my server over SSH.

  10. ssh - How to scp in Python? - Stack Overflow

    EDIT: This is a duplicate of How to copy a file to a remote server in Python using SCP or SSH?. However, that question doesn't give an scp-specific answer that deals with keys from within Python.