Package Details: zoom 6.6.11-1

Git Clone URL: https://aur.archlinux.org/zoom.git (read-only, click to copy)
Package Base: zoom
Description: Video Conferencing and Web Conferencing Service
Upstream URL: https://zoom.us/
Keywords: call conference meeting video
Licenses: LicenseRef-zoom
Replaces: zoom-libs, zoom-libs-bin
Submitter: edh
Maintainer: edh (gromit)
Last Packager: gromit
Votes: 709
Popularity: 8.25
First Submitted: 2015-08-15 13:18 (UTC)
Last Updated: 2025-12-01 18:34 (UTC)

Pinned Comments

erbrecht commented on 2024-11-19 13:06 (UTC)

@Rhinoceros - I finally got screen sharing to work under KDE with Wayland. Looks like I'm using the same versions as you:

  • Zoom 6.2.10
  • pipewire 1.2.6

I followed the Screen share section on the Zoom wiki page:

https://wiki.archlinux.org/title/Zoom_Meetings

The only thing I didn't need to do was set XDG_CURRENT_DESKTOP=gnome. I followed the other steps, and now I can choose my desktop/window to share. Prior to following the wiki I couldn't stop screen sharing without the hanging issue, which I was experiencing prior to 6.2.10.

edh commented on 2016-08-26 11:03 (UTC) (edited on 2017-03-09 10:48 (UTC) by edh)

I contacted the zoom support on 13th July 2016 and tried to lure them into creating a proper PKGBUILD respectively adopting this one, considering they are providing a package over very none standard ways to the Arch Linux community (downloading via a *foreign* site) and not through the official repo or the AUR. However there was little to no progress so far.

Latest Comments

1 2 3 4 5 6 .. 90 Next › Last »

edh commented on 2025-11-10 00:36 (UTC)

@YonatanB Added dependency. Thanks.

YonatanB commented on 2025-11-09 22:43 (UTC)

@edh It seems like there's a missing dependency on xcb-util-wm now after moving the qt5 dependencies to optdepends.

iyanmv commented on 2025-11-09 22:13 (UTC)

edh: Thanks for removing the dependency on qt5-webengine. However, I think you should have increased pkgrel.

edh commented on 2025-11-08 17:09 (UTC) (edited on 2025-11-09 21:14 (UTC) by edh)

@post-factum,@oech3 Thank you for the ping! I think all of qt is bundled with the package. I'll move both to optdepends just in case people are running into issues without it.

EDIT: the package no longer depends on qt5-webengine but I didn’t increase the pkgrel to avoid a needless update for most users.

oech3 commented on 2025-11-06 09:38 (UTC) (edited on 2025-11-06 09:38 (UTC) by oech3)

https://aur.archlinux.org/packages/zoom?all_deps=1#comment-1046545

webengine is bundled, safe to remove (or move to optdeps).

post-factum commented on 2025-11-06 09:26 (UTC)

JFYI, qt5-webengine is going to be dropped from Arch repos: https://lists.archlinux.org/archives/list/arch-dev-public@lists.archlinux.org/thread/U45C4RAW4IXVLO376XGFNLEGGFFXCULV/

Rhinoceros commented on 2025-11-04 05:18 (UTC)

@djshiye I finally got screen sharing working in KDE/Wayland with this zoom package.

I had previously read the wiki, but can't remember which bits I changed. The final part that fixed it for me was running systemctl --user restart plasma-xdg-desktop-portal-kde.service. Although my other Arch system didn't require this.

You can also test if screen sharing is working generally in Wayland/etc. at https://mozilla.github.io/webrtc-landing/gum_test.html

djshiye commented on 2025-11-03 19:33 (UTC) (edited on 2025-11-03 20:37 (UTC) by djshiye)

Screen sharing still seems to be broken on Zoom and also Slack for me. I tried the pinned approach and it didn't work..

edit: using the flatpak version with flatseal, and disabling wayland works!!!

koutheir commented on 2025-10-20 16:27 (UTC)

@joeyeamigh, I tried your patch, but it didn't work.

I also noticed that the initially-started zoom process starts another zoom child process, which has the environment variable LD_LIBRARY_PATH set to /opt/zoom/Qt/lib:/opt/zoom/cef:/opt/zoom. This should remove the need to reconfigure the dynamic linker, which is what your patch does.

joeyeamigh commented on 2025-10-20 15:25 (UTC)

I noticed that ZoomWebviewHost wasn't able to find libcef.so or libffmpeg.so. Adding this patch seemed to fix it:

diff --git a/PKGBUILD b/PKGBUILD
index 4105ab4..7cf284c 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -24,4 +24,23 @@ sha512sums=('5c9e9b9dd5a7c42274364d5055230bb8e438db6b1b0eeae0f7025e3e235811090d0

 package() {
    cp -dpr --no-preserve=ownership opt usr "${pkgdir}"
+
+   # Configure dynamic linker to find Zoom's bundled libraries
+   install -Dm644 /dev/stdin "${pkgdir}/etc/ld.so.conf.d/zoom.conf" << EOF
+/opt/zoom/cef
+EOF
 }
+
+
+post_install() {
+   ldconfig
+}
+
+post_upgrade() {
+   ldconfig
+}
+
+post_remove() {
+   ldconfig
+}
+

Would including it be useful?