Skip to main content

Run Tencent Meeting on Ubuntu 22.04

PostsLinuxTencent MeetingUbuntuUbuntu 22.04About 1 minAbout 331 words

Environment

NameValue
OSUbuntu 22.04 LTS
Tencent Meeting3.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.

Login to Ubuntu 22.04 using Wayland display server
Login to Ubuntu 22.04 using Wayland display server

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 terminalopen in new window and use nano or your favorite text editor to open this file with root permissionsopen in new window.

$ 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
Editing the Wayland settings inside the GDM3 configuration file
Editing the Wayland settings inside the GDM3 configuration file

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

Reference


  1. How to enable/disable wayland on Ubuntu 22.04 Desktop - Linux Tutorials - Learn Linux Configurationopen in new window ↩︎