Linux

CentOS 5.x VNC 서버 설치하기

스마트큐브 2012. 5. 6. 16:42

가끔 CentOS 를 내가 아닌 다른 사람 ( IDC 직원 or Cafe24 등) 설치하게 되면 종종 VNC Server 가 접속이 안되서

당황 하게 된다.

이렇때 대처 방안이 인터넷에 친철하게 나와서 까먹지 않도록 적어둔다.

vnc server 설치 방법

1. vnc server 설치 및 관련 패키지 설치
# yum install vnc
# yum install vnc-server

2. GNOME 설치
#yum groupinstall "GNOME Desktop Environment"

3. vnc server 재시작
# service vncserver restart

vnc 설정

1. vnc 설정 파일
# vi /etc/sysconfig/vncservers

~중략~ 
VNCSERVERS="1:root"
VNCSERVERARGS[2]="-geometry 800x600"
~중략~

2. vnc 화면 설정

# vi /root/.vnc/xstartup

#!/bin/sh

# Uncomment the following two lines for normal desktop:
# unset SESSION_MANAGER
# exec /etc/X11/xinit/xinitrc

[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic &
xterm -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
#twm &
gnome-session &

/bin/bash &

3. /etc/inittab 에서 런레벨을 5로 수정한후 재부팅
id:5:initdefault:

 

인터넷 발췌 원본 자료 :

vncserver 설정하기.txt