linux如何删除tree命令,误删tree命令如何恢复

linux如何删除tree命令,误删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 二

误删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

六、当然还可以找到tree的rpm包,使用rpm2cpio和cpio -id解压包,并将tree命令移回到原来的位置

编程小号
上一篇 2025-02-20 15:17
下一篇 2025-03-28 22:57

相关推荐

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/hz/114619.html