20241227解决使用向日葵远程工具连接ubuntu20.04.5出现黑屏的问题
2024/12/27 14:40
参考资料:
百度:先日葵
https://sunlogin.oray.com/
贝锐向日葵
百度:向日葵 连接 ubuntu22.04.5 黑屏
https://blog.csdn.net/catssi/article/details/139244184
ubuntu 22.04向日葵远控黑屏问题处理
向日葵适配x11,但是现在ubuntu初始模式是wayland的,所以需要修改后就能正常使用
1.vim /etc/gdm3/custom.conf
2./命令搜索#WaylandEnable=false
3.进入编辑模式去掉#WaylandEnable=false的#号
4.esc推出编辑模式,:wq保存并退出
5.sudo reboot命令重启
随后再远程向日葵就不会黑屏了
https://blog.csdn.net/qq_41092105/article/details/132824696
使用todesk或者向日葵远程Ubuntu22.04系统的客户机黑屏
https://baijiahao.baidu.com/s?id=1808595070569992435&wfr=spider&for=pc
解决工控机Ubuntu 22.04系统远程控制黑屏问题
root@rootroot-ThinkBook-16-G5-IRH:/home/rootroot#
root@rootroot-ThinkBook-16-G5-IRH:/home/rootroot# echo $XDG_SESSION_TYPE
tty
root@rootroot-ThinkBook-16-G5-IRH:/home/rootroot#
# GDM configuration storage
#
# See /usr/share/gdm/gdm.schemas for a list of available options.
[daemon]
AutomaticLoginEnable=true
AutomaticLogin=rootroot
# Uncomment the line below to force the login screen to use Xorg
#WaylandEnable=false
# Enabling automatic login
# Enabling timed login
# TimedLoginEnable = true
# TimedLogin = user1
# TimedLoginDelay = 10
[security]
[xdmcp]
[chooser]
[debug]
# Uncomment the line below to turn on debugging
# More verbose logs
# Additionally lets the X server dump core if it crashes
#Enable=true
修改成为:
# GDM configuration storage
#
# See /usr/share/gdm/gdm.schemas for a list of available options.
[daemon]
AutomaticLoginEnable=true
AutomaticLogin=rootroot
# Uncomment the line below to force the login screen to use Xorg
WaylandEnable=false
# Enabling automatic login
# Enabling timed login
# TimedLoginEnable = true
# TimedLogin = user1
# TimedLoginDelay = 10
[security]
[xdmcp]
[chooser]
[debug]
# Uncomment the line below to turn on debugging
# More verbose logs
# Additionally lets the X server dump core if it crashes
#Enable=true