(已关闭)在 ubuntu 18.04 上配置并使用 Xdmcp 和 gdm3

(已关闭)在 ubuntu 18.04 上配置并使用 Xdmcp 和 gdm3

在全新安装的 ubuntu 18.04 上,我尝试激活并使用 gdm3 xdmcp 服务器。

以下是我遵循的步骤:

  • 安装

我采用了正常安装。

已勾选“安装期间下载更新”

未选中“为 Gfx/Wifi/... 安装第三方”。

  • Xdmcp 服务器

1. 编辑 /etc/hosts.allow 进行设置(参见Gnome 文档。)。

ALL: ALL #Wide opened to be sure the problem isn't here

2 . 编辑 /etc/gdm3/custom.conf 来设置:

[security] DisallowTCP=false [xdmcp] Enable=true

3. 重启 gdm

sudo /etc/init.d/gdm3 restart

  • Xdmcp 客户端

sudo apt install xnest Xnest -query localhost -geometry 1024x768 :1

不幸的是,我只看到黑屏和常规白色闪光。

我哪里做错了?

感谢您的帮助。

克里斯托夫·C.

答案1

万一其他人发现这个问题并且在让 XDMCP 与 gdm3 一起工作时遇到问题,我设法通过将 gdm3 设置为使用 xorg 而不是 wayland 来使其工作。

/etc/gdm3/custom.conf

[daemon]
# Uncoment the line below to force the login screen to use Xorg
WaylandEnable=false

答案2

抱歉,在我提出第一个问题几个月后才发布此帖,但我更想确认我的结果。

他们来了:

可行的解决方案或解决方法

  • 使用 lightdm 和 LxQT 访问 Debian 10.3 xdmcp

     /usr/share/lightdm/lightdm.conf.d/50-remote-session.conf
    
     [SeatDefaults]
     xserver-allow-tcp=true
     [XDMCPServer]
     enabled=true
    
  • 使用 LxQT 访问 Ubuntu 20.4 x2go

不起作用的解决方案

  • Ubuntu 20.4 使用 gdm3 和 LxQT 进行 xdmcp 访问

     I did many tries (including the Pathin tip about wayland) under
     18.4 and now... 20.4.
    
  • Ubuntu 20.4 使用 lightdm 和 LxQT 进行 xdmcp 访问

     I unsuccessfully tried the "lightdm.conf.d/50-remote-session.conf"
     change validated under debian.
    

由于我在使用 xdmcp 时遇到的问题,我现在使用不同的替代方案进行远程连接。

我希望我的测试能够帮助到某些人。

相关内容