출처 : https://www.centos.org/forums/viewtopic.php?f=47&t=47088
http://blog.nowherelan.com/2013/12/24/install-a-desktop-environment-on-centos-minimal-install/
나의 경우는 CentOS 7 Minimal virsion 이다.
(아래에 CentOS 6 방법도 적었다.)
Minimal server 를 운영 중, GUI 환경의 같은 네트워크 상에 있는 브라우저에서 GUI 셋팅을 진행할 수도 있지만
가끔은 server 자체에서 GUI 환경으로 설정을 진행해야 할 때가 있다.
1. 패키지 설치
# yum groupinstall "X Window System"
# yum install gnome-classic-session gnome-terminal nautilus-open-terminal control-center liberation-mono-fonts
평소에는 CUI 환경으로 사용하다가 필요 시 그래픽환경으로 접속하려면 CUI 환경에서 아래 명령어를 치면 GUI 로 접속된다.
# init 5
이런 경우 GUI 로의 부팅 설정은 따로 필요 없다.
2. GUI 로의 부팅 설정
CentOS 7 부터는 init 을 이용한 부팅이 아니다. 따라서 부팅 설정 방법도 바뀌었다. 아래 파일을 열어보면 방법이 나와있다.
# vi /etc/inittab
아래 디렉터리 안에 있는, 내가 원하는 부팅 방법을 심볼릭 링크로 만들어주면 된다.
# ll /lib/systemd/system/
# ln -sf /lib/systemd/system/graphical.target /etc/systemd/system/default.target
(# ln -sf /lib/systemd/system/<target name>.target /etc/systemd/system/default.target 형식)
3. 재부팅
# reboot
[Tip] In Cent OS 6
1) 패키지 설치
# yum groupinstall -y "Desktop" "Desktop Platform" "X Window System" "Fonts"
2) GUI 실행
$ startx
or
$ /sbin/telinit 5
3) GUI 로의 부팅 설정
# vi /etc/inittab
id:3:initdefault: => id:5:initdefault:
'Linux > CentOS' 카테고리의 다른 글
CentOS 를 Windows의 Active Directory에 Join 시키기 (0) | 2015.04.09 |
---|---|
Samba server - Windows에서 리눅스 공유폴더 사용 (0) | 2015.04.09 |
CentOS 7 시간설정 및 Time Zone 변경 (0) | 2015.04.09 |
Tips of CentOS 7 (0) | 2015.04.09 |
CentOS 6.6 minimal 로 DHCP server 구축 (0) | 2015.04.09 |