什么是ubuntu-restricted-extras?

这实际上可能是一个更普遍的问题:我在安装元数据包时如何查看将安装哪些软件包? 在这个特定的例子中,我大多只发现了模糊的描述

安装此软件包将支持MP3播放和解码,支持各种其他音频格式(GStreamer插件),Microsoft字体,Java运行时环境,Flash插件,LAME(创建压缩音频文件)和DVD播放。

来自http://packages.ubuntu.com/lucid/ubuntu-restricted-extras

apt-get install ubuntu-restricted-extras告诉我我正在安装一个软件包:ubuntu-restricted-extras。

特别是在这种情况下,我想知道我在计算机上放了什么,以及我默认同意这些协议。 我也想知道各种* ubuntu-restricted-extras包之间的区别是什么。

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  | grep Depends: apt-cache show  | grep Recommends: 

要么

 apt-cache depends  

您可以使用它来查看要在系统中安装的特定软件包:

  $ apt-get install -s  | grep Inst | cut -d " " -f 2