About 1,180,000 results
Open links in new tab
  1. 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 …

  2. scp - How to copy a file from a remote server to a local machine ...

    Mar 5, 2015 · In my terminal shell, I ssh'ed into a remote server, and I cd to the directory I want. Now in this directory, there is a file called table that I want to copy to my local machine …

  3. scp from Linux to Windows - Stack Overflow

    19 You could use something like the following 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 …

  4. scp without replacing existing files in the destination

    How do I copy an entire directory into a directory of the same name without replacing the content in the destination directory? (instead, I would like to add to the contents of the destination folder)

  5. How to run SUDO command in WinSCP to transfer files from …

    I am trying to use WinSCP to transfer files over to a Linux Instance from Windows. I'm using private key for my instance to login to Amazon instance using ec2-user. However ec2-user …

  6. Use scp to transfer a file from local directory X to remote directory …

    6 If you're running this scp command on the remote machine, it is looking for file.ext as a "local" file, i.e. on the remote machine. To copy a file from the remote machine to the local one, use …

  7. How do I copy a folder from remote to local using scp? [closed]

    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?

  8. How to pull a file from a server using scp?

    scp [email protected]:'foo\ bar.txt' . If you have difficulties with files containing punctuation characters, try using sftp instead of scp to transfer them. Or use an even more …

  9. Copying files with scp: connection timed out - Stack Overflow

    Copying files with scp: connection timed out [closed] Asked 11 years, 1 month ago Modified 2 years, 8 months ago Viewed 104k times

  10. How to copy all files from a directory to a remote directory using …

    Sep 30, 2015 · Note that scp follows symbolic links encountered in the tree traversal. So if you have sub-directories inside local_dir, the last example will only transfer files, but if you set the …