tsclient支持xdmcp和vnc

Ubuntu 10.10默认情况下,tsclient(terminal server client)不支持vnc和xdmcp协议,必须手动安装。

安装xdmcp支持:

    sudo apt-get install xnest

安装vnc支持:

    sudo apt-get install xtightvncviewer

 

另外转载一片文章,关于xdmcp远程桌面配置的(http://hi.baidu.com/optical/blog/item/d5570d4fe84f1334afc3ab92.html)

 


      Here's how to enable xdmcp in the terminal server client (tsclient/rdesktop) for Ubuntu (tested under dapper). By default the terminal server client program has xdmcp disabled. To fix this just install xnest:
# apt-get install xnest

Alternatively, if you are looking to enable xdmcp in ubuntu:

1. Go to System -> Administration -> Login window (or run gdmsetup).
      2. Under the Remote tab change Style to same as local. The different choices just change what login screen the user sees.
3. You will need to restart GDM which will kill your X session.
# kill -HUP `cat /var/run/gdm.pid`

Or if you prefer to edit the files by hand:

1. Edit /etc/gdm/gdm.conf (make sure there is no overriding settings in gdm.conf-custom)
2. Uncomment RemoteGreeter in the daemon section.
3. Under the xdmcp section, change Enable to true.
4. Do step 3 above to restart gdm.

Unfortunately we cannot use gdmflexiserver to update the gdm process, we must restart gdm.

 

你可能感兴趣的:(tsclient支持xdmcp和vnc)