个人工具

“UbuntuHelp:MythTV/Install/WhatNext/VNC”的版本间的差异

来自Ubuntu中文

跳转至: 导航, 搜索
(新页面: {{From|https://help.ubuntu.com/community/MythTV/Install/WhatNext/VNC}} {{Languages|UbuntuHelp:MythTV/Install/WhatNext/VNC}} ==== VNC ==== A very convenient method of remote administration...)
 
第3行: 第3行:
 
==== VNC ====
 
==== 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.
 
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
 
1) Install vnc server package
 
<pre><nowiki>
 
<pre><nowiki>
 
sudo apt-get install vnc4server
 
sudo apt-get install vnc4server
 
</nowiki></pre>
 
</nowiki></pre>
 
 
2) Modify /etc/X11/xorg.conf
 
2) Modify /etc/X11/xorg.conf
 
<pre><nowiki>
 
<pre><nowiki>
第17行: 第15行:
 
Load "vnc"
 
Load "vnc"
 
</nowiki></pre>
 
</nowiki></pre>
 
 
In your "Screen" section add:
 
In your "Screen" section add:
 
<pre><nowiki>
 
<pre><nowiki>
第28行: 第25行:
 
sudo -H vncpasswd
 
sudo -H vncpasswd
 
</nowiki></pre>
 
</nowiki></pre>
 
 
4) Restart GDM
 
4) Restart GDM
 
<pre><nowiki>
 
<pre><nowiki>

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