20241227解决使用向日葵远程工具连接ubuntu20.04.5出现黑屏的问题

server/2025/1/1 20:41:38/

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


http://www.ppmy.cn/server/154337.html

相关文章

Blender真实灰尘粒子动画资产预设 Dust Particles Pro V1.2

Dust Particles Pro V1.2 是一款为Blender 3.5.1及更高版本设计的实时程序化粒子资产,由Geometry Nodes提供支持。这款资产不需要安装,因为它不是一个Python插件。如果你对Blender的Geometry Nodes还不熟悉,那么这款资产将为你带来惊喜&#…

游戏引擎学习第60天

总结并规划今天的内容 计划继续完善一些功能。系统已经启动,目前的状态显示程序正在正常运行,但部分功能还存在需要改进的地方。 当前的实现包括: familiar功能: 现在有一个“小familiar”会跟随我们,但它的行为逻辑还…

【Go】Go数据类型详解—map

1. 前言 本篇博客将会介绍Go语言当中的另一大核心数据类型——map(映射),当然在介绍这个数据类型之前我们还是要思考引入这个数据类型的原因: ❓ 需求:要求完成对一个班级所有同学的信息管理(包括但不限于…

#E. NH.2023.小甲.05.文本框

题目描述 小慧把她学会的英文单词记录了下来,现在她希望在一个文本框里完全显示出她记录的单词库。已知这个文本框最多只能显示 MM 行,小慧的单词库有 NN 个单词,要求按原次序显示所有单词,每个单词至少要用一个空格分开&#xf…

【Linux编程】一个基于 C++ 的 TCP 客户端异步(epoll)框架(一))

TcpClient 类的设计与实现:一个基于 C 的 TCP 客户端框架 在现代网络编程中,TCP(传输控制协议)客户端是实现网络通信的基础组件之一。本文将详细介绍一个基于 C 的 TcpClient 类的设计与实现,该类提供了创建 TCP 连接…

NetLimiter使用教程,并掌握其基本的网络管理和流量控制能力

NetLimiter的初级使用教程大纲,可以帮助用户快速了解和上手这个网络管理工具: 安装和配置 下载和安装NetLimiter启动NetLimiter,进行基本配置 界面介绍 熟悉NetLimiter的用户界面主要功能区域的介绍和作用 限制应用程序的网络访问 如何设置应…

Pion WebRTC 项目教程

Pion WebRTC 项目教程 webrtc Pure Go implementation of the WebRTC API [这里是图片001] 项目地址: https://gitcode.com/gh_mirrors/we/webrtc 1. 项目目录结构及介绍 Pion WebRTC 项目的目录结构如下: pion/webrtc ├── api ├── examples ├── inter…

Python 中的 Counter、itertools 和 zip 等函数简介

Python 中的 Conter、itertools 和 zip 等函数简介 Python 中的 Counter、itertools 和 zip 等函数简介Counter 模块zip 函数itertools 模块countcyclerepeataccumulatechaincompressgroupbytee Python 中的 Counter、itertools 和 zip 等函数简介 对于数据处理任务&#xff0…