Operating System/Linux2010. 1. 11. 21:20

X-Window가 설치되지 않은 Linux 서버에서 X-Window를 사용해야 할 경우(Oracle 설치 등)

yum 명령어를 이용하여 X-Window를 설치하는 방법입니다.

가장 먼저 yum 명령어를 통해 설치된 그룹과 설치 가능한 그룹의 리스트를 확인합니다.

# yum grouplist

Installed Groups:
   Administration Tools
   Compatibility Arch Support
   Editors
   FTP Server
   Legacy Network Server
   Mail Server
   Server Configuration Tools
Available Groups:
   AptRPM
   Authoring and Publishing
   Compatibility Arch Development Support
   DNS Name Server
   Development Tools
   Engineering and Scientific
   GNOME Desktop Environment
   GNOME Software Development
   Games and Entertainment
   Graphical Internet
   Graphics
   Horde-Apps
   KDE (K Desktop Environment)
   KDE Software Development
   Legacy Software Development
   MySQL Database
   Network Servers
   News Server
   Office/Productivity
   PostgreSQL Database
   Printing Support
   Sound and Video
   System Tools
   Text-based Internet
   Web Server
   Windows File Server
   X Software Development
   X Window System
   XFCE-4.2
   drbd-heartbeat
Done


리스트를 확인했으면 yum 명령어를 통해서 "X Window System"을 설치합니다.

[X Window 설치]
# yum -y groupinstall "X Window System"

[KDE 설치]
# yum -y groupinstall "KDE(K Desktop Environment)"

[GNOME 설치]
# yum -y groupinstall "GNOME Desktop Environment"

[X-Window 한글 지원 설치]
# yum -y install "kde-i18n-Korean" "fonts-korean"


설치가 완료되었으면 X-Window를 시작해봅시다.

# init 5


시작시 바로 X-Window로 부팅을 하려면 아래와 같이 설정해 줍니다.

# vi /etc/inittab
id:3:initdefault:   ==>   id:5:initdefault:


Posted by Huikyun