从Windows主机向Ubuntu发送/获取文件
1. 获取Ubuntu的IP地址
bash
ifconfig
2. Windows获取文件
bash
scp [email protected]:/home/carlos/ubuntu_file.txt ./
3. Windows发出文件
bash
scp ./windows_file.txt [email protected]:/home/carlos/
从Ubuntu主机向Windows发送/获取文件
1. 获取Windows的IP地址
ipconfig
注意 : 在Windows上是
ipconfig
,而在Ubuntu是ifconfig
.
2. Ubuntu获取文件
bash
scp [email protected]:D:/scp_test/Windows_file1.txt ./
3. Ubuntu发出文件
bash
scp /home/carlos/ubuntu_file1.txt [email protected]:D:/scp_test/