화살표
기술가이드서비스 이용에 필요한 문서와 매뉴얼을 모아두었습니다.
번호 제목 등록일
37 [리눅스팁] yum 으로 패키지그룹단위로 관리하기
안녕하세요. 하나로호스팅입니다.

가끔 설치시에 그룹을 빠뜨리고 설치 한 후 패키지를 일일이 설치하려면 인내심이 필요하게 됩니다.

yum 을 이용하여 다시 그룹단위 설치를 하시면 됩니다.

1. 패키지그룹 검색

# yum grouplist
Setting up Group Process
Setting up Repos
base 100% |=========================| 1.1 kB 00:00
updates-released 100% |=========================| 951 B 00:00
Installed Groups:
Compatibility Arch Support
DNS Name Server
Editors
FTP Server
Graphics
Legacy Network Server
Mail Server
Network Servers
PostgreSQL Database
System Tools
Text-based Internet
Web Server
Available Groups:
Administration Tools
Authoring and Publishing
Compatibility Arch Development Support
Development Tools
Engineering and Scientific
GNOME Desktop Environment
GNOME Software Development
Games and Entertainment
Graphical Internet
KDE (K Desktop Environment)
KDE Software Development
Legacy Software Development
MySQL Database
News Server
Office/Productivity
Printing Support
Server Configuration Tools
Sound and Video
Windows File Server
X Software Development
X Window System
XFCE
XFCE Software Development
x86 Compatibility Arch Development Support
Done

2. 패키지 설치

예를 들어 Development Tools 패키지를 설치하려면

# yum groupinstall "Development Tools"

과 같이 하시면 됩니다.

3. 기타

groupupdate , groupremove 등의 옵션이 있습니다.

# yum -h

를 참고하세요.