linux如何把文件传到windows
时间: 2024-06-03 10:09:38 浏览: 84
Linux与Windows文件互传(VMWare)
5星 · 资源好评率100%
可以使用SCP命令将文件从Linux传输到Windows,具体命令如下:
scp /path/to/file username@remote:/path/to/destination
其中,/path/to/file是要传输的文件路径,username是Windows电脑的用户名,remote是Windows电脑的IP地址或主机名,/path/to/destination是要传输到的目标路径。需要注意的是,Windows电脑需要先安装SSH服务才能使用SCP命令。
阅读全文