Hello, guys!
I'm going to introduce you the methods for file transfer between the Window and Linux systems.
Method: Use pscp.exe
Download pscp.exe.
The link is as below, choose the software pscp.exe, according to the windows system to select 32 or 64-bit system.
https://www.chiark.greenend.org.uk/~sgtatham/putty/latest.html

Operation Step (Windows—>Linux)
The following assumes that the pscp.exe file is stored on disk D.On your local computer, choose Start > Run and run the cmd command.
In the CLI shown in the below picture, when the progress reaches 100%, the software package has been uploaded successfully.

The command for uploading a software installation package is pscp Source path root@hostIP:Destination path
The command for uploading a folder is pscp -r Source path root@hostIP:Destination path
For example, if you want to upload the test.zip file from disk D on your local computer to the /opt directory on the destination server, run the pscp test.zip root@10.xxx.xxx.xxx:/opt command.
Operation Step (Linux—>Windows)
Command: pscp username@Linux serverIP:/file path windows file path
Picture as below:

Attention:
If file privilege of Linux system is not enough, then the transfer will be a failure, so we need to revise the file right.(for example: In root account and execute: chmod 777 /var/home/userid/cc)
Best wishes!




