使用 dpkg 卸载软件包

使用 dpkg 卸载软件包

我想卸载 openoffice 包,并希望使用单个命令或正则表达式来执行此操作,即

dpkg -r openoffice-org*

但 dpkg 不接受通配符

如何使用通配符卸载所有软件包

答案1

使用通配符删除多个包的一行代码dpkg

dpkg --list|grep openoffice|awk '{ print $2 }'|xargs sudo dpkg -r

答案2

实际上 dpkg 不支持通配符,所以如果你需要这个功能,你需要这个

dpkg --get-selections | grep "open-office" >list.txt

此文件包含您需要解析的包和状态,然后将其提供给 dpkg

答案3

您可以使用

sudo apt-get purge openoffice.org-base-core openoffice.org-common openoffice.org-core openoffice.org-style-human uno-libs3 ure openoffice.org-thesaurus-en-au openoffice.org-thesaurus-en-us openoffice.org-hyphenation openoffice.org-hyphenation-en-us openoffice.org-l10n-common

清除包。

运行通配符也将删除以下内容:

aspell* aspell-en* dictionaries-common* hunspell-en-ca* hunspell-en-us* language-support-en* language-support-writing-en* myspell-en-au* myspell-en-gb* myspell-en-za* openoffice.org-base-core* openoffice.org-calc* openoffice.org-common* openoffice.org-core* openoffice.org-draw* openoffice.org-emailmerge* openoffice.org-gnome* openoffice.org-gtk* openoffice.org-help-en-us* openoffice.org-impress* openoffice.org-math* openoffice.org-style-human* openoffice.org-writer* python-uno* wbritish*

使用上述方法是安全的方法。

相关内容