溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

誤刪tree命令如何恢復(fù)

發(fā)布時間:2020-07-06 14:44:20 來源:網(wǎng)絡(luò) 閱讀:137 作者:呆呆的小豬 欄目:系統(tǒng)運(yùn)維

誤刪tree命令如何恢復(fù)
考察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已經(jīng)安裝
[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
    三、解決辦法:強(qiáng)制覆蓋安裝
    [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已經(jīng)可以使用
    [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
六、當(dāng)然還可以找到tree的rpm包,使用rpm2cpio和cpio -id解壓包,并將tree命令移回到原來的位置

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI