如何删除 容器里的软件(彻底)
Posted 666gang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何删除 容器里的软件(彻底)相关的知识,希望对你有一定的参考价值。
命令
[root@spider1 bin]# rpm -qa|grep python|xargs rpm -ev --allmatches --nodeps ##强制删除已安装程序及其关联 [root@spider1 bin]# whereis python |xargs rm -frv ##删除所有残余文件 ##xargs,允许你对输出执行其他某些命令 [root@spider1 bin]# whereis python ##验证删除,返回无结果
rpm 命令找不到
sudo apt-get install alien
再一次
[root@spider1 bin]# alien -qa|grep python|xargs rpm -ev --allmatches --nodeps ##强制删除已安装程序及其关联
以上是关于如何删除 容器里的软件(彻底)的主要内容,如果未能解决你的问题,请参考以下文章