티스토리 뷰

1. 우선 Gnome을 설치한다.

$ sudo apt-get install gnome-core

 

2. VNC 서버를 설치한다.

$ sudo apt-get install vnc4server

 

3. VNC 서버 정상 구동여부 확인 및 연관된 스크립트 파일 생성을 위해 VNC 서버를 구동한다.

$vncserver

 

4. 확인 후 VNC 서버를 내린다.

$vncserver -kill :1

 

5. VNC 설정 파일을 수정한다.

$ cd ~

$ vi .vnc/xstartup

 

#!/bin/sh
# Uncomment the following two lines for normal desktop:
unset SESSION_MANAGER    -->주석 제거
#exec /etc/X11/xinit/xinitrc
gnome-session --session=gnome-classic &  --> 내용 추가

[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic &
#x-terminal-emulator -geometry 1280x1024+10+10 -ls -title "$VNCDESKTOP Desktop" &  --> 주석 처리
#x-window-manager &  -->주석 처리
 

 

6. VNC 서버를 구동한다.

$vncserver -geometry 1024x768

 

 

cf. 해외 사이트에 있는 VNC 설정

http://rbgeek.wordpress.com/2012/06/25/how-to-install-vnc-server-on-ubuntu-server-12-04/

 

How to install VNC server on Ubuntu Server.docx

댓글