Skip to content

Commit f73f54e

Browse files
committed
solving problems to install wemeet in linux ubuntu 22.04
1 parent c0e6594 commit f73f54e

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

_posts/2024-12-06-wemeet-linux.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
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.

0 commit comments

Comments
 (0)