VNC

# apt-get install vnc-server
でインストール

# vncserver
で起動
最初は接続用のパスワードを聞いてくるので入力すること

終了は
# vncserver -kill:(ウインドウ番号)

# vncserver -kill:1
って感じ

各ユーザの
./.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 80×24+10+10 -ls -title “$VNCDESKTOP Desktop” &
#twm

から

#!/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 80×24+10+10 -ls -title “$VNCDESKTOP Desktop” &
#twm &
export LANG XMODIFIERS=”@im=kinput2″
kinput2 -canna -cannaserver localhost &
exec gnome-session &

って感じに変更するとGNOMEとか動く

VNC
Tagged on: