ubuntu-restricted-extras包含了什么内容?

这实际上可能是一个更一般的问题,即:当我安装一个元包时,如何查看将安装哪些软件包?在这个特定的例子中,我主要只找到了模糊的描述,比如:
“安装此软件包将引入对MP3播放和解码的支持,对其他各种音频格式的支持(GStreamer插件),微软字体,Java运行环境,Flash插件,LAME(用于创建压缩音频文件)和DVD播放。”
来自http://packages.ubuntu.com/lucid/ubuntu-restricted-extras apt-get install ubuntu-restricted-extras告诉我我正在安装一个软件包:ubuntu-restricted-extras。
尤其在这种情况下,我想知道我要在我的计算机上安装什么,并且通过这样做,我默认同意了哪些协议。我也想知道各种*ubuntu-restricted-extras软件包之间的区别。
2个回答

ubuntu-restricted-extras包含以下内容:
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-restricted-extras中包含的软件的法律状态,该软件包在Ubuntu中默认不包含。
您还可以查看Ubuntu软件包

使用这个
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 2