误删tree命令如何恢复

误删tree命令如何恢复

考察rpm,yum的用法

一、删除tree命令,tree命令不可用

[root@CentOS7 ~]# which tree
/usr/bin/tree
[root@centos7 ~]# rm -f /usr/bin/tree
[root@centos7 ~]# tree .
bash: tree: command not found…

二、直接yum或rpm安装提示tree已经安装

[root@centos7 ~]# yum install tree
Loaded plugins: fastestmirror, langpacks
Loading mirror speeds from cached hostfile
 * base: mirror.bit.edu.cn
 * extras: mirrors.tuna.tsinghua.edu.cn
 * updates: mirrors.tuna.tsinghua.edu.cn
base                                                                        | 3.6 kB  00:00:00   
extras                                                                      | 3.4 kB  00:00:00   
nginx                                                                        | 2.9 kB  00:00:00   
updates                                                                      | 3.4 kB  00:00:00   
Package tree-1.6.0-10.el7.x86_64 already installed and latest version
Nothing to do
[root@centos7 ~]# rpm -ivh /misc/cd/Packages/tree-1.6.0-10.el7.x86_64.rpm
Preparing…                          ################################# [100%]
    package tree-1.6.0-10.el7.x86_64 is already installed

三、解决办法:强制覆盖安装

[root@centos7 ~]# rpm –help
–replacepkgs                    reinstall if the package is already present
[root@centos7 ~]# rpm -ivh /misc/cd/Packages/tree-1.6.0-10.el7.x86_64.rpm –replacepkgs
Preparing…                          ################################# [100%]
Updating / installing…
  1:tree-1.6.0-10.el7                ################################# [100%]

四、此时的tree已经可以使用

[root@centos7 ~]# tree . -d
.
├── Desktop
├── Documents
├── Downloads
├── Music
├── Pictures
├── Public
├── scripts
├── Templates
└── Videos

9 directories

五、yum的话可以重新安装

[root@centos7 ~]# yum –help
reinstall      reinstall a package
[root@centos7 ~]# rm -f /usr/bin/tree
[root@centos7 ~]# tree -d .
-bash: /usr/bin/tree: No such file or directory
[root@centos7 ~]# yum reinstall tree -y
[root@centos7 ~]# tree -d .
.
├── Desktop
├── Documents
├── Downloads
├── Music
├── Pictures
├── Public
├── scripts
├── Templates
└── Videos

9 directories。”

收藏 (0) 打赏

感谢您的支持,我会继续努力的!

打开微信/支付宝扫一扫,即可进行扫码打赏哦,分享从这里开始,精彩与您同在
点赞 (0)

栗子博客 软件 误删tree命令如何恢复 https://www.lizi.tw/soft/15221.html

常见问题
  • 1、杰齐1.7仅适用于PHP5.2 2、需Zend支持 3、尽量使用宝塔面板 4、尽量使用Windows 系统,关关对Linux支持不太友好。
查看详情

相关文章

评论
暂无评论
官方客服团队

为您解决烦忧 - 24小时在线 专业服务

误删tree命令如何恢复-海报

分享本文封面