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