前几天我安装了 Ubuntu-Mate 16.04,并已完全满足我的需求,但有一个例外。我真的不使用也不想要 Tilda。当我今天尝试删除它时,我看到了以下消息:
╔═◯ ~
╚═▷ arm tilda [* I used Fish and 'arm' is aliased to 'apt remove', btw]
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages will be REMOVED:
tilda ubuntu-mate-core ubuntu-mate-desktop
0 upgraded, 0 newly installed, 3 to remove and 0 not upgraded.
After this operation, 433 kB disk space will be freed.
Do you want to continue? [Y/n]
我愿意不是由于显而易见的原因,我们希望继续下去。
有人能帮我一下吗?我被 Tilda 困住了吗?还有其他方法可以删除它吗?
答案1
答案2
ubuntu-mate-core
和ubuntu-mate-desktop
都是元包。它们是包列表,而不是实际的包本身。
查看apt show ubuntu-mate-core | grep Section
和的输出apt-show ubuntu-mate-desktop | grep Section
。两者都包含Section: universe/metapackages
接下来,您可以tilda
通过运行以下命令来确认除了这两个元包之外,没有其他“真实”包将被删除:
apt remove -s tilda
它只会模拟删除,因为 - s
。
您可以在这里阅读有关元包以及删除它们的后果的更多信息:删除 ubuntu-desktop 元包有什么缺点?