实际上,这可能是一个更普遍的问题,即:当我安装一个metapackage时,如何查看将安装哪些包?在这个特定的例子中,我只发现了一些模糊的描述,比如
安装此软件包将支持MP3播放和解码,支持各种其他音频格式(GStreamer插件)、Microsoft字体、Java运行时环境、Flash、LAME (创建压缩音频文件)和DVD播放。
来自http://packages.ubuntu.com/lucid/ubuntu-restricted-extras
apt-get install ubuntu-restricted-extras告诉我,我正在安装一个软件包:ubuntu限制-附加程序。
尤其是在这种情况下,我想知道我在我的电脑上放了什么,以及通过这样做我默许达成了什么协议。我也想知道不同的*ubuntu限制的-附加包之间有什么区别。
发布于 2013-12-07 09:18:52
乌本图限制的临时演员有以下内容:
flashplugin-installer
gstreamer0.10-ffmpeg
gstreamer0.10-fluendo-mp3
gstreamer0.10-pitfdll
gstreamer0.10-plugins-bad
gstreamer0.10-plugins-ugly
gstreamer0.10-plugins-bad-multiverse
gstreamer0.10-plugins-ugly-multiverse
icedtea6-plugin
libavcodec-extra-52
libmp4v2-0
ttf-mscorefonts-installer
unrar由于Ubuntu中包含的软件的法律地位,Ubuntu中默认不包含该软件包。
你也可以看看Ubuntu软件包
发布于 2013-12-07 12:11:41
使用这个
apt-cache show <package name> | grep Depends:
apt-cache show <package name> | grep Recommends:或
apt-cache depends <package name>您可以使用它查看要在系统中安装的特定包:
$ apt-get install -s <package name> | grep Inst | cut -d " " -f 2https://askubuntu.com/questions/387374
复制相似问题