kazmax - Linux で自宅サーバー

yum|パッケージグループ情報の確認

yum groupinfo コマンドを使うと、パッケージグループの情報を表示させることができます。ここでは、yum groupinfo の使い方を説明します。

Last Update : 2014年10月08日

yum|パッケージグループ情報の確認 項目

  1. yum groupinfo でパッケージグループ情報の確認

1. yum groupinfo でパッケージグループ情報の確認

パッケージグループに関する情報を表示させるには、yum groupinfo コマンドを使います。

yum groupinfo 書式

# yum groupinfo グループID

memo

グループIDは、yum grouplist に、-v オプションをつけて実行すると確認できます。

# yum -v grouplist  ← -v オプションをつけてコマンドを実行
Loading "fastestmirror" plugin
Loading "refresh-packagekit" plugin
Loading "security" plugin
Config time: 0.024
Yum Version: 3.2.29
Setting up Group Process
Loading mirror speeds from cached hostfile
 * base: centos.mirror.secureax.com
 * extras: centos.mirror.secureax.com
 * updates: centos.mirror.secureax.com
base                                                     | 3.7 kB     00:00
extras                                                   | 3.3 kB     00:00
updates                                                  | 3.4 kB     00:00
rpmdb time: 0.001
group time: 9.503
Installed Groups: ↓ ()かっこの中がグループIDです。
   Perl のサポート (perl-runtime)          ← perl-runtime がグループID
   SNMP サポート (system-management-snmp)  ← system-management-snmp がグループID
   Web サーバー (web-server)               ← web-server がグループID
・・・

yum groupinfo 使用例

「レガシー UNIX の互換性」の情報を表示してみます。

# yum groupinfo legacy-unix ← 「レガシー UNIX の互換性」のグループIDで指定する
Loaded plugins: fastestmirror, refresh-packagekit, security
Setting up Group Process
Loading mirror speeds from cached hostfile
 * base: centos.mirror.secureax.com
 * extras: centos.mirror.secureax.com
 * updates: centos.mirror.secureax.com

Group: レガシー UNIX の互換性
 Description: レガシー UNIX 環境の使用やこの環境からの移行するための互換性プログラム
 Default Packages: ← デフォルトでインストールされるパッケージ
   xinetd
 Optional Packages: ← オプションのパッケージ(インストールする場合は別途行う)
   authd
   cups-lpd
   dump
   finger
   finger-server
   krb5-appl-servers
   ksh
   mksh
   ncompress
   rsh
   rsh-server
   rusers
   rusers-server
   rwho
   talk
   talk-server
   tcp_wrappers
   telnet
   telnet-server
   tftp

Default Packages に属するものだけインストール対象となります。

# yum groupinstall legacy-unix
Loaded plugins: fastestmirror, refresh-packagekit, security
Loading mirror speeds from cached hostfile
 * base: centos.mirror.secureax.com
 * extras: centos.mirror.secureax.com
 * updates: centos.mirror.secureax.com
Setting up Group Process
Checking for new repos for mirrors
Resolving Dependencies
--> Running transaction check
---> Package xinetd.x86_64 2:2.3.14-39.el6_4 will be installed
--> Finished Dependency Resolution

Dependencies Resolved

=============================================================================
 Package              Arch        Version                Repository     Size
=============================================================================
Installing:
 xinetd               x86_64      2:2.3.14-39.el6_4      base          121 k
 ↑ デフォルトパッケージだけがインストール対象
Transaction Summary
=============================================================================
Install       1 Package(s)

Total download size: 121 k
Installed size: 259 k
Is this ok [y/N]:
パッケージ管理 関連記事
Linux 基礎知識 関連記事