From f73f54e08ebfe02e9155015726e96400e90f356f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CWeiguang?= Date: Fri, 6 Dec 2024 11:45:49 +0100 Subject: [PATCH] solving problems to install wemeet in linux ubuntu 22.04 --- _posts/2024-12-06-wemeet-linux.md | 34 +++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 _posts/2024-12-06-wemeet-linux.md diff --git a/_posts/2024-12-06-wemeet-linux.md b/_posts/2024-12-06-wemeet-linux.md new file mode 100644 index 000000000000..1bb5f00fada7 --- /dev/null +++ b/_posts/2024-12-06-wemeet-linux.md @@ -0,0 +1,34 @@ +--- +layout: post +title: Problems with wemeet in Linux +gh-username: weiguangcui +gh-repo: weiguangcui/weiguangcui.github.io +gh-badge: [star, fork, follow] +tags: [wemeet, Linux] +comments: false +comments_id: 7 +--- + +After install wemeet in Linux, Ubuntu 24.04 especially, I met some problems: + +"检测到窗口系统采用wayland协议,腾讯会议暂不兼容,程序即将退出!" + +For this problem, you need to set these environment variables in `/opt/wemeet/wemeetapp.sh`: +``` +export XDG_SESSION_TYPE=x11 +export EGL_PLATFORM=x11 +export QT_QPA_PLATFORM=xcb +unset WAYLAND_DISPLAY +unset WAYLAND_DISPLAYCOPY +``` +before this line: +``` +if [ "$XDG_SESSION_TYPE" = "wayland" ];then +``` +No need to do other things. + +Alternativly you can not use the `wayland` environment by editing this file: `/etc/gdm3/custom.conf` like this: +``` +WaylandEnable=false +``` +This may cause some other problems of the system which requires `wayland` environment.