个人工具

UbuntuHelp:MythTV/Install/WhatNext/VNC

来自Ubuntu中文

Wikibot讨论 | 贡献2007年11月30日 (五) 20:44的版本

跳转至: 导航, 搜索

VNC

A very convenient method of remote administration of a Frontend is to install a VNC server. Credit to Mark Chang for the original information for this from the mythtv mailing list. 1) Install vnc server package

sudo apt-get install vnc4server

2) Modify /etc/X11/xorg.conf

sudo nano /etc/X11/xorg.conf

In the "Module" section, add:

Load "vnc"

In your "Screen" section add:

Option "SecurityTypes" "VncAuth"
Option "UserPasswdVerifier" "VncAuth"
Option "PasswordFile" "/root/.vnc/passwd"

3) Create a VNC password

sudo -H vncpasswd

4) Restart GDM

sudo /etc/init.d/gdm restart