About 100,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 · scp is actually easier to use than appears at first glance. scp <from> <to> <from> or <to> can be local or remote. Remote files are of the form user@host:path_on_remote Local …

  2. 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 …

  3. 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 …

  4. 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?

  5. 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 …

  6. 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 …

  7. scp from Linux to Windows - Stack Overflow

    scp -r linux_username@linux_address:path/to/file path/to/local/directory This will copy file to the specified local directory on the system you are currently working on.

  8. Copy file from Windows to Linux via scp (from Linux)

    Dec 21, 2015 · This syntax is pretty close to the Linux scp command - but with Window-ish flags. You can find the winscp.exe executable at this path: C:\Program Files …

  9. scp or sftp copy multiple files with single command

    The {} syntax makes it easier to copy multiple files from the same directory, is there any way to do this with scp -r so that "FILE1" "FILE2" can be relative paths and not absolute paths to the files?

  10. 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