新しいORCA FAQ
« 診療行為確認画面でホイールマウス真ん中を無効にしたい | メイン | 画面表示用フリーコメントが入力できない »
RealVNCの設定方法は(Ubuntu10.04)
Q
RealVNCの設定方法は(Ubuntu10.04)
A
sudo aptitude install vnc4server xinetd
sudo vi /etc/xinetd.d/Xvnc
--------------
service xvnc
{
type = UNLISTED
disable = no
socket_type = stream
wait = no
user = nobody
group = tty
server = /usr/bin/Xvnc
server_args = -inetd :1 -geometry 1024x768 -depth 24 -desktop hat1 -query localhost -once -PasswordFile=/etc/passwd_vnc
port = 5900
}
--------------
sudo vncpasswd /etc/passwd_vnc
sudo chown nobody.tty /etc/passwd_vnc
sudo vi /etc/gdm/custom.conf
--------------
[xdmcp]
Enable=true
DisplaysPerHost=2
--------------
sudo /etc/init.d/xinetd restart
sudo /etc/init.d/gdm restart
投稿者 hasegawa : 2012年07月23日 18:45