How to transfer files from windows to linux

One, winscp

          A visual file transfer tool, very convenient to transfer files

Two, scp

            scp [email protected]:~/dotfiles C:/

            If it is a file, use the -r option

Three, pscp

In the putty installation directory, there is an executable file pscp.exe , the usage is similar to the scp command,

win+R enter cmd to enter the command line,

For example, to upload the local dotfiles.tar file to the home directory of user_name of the remote computer 192.168.0.168, the login account of the remote host is user_name, the command is as follows:

pscp  -P 22  dotfiles.tar   [email protected]:~

Then prompt for the password, then OK

four,psftp

Of course, you can also use the psftp.exe tool that comes with the putty installation package. The primary usage is the same as pscp:

psftp  dotfiles.tar [email protected]:~

Five, other methods

      lrzsz etc.

Guess you like

Origin blog.csdn.net/lianshaohua/article/details/108598189