尝试使用 sesman-x11rdp 时出现 XRDP 错误

尝试使用 sesman-x11rdp 时出现 XRDP 错误

我刚刚在我的旧笔记本电脑上安装了 Ubuntu 11.10 Desktop,我想设置它以便我可以从我的 Windows 桌面远程访问它。我已经安装了 XRDP,但当我尝试使用 sesman-x11rdp 登录时,它会登录,然后窗口关闭。

我检查了日志,以下是我登录时得到的信息:

[20120123-16:49:23] [INFO ] scp thread on sck 8 started successfully
[20120123-16:49:23] [INFO ] granted TS access to user nicholas
[20120123-16:49:24] [INFO ] starting X11rdp session...
[20120123-16:49:24] [CORE ] error starting X server - user nicholas - pid 3869
[20120123-16:49:24] [DEBUG] errno: 2, description: No such file or directory
[20120123-16:49:24] [DEBUG] execve parameter list: 11
[20120123-16:49:24] [DEBUG]         argv[0] = X11rdp
[20120123-16:49:24] [DEBUG]         argv[1] = :11
[20120123-16:49:24] [DEBUG]         argv[2] = -geometry
[20120123-16:49:24] [DEBUG]         argv[3] = 1280x720
[20120123-16:49:24] [DEBUG]         argv[4] = -depth
[20120123-16:49:24] [DEBUG]         argv[5] = 16
[20120123-16:49:24] [DEBUG]         argv[6] = -bs
[20120123-16:49:24] [DEBUG]         argv[7] = -ac
[20120123-16:49:24] [DEBUG]         argv[8] = -nolisten
[20120123-16:49:24] [DEBUG]         argv[9] = tcp
[20120123-16:49:25] [DEBUG]         argv[10] = (null)
[20120123-16:49:34] [ERROR] X server for display 11 startup timeout
[20120123-16:49:34] [ERROR] X server for display 11 startup timeout
[20120123-16:49:34] [INFO ] starting xrdp-sessvc - xpid=3869 - wmpid=3868
[20120123-16:49:34] [ERROR] another Xserver is already active on display 11
[20120123-16:49:34] [DEBUG] aborting connection...
[20120123-16:49:34] [INFO ] session 3867 - user nicholas - terminated

有人能告诉我使用 x11rdp 的正确方法吗?

答案1

选项 /etc/xrdp/xrdp.ini:

[globals]
bitmap_cache=yes
bitmap_compression=yes
port=3389
crypt_level=low
channel_code=1
max_bpp=16
#black=000000
grey=d6d3ce
#dark_grey=808080
#blue=08246b
#dark_blue=08246b
#white=ffffff
#red=ff0000
#green=00ff00
#background=626c72

[xrdp1]
name=RDP
lib=libxup.so
username=ask
password=ask
ip=127.0.0.1
port=-1
xserverbpp=16

[xrdp2]
name=VNC
lib=libvnc.so
username=ask
password=ask
ip=127.0.0.1
port=-1

也许这会对你有所帮助。第 7 行,bpp(每像素位数)必须是 16,带有模块 libxup.so 的部分也是如此。客户端必须使用每像素 16 位的选项连接到 XRDP 服务器。

抱歉我的英语不好。

答案2

xrdp 和 X11rdp 服务器并不相同。xrdp 仅提供连接,但不提供屏幕内容。它们是两个独立的程序。因此,您可以轻松安装 xrdp 以及 VNC 服务器sudo apt-get install vnc-common vnc4server以运行 sesman-Xvnc。或者,您可以使用本教程手动安装 X11rdp 服务器(然后您还需要手动安装最新的 xrdp):

http://scarygliders.net/2011/11/17/x11rdp-ubuntu-11-10-gnome-3-xrdp-customization-new-hotness/

答案3

我在 RHEL 6 中遇到了同样的错误:[错误] 另一个 Xserver 已在显示屏上处于活动状态……。

我能够通过安装 gnome 软件包来使 xrdp 工作。我没有 gnome 软件包的初始列表。其他 Linux 发行版上的软件包名称可能不同。添加这些后 xrdp 就可以工作了:

添加的软件包:

gnome-desktop
gnome-session-xsession
gnome-applets
gnome-menus

(注意 - 许多其他软件包是作为依赖项安装的。很可能是其中一个依赖项的安装实际上修复了这个问题。)

我安装的 gnome 软件包的最终列表如下:

gnome-applets
gnome-desktop
gnome-doc-utils-stylesheets
gnome-icon-theme
gnome-keyring
gnome-menus.
gnome-panel
gnome-panel-libs
gnome-python2
gnome-python2-applet
gnome-python2-bonobo
gnome-python2-canvas
gnome-python2-desktop
gnome-python2-extras
gnome-python2-gnome
gnome-python2-gnomevfs
gnome-python2-libegg
gnome-session
gnome-session-xsession
gnome-settings-daemon
gnome-terminal
gnome-themes
gnome-user-docs
gnome-vfs2

我找不到 xrdp 错误消息与此修复之间的任何关系。我猜测错误消息实际上可能是对真实错误的错误陈述。这就是我尝试安装其他 gnome 软件包的原因。希望这能帮助其他人解决这个问题。

相关内容