How to SCP from Linux server to Windows client

339,536

Solution 1

in order for you to copy files back to your Windows you need SSH daemon/service to be running on your Windows, it's much easier to use this tool instead, it has an ability to import sessions from Putty, very plain forward client you'll love it!

WinSCP :: Free SFTP and FTP client for Windows

Solution 2

Windows 10 now has OpenSSH built in. https://docs.microsoft.com/en-us/windows-server/administration/openssh/openssh_install_firstuse

Get an admin command prompt

Open PowerShell as an Administrator.

Check available versions

Get-WindowsCapability -Online | ? Name -like 'OpenSSH*'

Install client

Add-WindowsCapability -Online -Name OpenSSH.Client~~~~0.0.1.0

Install server

Add-WindowsCapability -Online -Name OpenSSH.Server~~~~0.0.1.0

Start server and enable at boot

Start-Service sshd
Set-Service -Name sshd -StartupType 'Automatic'

Find your Windows IP address

ipconfig

On your remote (Linux) machine, find your IP address.

ifconfig

Create a public SSH key

ssh-keygen.exe

Copy public key from local (Windows) to remote (Linux) machine so you don't have to type in a password all the time.

Note that ssh-copy-id is not currently available on Windows.

cat C:\Users\YOU/.ssh/id_rsa.pub | ssh USER@REMOTE_IP 'mkdir -p ~/.ssh && cat >> ~/.ssh/authorized_keys'

Do the same on your Linux machine (Note, ssh-copy-id does not work)

ssh-keygen # if needed
cat ~/.ssh/id_rsa.pub | ssh USER@WINDOWS_IP 'mkdir -p ~/.ssh && type con >> C:/Users/YOU/.ssh/authorized_keys'
  • The method above did not work for me, so I ended up manually SCPing the public key over and pasting it into the C:/Users/YOU/.ssh/authorized_keys file.

  • That still did not work, so I had to modify the sshd_config file.

    • Open Notepad as Administrator

    • Open %programdata%\ssh\sshd_config

    • Add the following lines:

        Match User YOU
             AuthorizedKeysFile C:/Users/YOU/.ssh/authorized_keys
  • Reboot

Create a password on Windows if you don't already have one

System Settings...Sign-in options

-- Note, you can still disable the Windows login screen by a) Setting the 'Require sign-in' option to never and b) Using the 'netplwiz' command and unticking the 'Users must enter password...' checkbox.

Now you should be able to SSH or SCP from your Linux machine

scp FILE WINDOWS_IP:C:/Users/YOU/Desktop

Solution 3

You are correct. SSHD is the SSH server services that runs on the host. It accepts connections from SSH clients (like PuTTy), SCP clients, and SFTP clients.

You can download pscp from the same website where PuTTY is hosted.

From the windows machine, you would execute a command similar to

pscp.exe [email protected]:/path/to/app.war c:\tmp

Solution 4

To SCP a file to a Windows machine, you need an SSH/SCP server on the Windows.

Since Windows 10, Microsoft build of OpenSSH for Windows is included. It can also be manually installed on older versions of Windows.

I have prepared a guide for setting up SSH/SFTP server on Windows using this Microsoft build of OpenSSH.

See also Is IIS SFTP natively supported by Windows?


Though as you SSH into the Linux server from the Windows machine, you actually can download a file from the Linux server to the Windows server, instead of trying to upload the file from the Linux server to Windows server.

In you have an SSH access from Windows to Linux, you have an SCP access too (or even better an SFTP access).

Use any SCP/SFTP client available.

You can use WinSCP SFTP/SCP client, which has both GUI and command-line interface.

Another alternative is PuTTY toolset, which includes the pscp command-line tool with a syntax similar to the OpenSSH scp command. Also the latest versions of Windows 10 comes with OpenSSH scp built-in and it can be installed on older versions too.

(I'm the author of WinSCP)

Solution 5

You can do this by using the Linux Ubuntu subsystem for Windows (you need to enable this as a Windows feature). Then you can use a Linux terminal client that runs on Windows by getting it from the Microsoft Store (e.g. Ubuntu 16.04 LTS). Then, if you have ssh security set up to remote into your Linux machine, you can scp from your local Windows Ubuntu terminal (when logged in as the username that you set for your Linux instance) something like this:

scp -i ~/.ssh/my_rsa [email protected]:~/myfile ~/ ... enter RSA passphrase

The remote file will be copied into your local Ubuntu filesystem used by Windows e.g.

C:\Users\my.username\AppData\Local\Packages\CanonicalGroupLimited.Ubuntu16.04onWindows_79rhkp1fndgsc\LocalState\rootfs\home\my_linux_username

Share:
339,536

Related videos on Youtube

pnongrata
Author by

pnongrata

Updated on September 18, 2022

Comments

  • pnongrata
    pnongrata over 1 year

    I'm SSHing into a Linux machine using PuTTY and trying to copy a file down somewhere (anywhere) to my local machine. I figure SCP is the best candidate for the job but don't really care, so long as the solution works!

    I cd to the directory containing the file I want (app.war) and type the following:

    scp app.war ./
    

    I've tried both to no avail:

    scp app.war ./C:/Users/myUser/
    scp app.war ./Users/myUser/
    

    It got me thinking that perhaps SCP is a client/server tool and requires a client on my Windows machine, which isn't there.

    Am I just using the wrong syntax? Or am I way off-base? If so, what options do I have? Thanks in advance!

  • Benj
    Benj almost 9 years
    It does not really answer the original question, which was living in the command-line. See my comment below original question.
  • alexus
    alexus about 8 years
    @Benj OP asked for solution, WinSCP is a good solution for that task.
  • djsmiley2kStaysInside
    djsmiley2kStaysInside almost 7 years
    Link only answers are rather unhelpful as they may stop working in the future - try to expand your answer by actually explaining the steps in the video.
  • Martin Prikryl
    Martin Prikryl over 4 years
    In the latest versions of Windows 10, (Win32-OpenSSH) scp(.exe) is built-in. You do not need to install anything.
  • Kfcaio
    Kfcaio over 3 years
    It still works, but WinSCP tends to freeze up for directories with a lot of files
  • Johnny5
    Johnny5 almost 3 years
    This bit of syntax is what I came looking for; scp FILE WINDOWS_IP:C:/Users/YOU/Desktop thanks.