web-dev-qa-db-ja.com

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という1つのパッケージをインストールしていることを示しています。

特にこの場合、自分のコンピュータに何を置いているのか、そうすることによって暗黙のうちに同意しているのかについて知りたいのです。また、さまざまな* ubuntu-restricted-extrasパッケージの違いについても知りたいと思います。

4
plattnum

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にはデフォルトでパッケージが含まれていません。

buntu Packages もご覧ください。

4
Mitch

これを使って

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
3
Felipe Morales