Install Tiger VNC on Ubuntu 본문

Programming

Install Tiger VNC on Ubuntu

halatha 2011. 7. 23. 03:47
http://www.linuxserver.org/linux/fedora/installation-of-tigervnc-server/
http://vnc.devloop.org.uk/
http://www.tech-recipes.com/rx/2768/ubuntu_what_version_am_i_running/
http://winswitch.org/downloads/debian-repository.html?dist_select=lucid

1. install
$ sudo su
# wget -O - http://winswitch.org/gpg.asc | apt-key add -
# echo "deb http://winswitch.org/ lucid main" > /etc/apt/sources.list.d/winswitch.list;
# apt-get update;
# apt-get install tigervnc-server tigervnc-viewer

2. setup
# gedit /etc/X11/xorg.conf
Section “Screen”
.
.
.
Option “SecurityTypes” “VncAuth”
Option “UserPasswdVerifier” “VncAuth”
Option “PasswordFile” “/root/.vnc/passwd”
EndSection

Section “Module” Load “vnc” EndSection


# vncpasswd

Password: (Enter your chosen password for VNC here – 8 characters max)
To  Verify use :

# vncserver



Comments