bash scp command not found的解决方法
程序员文章站
2023-11-22 23:08:16
安装了centos6.0,由于选择了最小安装,很多包没有安装,因此一些常用的命令也不支持,如下:# scp -bash: scp: command not found
我...
安装了centos6.0,由于选择了最小安装,很多包没有安装,因此一些常用的命令也不支持,如下:
# scp
-bash: scp: command not found
我的解决方法是:在一台运行正常的centos 5.6服务器上找到scp所在的包:
##---以下命令在运行正常的centos 5.6上执行
复制代码 代码如下:
# which scp
/usr/bin/scp
# rpm -qf /usr/bin/scp
openssh-clients-4.3p2-72.el5
这么看来scp所在的包是openssh-clients了。
在不正常的机器上安装吧:
复制代码 代码如下:
# yum install openssh-clients
或者从光盘上安装
# rpm -ivh libedit-2.11-4.20080712cvs.1.el6.x86_64
# rpm -ivh openssh-clients-5.3p1-20.el6.x86_64
至此,scp命令可以执行了。
注意:以上用到的包名请大家根据自己的情况进行调整。
推荐阅读
-
bash scp command not found的解决方法
-
LNMP下提示File not found问题的解决方法
-
MySQL4 File ‘c:\mysql\share\charsets\?.conf’ not found (Errcode: 22)的解决方法
-
解决 bash: vue command not found
-
sudo service: command not found 报错的解决方法
-
linux下scp远程拷贝包含空格的目录或者文件的解决方法
-
mysql出现Error performing load command的解决方法
-
Pycharm下载pyinstaller报错:You should consider upgrading via the 'python -m pip install --upgrade pip' command的解决方法
-
linux下提示bash:command not found
-
Apache遇到的问题 APR not found问题的解决方法