About 1,190,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. 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 …

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

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

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

  6. Transfer files using scp: permission denied - Unix & Linux Stack …

    I try to transfer files from remote computer using ssh to my computer : scp My_file.txt user_id@server:/Home This should put My_file.txt in the home folder on my own computer, …

  7. scp - No such device or address - Unix & Linux Stack Exchange

    Aug 1, 2017 · scp is not the right tool to duplicate a remote filesystem, especially a live filesystem with mount points like /proc, /sys, etc. scp follows symbolic links (i.e. they will not be preserved …

  8. scp - SSH protocol v.1 is no longer supported - Stack Overflow

    Nov 14, 2020 · Trying to scp files to my server like I've done every day for years... got this weird error today: client$ scp filename.file server:/path/to/somewhere/ SSH protocol v ...

  9. scp - How to: ssh over Jumphost to host, both on non-default 22 …

    Jun 8, 2022 · The man page says the format for the -J option is -J [user@]host[:port], so -J user1@host1:port1 looks right: -J [user@]host[:port] Connect to the target host by first making …

  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 …