About 7,270,000 results
Open links in new tab
  1. How do I copy a folder from remote to local using scp?

    How do I copy a folder from remote to local host using scp? I use ssh to log in to my server. Then, I would like to copy the remote folder foo to local /home/user/Desktop. How do I achieve this?

  2. linux - copy file/folder using scp command - Stack Overflow

    Jun 12, 2018 · How can I copy a file/folder from windows to linux (putty), probably using scp command? I used scp user@hostname (windows):c:\folder\filname user@hostname (Linux):/folder/filename …

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

    Using the stock 'scp' from a recent Windows Server 2022 version I was able to use the command from this answer above, but with using a colon in the drive specifier, as the first path segment on the …

  4. How can I copy files between two managed nodes using Ansible?

    I need to copy a file between two remote nodes: node A is a managed node where the file exists node B is a managed node where the file should be copied Please note that my control node, from wher...

  5. linux - How to pass password to scp? - Stack Overflow

    Sep 8, 2008 · I know it is not recommended, but is it at all possible to pass the user's password to scp? I'd like to copy a file via scp as part of a batch job and the receiving server does, of course, need a

  6. scp - Transferring files over SSH - Stack Overflow

    Dec 5, 2008 · scp can only copy files to a machine running sshd, hence you need to run the client software on the remote machine from the one you are running scp on. If copying on the command …

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

    Agreed, what you're seeing in the source code is the remote call to scp -t or scp -f ('to' and 'from' modes, which exist for this server-side purpose). This is essentially how scp works - it relies on another copy …

  8. using scp in terminal - Stack Overflow

    I have created a file on a remote computer that I have ssh-ed into. I want to transfer the file back to the laptop I am using at the moment. I see that I am supposed to use the command: scp username@

  9. Using putty to scp from windows to Linux - Stack Overflow

    21 Use scp priv_key.pem source user@host:target if you need to connect using a private key. or if using pscp then use pscp -i priv_key.ppk source user@host:target

  10. scp with port number specified - Stack Overflow

    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 wouldn't work, scp assumed the …