Skip to content

Commit

Permalink
solving problems to install wemeet in linux ubuntu 22.04
Browse files Browse the repository at this point in the history
  • Loading branch information
weiguangcui committed Dec 6, 2024
1 parent c0e6594 commit f73f54e
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions _posts/2024-12-06-wemeet-linux.md
Original file line number Diff line number Diff line change
@@ -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.

0 comments on commit f73f54e

Please sign in to comment.