Answers:
软件包ubuntu-restricted-extras是所谓的“元软件包”。这样的软件包本身并不提供文件,而是依赖于其他软件包。apt-cache show ubuntu-restricted-extras
告诉我软件包推荐使用MS字体(ttf-mscorefonts-installer),而不是强制性的。
该软件包ubuntu-restricted-addons
始终在安装时安装ubuntu-restricted-extras
。如果要继续安装而不安装MS字体,请直接安装此软件包:
sudo apt-get install ubuntu-restricted-addons
其他推荐的软件包也可以手动安装:
sudo apt-get install unrar gstreamer0.10-plugins-bad-multiverse libavcodec-extra-53
如果软件包依赖ubuntu-restricted-extras
,则在安装上述软件包后,请运行:
sudo apt-get --no-install-recommends install ubuntu-restricted-extras
sudo apt-get --no-install-recommends install ubuntu-restricted-extras
还将安装不带推荐软件包的ubuntu-restricted-extras。缺点是,这递归地应用于所有依赖项。不过,没有什么可以阻止您随后安装推荐的软件包。
sudo apt-get --no-install-recommends install ubuntu-restricted-extras
确实安装了软件包,但是除了元软件包ubuntu-restricted-extras和ubuntu-restricted-addons之外,它不会安装其他任何东西。我已经更新了答案。