如何卸载 Softmaker 的 FreeOffice 2018?

如何卸载 Softmaker 的 FreeOffice 2018?

我尝试过 Softmaker 的 FreeOffice,但不太喜欢。我试图卸载它,但无法成功。

我甚至尝试听从建议这里。我的系统遇到错误,提示软件未安装,而当我打开文件时,它们都会在 Softmaker 的 FreeOffice 中打开。

下载的软件包来自这里

dpkg --list | grep softmaker 
ii   softmaker-freeoffice-2018   2928   amd64   SoftMaker FreeOffice is a complete office suite

$ sudo apt purge $(dpkg --list | grep softmaker | awk '{print $2}') --dry-run 
Reading package lists... Done 
Building dependency tree Reading state information... Done 
The following packages will be REMOVED: 
  softmaker-freeoffice-2018* 
0 upgraded, 0 newly installed, 1 to remove and 8 not upgraded. 
Purg softmaker-freeoffice-2018 [2928]

答案1

您可以尝试运行此命令来查看会发生什么:

sudo apt purge $(dpkg --list | grep softmaker | awk '{print $2}') --dry-run

然后,如果没有删除重要的系统包,则运行此命令(不带--dry-run选项)。

用于dpkg --list | grep softmaker查看系统中与其关联的包。

dpkg --list | grep softmaker | awk '{print $2}'sudo apt purge命令仅输出被删除的包名称中使用的包名称。

如果只想删除一个包(softmaker),则运行不带--dry-run选项的命令来删除它:

sudo apt purge $(dpkg --list | grep softmaker | awk '{print $2}')

相关内容