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

  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. Why is scp so slow and how to make it faster? - Unix & Linux Stack …

    Oct 23, 2015 · The scp protocol is outdated, inflexible and not readily fixed. Its authors recommend the use of more modern protocols like sftp and rsync for file transfer instead The …

  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. 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. How to make the script automated to take password on its own?

    It will prompt you to accept the other host's key - you answer yes (not just y) Then it will prompt you for the other server's password. That's it. Your key has now been appended to the remote …

  9. How do I provide a username and password when running "git clone

    Apr 7, 2012 · I know how to include a username and password in an HTTPS Git URL like this: git clone https://username:password@host But I'd like to know how to provide a username and …

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