[Tutorials] 怎么干净删除LibreOffice
Tofloor
poster avatar
180******19
deepin
2022-10-06 21:37
Author

我已经通过右键卸载了LibreOffice,但在系统盘里搜索LibreOffice,为什么还能搜出很多文件?在批量删除这些残留文件时显示没有权限,怎么才能把一个应用程序卸载干净?

Reply Favorite View the author
All Replies
寂静的羽夏
deepin
2022-10-06 21:42
#1

终端是卸载干净程序的唯一途径,通过常规手段是很难卸载它的,它的组件太多,如果你想安装回去也挺难,在终端输入:

sudo apt purge libreoffice*

回车,输入密码即可

Reply View the author
云的眼泪
deepin
2022-10-07 01:42
#2
寂静的羽夏

终端是卸载干净程序的唯一途径,通过常规手段是很难卸载它的,它的组件太多,如果你想安装回去也挺难,在终端输入:

sudo apt purge libreoffice*

回车,输入密码即可

这个命令也清除不干净。

卸载后在/usr/lib目录还有

image.png

image.png

Reply View the author
寂静的羽夏
deepin
2022-10-07 02:11
#3
云的眼泪

这个命令也清除不干净。

卸载后在/usr/lib目录还有

image.png

image.png

这个应该是开发 libreoffice 插件用的,你可以试试:

sudo apt autoremove

把残留清一下

Reply View the author
z328502560
deepin
2022-10-07 04:50
#4

确实卸载不干净 而且autoremove 也没用

Reply View the author
180******19
deepin
2022-10-07 15:34
#5

手动搜索LIBREOFFICE,把搜索到的文件全部删掉了。

Reply View the author
laoliu945
deepin
2022-10-11 07:27
#6

试一试 dpkg -l | grep "^rc" | awk '{print $2}' | xargs sudo apt -y purge

Reply View the author