利用pscp将文件从windows复制到linux上出问题?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了利用pscp将文件从windows复制到linux上出问题?相关的知识,希望对你有一定的参考价值。
想把windows系统d盘里某个文件复制到linux里去
在我输入
scp D:\1.txt **@192.168.0.107:2 之后
提示
ssh: Could not resolve hostname d: Name or service not known
请问这是什么意思,该怎么做?
scp是<发送>,不是<复制> 。这样记就不会搞反了。 参考技术A 其实不必用这个,直接用mount找WIM上的共享就好,
或者是在WIN上用这软件,访问LINUX
利用pscp程序实现Windows和Linux互传文件
1. 在Putty官方网站上下载pscp.exe程序,下载地址如下:
http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html
2. 将下载好的pscp.exe程序放置到Windows的C:\Windows\System32这个目录下
3. Windows传文件到Linux:
打开cmd命令行,pscp E:\test.txt [email protected]:/home/
4. Linux传文件到Windows:
打开cmd命令行,pscp [email protected]:/home/test.txt G:/test/
以上是关于利用pscp将文件从windows复制到linux上出问题?的主要内容,如果未能解决你的问题,请参考以下文章
使用私钥/公钥从 Windows 到 Linux 的 PSCP 文件
使用pscp实现Windows 和 Linux服务器间远程拷贝文件