[原创]centos系统没法使用scp命令解决办法
前几天新装了一个centos 6.5 ,发现scp没法使用。当前服务器需要从其他服务器拷贝一些脚本,习惯使用scp命令,没法就用了wget下载。不过问题还是要解决,于是当时尝试使用:
yum install scp -y
安装,结果提示如下报错无法安装:
[[email protected] ~]# yum -y install scp Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile * base: mirrors.btte.net * extras: mirrors.pubyun.com * rpmforge: mirrors.neusoft.edu.cn * updates: mirrors.pubyun.com Setting up Install Process No package scp available. Error: Nothing to do
于是网上搜索资料,原来scp属于openssh-clients这个包,于是安装:
yum install openssh-clients -y
执行完毕以后,问题搞定,scp可以用了。