SOFTELメモ Developer's blog

会社概要 ブログ 調査依頼 採用情報 ...
技術者募集中

【linux】yum groupinstall

yum には package group という概念がある。(古いyumにはない)

OSインストールのときなどにも指定できるが、パッケージのグループを選択してインストールできる。

など。

これらのグループの種類の一覧は yum grouplist とすると出力させることができる。

# yum grouplist
(中略)
Installed Groups:
   DNS Name Server
   Editors
   Legacy Network Server
   Mail Server
   MySQL Database
   Network Servers
   Ruby
   System Tools
   Text-based Internet
   Web Server
   Windows File Server
   Yum Utilities
Available Groups:
   Administration Tools
   Authoring and Publishing
   Base
   Beagle
   Cluster Storage
   Clustering
   Development Libraries
   Development Tools
   Dialup Networking Support
   Emacs
   Engineering and Scientific
   FTP Server
   FreeNX and NX
   GNOME Desktop Environment
   GNOME Software Development
   Games and Entertainment
   Graphical Internet
   Graphics
   Horde
   Java
   Java Development
   KDE (K Desktop Environment)
   KDE Software Development
   KVM
   Legacy Software Development
   Legacy Software Support
   Mono
   News Server
   Office/Productivity
   OpenFabrics Enterprise Distribution
   PostgreSQL Database
   Printing Support
   Server Configuration Tools
   Sound and Video
   Tomboy
   Virtualization
   X Software Development
   X Window System
   XFCE-4.4
Done

OSセットアップ時だけでなく、OSセットアップ後も yum groupinstall でインストール可能。

例えば、開発したいので開発ツール一式が欲しいとき、次のように開発ツールグループをまとめてインストール。

$ yum groupinstall 'X Software Development' 'Legacy Software Development' 'Development Tools' 'Development Libraries'

関連するメモ

コメント