我在华硕上网本上运行 lubuntu 13.04。我想删除 Abiword(因为我认为它损坏了 ODT 文件)。但是,当我在 Synaptic Package Manager (SPM) 中选择将其完全删除时,我被告知它lubuntu-desktop
也将被删除。
我粗略地谷歌了一下,发现这个是桌面环境表明删除它可能会带来可怕的后果。我有点困惑。为什么 Abiword 应该与 紧密绑定lubuntu-desktop
?更重要的是,删除 会产生什么影响lubuntu-desktop
?这可能是 SPM 的错误吗?
paulkorir@paulkorir-X101CH:~$ sudo apt-get remove abiword abiword-common
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages were automatically installed and are no longer required:
conglomerate-common libbonoboui2-0 libbonoboui2-common libgnomeui-0
libgnomeui-common
Use 'apt-get autoremove' to remove them.
The following packages will be REMOVED:
abiword abiword-common lubuntu-desktop
0 upgraded, 0 newly installed, 3 to remove and 17 not upgraded.
After this operation, 15.4 MB disk space will be freed.
Do you want to continue [Y/n]?
答案1
lubuntu-desktop
只是一个元包,只需一步即可安装所有与 lubuntu 相关的包,因此它依赖于任何 lubuntu 安装中默认安装的所有包。可以安全地删除它,但您应该确保只卸载该包,而不会卸载其他任何包:
sudo apt-get remove lubuntu-desktop
这样,只需删除您想要摆脱的依赖项:
sudo apt-get remove abiword
就完成了。
Synaptic 的方法同样好,但是再次强调,请确保只删除您想要删除的软件包。