Run Tencent Meeting on Ubuntu 22.04
About 1 minAbout 331 words
Environment
Name | Value |
---|---|
OS | Ubuntu 22.04 LTS |
Tencent Meeting | 3.9.0.1 2022-07-20 |
Problem
检测到窗口系统采用wayland协议,腾讯会议暂不兼容,程序即将退出!
Solution
Login with Ubuntu on Xorg
To login to Ubuntu 22.04 using Xorg click on the gear button and select Ubuntu on Xorg
option before you login.
Disable Wayland[1]
Step 1
The default display manager for the GNOME desktop environment is GDM3. Therefore, we will edit the /etc/gdm3/custom.conf
file to either disable or enable Wayland. Open a command line terminal and use nano or your favorite text editor to open this file with root permissions.
$ sudo vim /etc/gdm3/custom.conf
Step 2
Within this file, look for the line that says #WaylandEnable=false
. You can uncomment this line and either set it to true or false, depending on whether you want Wayland enabled or not.
Enable Wayland
WaylandEnable=true
Disable Wayland
WaylandEnable=false
Step 3
After you have made the desired changes, save this file and exit it. You will need to restart GDM3 or reboot your Ubuntu 22.04 desktop for the changes to take effect.
$ sudo systemctl restart gdm3