본문 바로가기

3-1. Linux/::Command::

yum group install

yum 기능 중 groupinstall이라는 옵션이 있다.

이 기능을 이용하면 미리 설정된 패키지들을 손쉽게 설치할 수 있도록 해준다.

1. 그룹 목록 확인

[root@localhost ~]# yum grouplist
Loaded plugins: fastestmirror
Setting up Group Process
Loading mirror speeds from cached hostfile
 * addons: data.nicehosting.co.kr
 * base: data.nicehosting.co.kr
 * extras: data.nicehosting.co.kr
 * updates: data.nicehosting.co.kr
Installed Groups:
   Administration Tools
   DNS Name Server
   Dialup Networking Support
   Editors
   FTP Server
   GNOME Desktop Environment
   Games and Entertainment
   Graphical Internet
   Graphics
   Java
   Legacy Network Server
   Mail Server
   MySQL Database
   Network Servers
   News Server
   Office/Productivity
   Printing Support
   Server Configuration Tools
   Sound and Video
   System Tools
   Text-based Internet
   Web Server
   Windows File Server
   X Window System
   Yum Utilities
Available Groups:
   Authoring and Publishing
   Base
   Beagle
   Cluster Storage
   Clustering
   Development Libraries
   Development Tools
   Emacs
   Engineering and Scientific
   FreeNX and NX
   GNOME Software Development
   Horde
   Java Development
   KDE (K Desktop Environment)
   KDE Software Development
   KVM
   Legacy Software Development
   Legacy Software Support
   Mono
   OpenFabrics Enterprise Distribution
   PostgreSQL Database
   Ruby
   Tomboy
   Virtualization
   X Software Development
   XFCE-4.4
Done

2. 그룹 설치하기
yum groupinstall -y "Cluster Storage" "Clustering"
위의 명령은 Cluster Storage 그룹과 Clustering 그룹을 설치 여부 질문 없이 설치하도록 한다.

2.1 또 다른 방법
# yum install @cluster-storage @clustering
위 명령은 동일한 명령을 수행한다.