About 1,570,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

    If I do from windows I get 'scp' is not recognized as an internal or external command,operable program or batch file. If I do from Linux to my windows machine then I get "ssh: connect to …

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

  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 …

  6. scp files from local to remote machine error: no such file or directory

    I want to be able to transfer a directory and all its files from my local machine to my remote one. I dont use SCP much so I am a bit confused. I am connected to my remote machine via ssh and …

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

  8. scp - Is there a WinSCP equivalent for Linux? - Stack Overflow

    I love WinSCP for Windows. What is the best equivalent software for Linux? I tried to use sshfs to mount the remote file system on my local machine, but it is not as user friendly as simply …

  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. linux - scp gives "not a regular file" - Stack Overflow

    124 I just tested this and found at least 3 situations in which scp will return not a regular file: File is actually a directory File is a named pipe (a.k.a. FIFO) File is a device file Case #1 seems most …