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

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

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

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

  6. How does `scp` differ from `rsync`? - Stack Overflow

    Nov 27, 2013 · An article about setting up Ghost blogging says to use scp to copy from my local machine to a remote server: scp -r ghost-0.3 root@*your-server-ip*:~/ However, Railscast 339: …

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

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

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

  10. 'scp' is not recognized as an internal or external command while ...

    Jan 25, 2019 · -1 Scp command used to securely transfer files between two Linux/Unix computers systems The syntax for the scp command is: scp [options] …