情景
- 宿主机是win11,需要传文件给Hyper-v的win10虚拟机;
- 安装自带的ssh服务;
必要条件
确认安装了SSH组件
-
打开Windows设置:
-
系统->可选功能:
-
确认已经添加了SSH服务组件:
-
如果没有则去添加:添加后可能需要重启电脑
-
同样的,两个Windows系统都需要安装,只不过win10有些版本这个功能在“设置”下的“可选功能”中:
-
如果没有还可以按“win+R”后输入
fodhelper
:
确认SSH服务启动且正在运行
- 右键单击任务栏的WIN图标,选择计算机管理:
- 单击选择“服务”:
- 找到这两个服务:
OpenSSH Authentication Agent
OpenSSH SSH Server
- 依次设置启动类型为“自动”,注意两个服务都要设置:
- 然后点击下面的启动,然后点击“应用”,“确定”
- 确保两个服务都启动且自启动:
传输命令
- 保证上面步骤无误后,直接在命令行(Power shell或者CMD)使用
scp
命令传输文件就可以了; - 例如:第一次输入会弹出确认,输入
yes
即可:
PS C:\Users\Taiga> scp D:\hello.txt [email protected]:C:\01_Software
The authenticity of host 'xxx.xxx.xxx.198 (xxx.xxx.xxx.198)' can't be established.
ED25519 key fingerprint is SHA256:xxxxxxxxxx.
This key is not known by any other names
Are you sure you want to continue connecting (yes/no/[fingerprint])?
Please type 'yes', 'no' or the fingerprint:
Please type 'yes', 'no' or the fingerprint:
Warning: Permanently added 'xxx.xxx.xxx.198' (ED25519) to the list of known hosts.
[email protected]'s password:
hello.txt 100% 83MB 13.5MB/s 00:06
PS C:\Users\Taiga>
- 确认后需要输入密码:
PS C:\Users\Taiga> scp D:\hello.txt [email protected]:C:\01_Software
[email protected]'s password:
hello.txt 100% 0 0.0KB/s 00:00
PS C:\Users\Taiga>
- 然后就传输完成了,关于
scp
命令的格式可以参考Linux的scp
命令: - Linux scp命令
关于IP和用户名
-
输入
ipconfig
或ipconfig.exe
命令查看IP地址,IPv4
的就是: -
输入
net user
命令查看用户名: