个人工具

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

来自Ubuntu中文

跳转至: 导航, 搜索
 
第1行: 第1行:
 
{{From|https://help.ubuntu.com/community/MythTV/Install/WhatNext/VNC}}
 
{{From|https://help.ubuntu.com/community/MythTV/Install/WhatNext/VNC}}
 
{{Languages|UbuntuHelp:MythTV/Install/WhatNext/VNC}}
 
{{Languages|UbuntuHelp:MythTV/Install/WhatNext/VNC}}
 +
Parent: [[UbuntuHelp:MythTV/]] | [[UbuntuHelp:MythTV/Install/WhatNext/VNC/PageDiscussion|Discuss this page]]
 
==== 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.
+
One way to administer a frontend is to install a [[UbuntuHelp:VNC|VNC server]], although it's often easier to use [[UbuntuHelp:MythWeb|MythWeb]].
1) Install vnc server package
+
----
<pre><nowiki>
+
* [[UbuntuHelp:MythTV/Install/WhatNext/VNC/PageDiscussion|Discuss this page]]
sudo apt-get install vnc4server
+
* '''Categories:''' [[category:CategoryMythTV]]
</nowiki></pre>
+
2) Modify /etc/X11/xorg.conf
+
<pre><nowiki>
+
sudo nano /etc/X11/xorg.conf
+
</nowiki></pre>
+
In the "Module" section, add:
+
<pre><nowiki>
+
Load "vnc"
+
</nowiki></pre>
+
In your "Screen" section add:
+
<pre><nowiki>
+
Option "SecurityTypes" "VncAuth"
+
Option "UserPasswdVerifier" "VncAuth"
+
Option "PasswordFile" "/root/.vnc/passwd"
+
</nowiki></pre>
+
3) Create a VNC password
+
<pre><nowiki>
+
sudo -H vncpasswd
+
</nowiki></pre>
+
4) Restart GDM
+
<pre><nowiki>
+
sudo /etc/init.d/gdm restart
+
</nowiki></pre>
+
  
 
[[category:UbuntuHelp]]
 
[[category:UbuntuHelp]]

2009年5月14日 (四) 17:03的最新版本

Parent: UbuntuHelp:MythTV/ | Discuss this page

VNC

One way to administer a frontend is to install a VNC server, although it's often easier to use MythWeb.