1 打开Ubuntu的终端Terminal,输入
ifconfig
,查看Ubuntu的ip地址:
ifconfig
2 检查win是否可以和Ubuntu通讯
在win下,按win+R,输入cmd,打开win终端,在命令行输入ping 192.168.33.130(your Ubuntu的IP),若能ping成功则可以开始在win和Ubuntu之间传输文件。
3 在Ubuntu中打开
ssh
服务。
3.1 在终端输入以下命令,启动ssh服务:
sudo service ssh start
注:如果报错,则需安装openssh-server,安装完成后再重新启动ssh服务。
安装openssh-server:
sudo apt-get install openssh-server
3.2 使用以下命令查看
ssh
服务是否启动:
sudo ps -e | grep ssh
如出现
sshd
则说明已成功启动。
3.3 在win下,使用scp命令向Ubuntu传输文件:
scp "win/file/path" UbuntuHostName@UbuntuIP:/ubuntu/receiveFile/path
"win/file/path" :表示win下需要向Ubuntu窜书的文件
UbuntuHostName:表示Ubuntu主机名称
UbuntuIP:表示Ubuntu的IP地址
/ubuntu/receiveFile/path:表示Ubuntu接受文件的位置
例如:将win下的E:\MyFile\selfcode\downloadcode\pt.tar.gz文件,传到Ubuntu的/home/th/miniconda3/envs
scp "E:\MyFile\selfcode\downloadcode\pt.tar.gz" [email protected]:/home/th/miniconda3/envs
参考文章:windows上传文件到虚拟机的四种方法
版权归原作者 灰暗世界% 所有, 如有侵权,请联系我们删除。