File tree Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ layout : post
3
+ title : Problems with wemeet in Linux
4
+ gh-username : weiguangcui
5
+ gh-repo : weiguangcui/weiguangcui.github.io
6
+ gh-badge : [star, fork, follow]
7
+ tags : [wemeet, Linux]
8
+ comments : false
9
+ comments_id : 7
10
+ ---
11
+
12
+ After install wemeet in Linux, Ubuntu 24.04 especially, I met some problems:
13
+
14
+ "检测到窗口系统采用wayland协议,腾讯会议暂不兼容,程序即将退出!"
15
+
16
+ For this problem, you need to set these environment variables in ` /opt/wemeet/wemeetapp.sh ` :
17
+ ```
18
+ export XDG_SESSION_TYPE=x11
19
+ export EGL_PLATFORM=x11
20
+ export QT_QPA_PLATFORM=xcb
21
+ unset WAYLAND_DISPLAY
22
+ unset WAYLAND_DISPLAYCOPY
23
+ ```
24
+ before this line:
25
+ ```
26
+ if [ "$XDG_SESSION_TYPE" = "wayland" ];then
27
+ ```
28
+ No need to do other things.
29
+
30
+ Alternativly you can not use the ` wayland ` environment by editing this file: ` /etc/gdm3/custom.conf ` like this:
31
+ ```
32
+ WaylandEnable=false
33
+ ```
34
+ This may cause some other problems of the system which requires ` wayland ` environment.
You can’t perform that action at this time.
0 commit comments