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

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

  3. Automate scp file transfer using a shell script - Stack Overflow

    Aug 28, 2009 · 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 …

  4. Transfer files to/from session I'm logged in with PuTTY

    I'm logged into a remote host using PuTTY. What is the command to transfer files from my local machine to the machine I'm logged into on PuTTY?

  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. scp - Copying files from server to local computer using SSH - Stack ...

    May 31, 2015 · I am having trouble copying files from a remote server using SSH. Using PuTTY I log in to the server using SSH. Once I find the file I would like to copy over to my computer, I …

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

  8. using scp renaming all files - Unix & Linux Stack Exchange

    Sep 1, 2016 · scp can't rename files when copying multiple files to a directory, so you'll need to use some other tool in addition or instead to perform the pattern-based renaming.

  9. scp - Transferring large (8 GB) files over ssh - Unix & Linux Stack ...

    Mar 17, 2015 · o_upload: offset < 0 Any idea what could be wrong? Don't SCP and SFTP support files that are larger than 2 GB? If so, then how can I transfer bigger files over SSH? The …

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