Package Details: zoom 7.1.5-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: 745
Popularity: 10.78
First Submitted: 2015-08-15 13:18 (UTC)
Last Updated: 2026-07-21 11:47 (UTC)

Dependencies (33)

Required by (0)

Sources (1)

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 .. 92 Next › Last »

nursoda commented on 2026-08-17 16:40 (UTC)

checkrebuild (rebuild-detector) flags this package permanently. That has been reported before (zeroconf 2021-12-13, gesh 2024-12-23), but with the Qt6 builds the cause is a different one and worth recording, because it is no longer a missing library — it is a symbol version mismatch against the system Qt.

Several bundled Qt plugins link against Qt module libraries that the bundle does not ship (e.g. libQt6EglFSDeviceIntegration, libQt6QmlNetwork, libQt6LabsAnimation, libQt6QuickParticles). The loader therefore takes those from /usr/lib. Since the system Qt is normally newer than the bundled one, its module libraries require a Qt_6.x symbol version that the bundled libQt6Core does not define:

$ ldd /opt/zoom/Qt/plugins/platforms/libqeglfs.so
… /opt/zoom/Qt/lib/libQt6Core.so.6: version `Qt_6.<n>' not found (required by /usr/lib/libQt6EglFSDeviceIntegration.so.6)

To list the affected files and compare both sides:

for f in $(pacman -Qlq zoom | grep '\.so$'); do ldd "$f" 2>&1 | grep -q 'not found' && echo "$f"; done
readelf -V /opt/zoom/Qt/lib/libQt6Core.so.6 | grep -o 'Qt_6\.[0-9]*' | sort -uV | tail -1
readelf -V /usr/lib/libQt6Core.so.6         | grep -o 'Qt_6\.[0-9]*' | sort -uV | tail -1

Two groups are affected: the eglfs platform and integration plugins, and about a dozen QML/Quick plugins (labsanimation, labsmodels, particles, qmllocalstorage, qmlnetwork, qmlsettings, qmlwavefrontmesh, qmlxmllistmodel, qquickvectorimage, quickcontrolstestutils, sharedimage).

Worth noting: these plugins cannot load as shipped in either direction. If the system Qt module is absent, the library is simply missing; if it is present but newer, the symbol version fails. They only work by coincidence, when the system Qt happens to match the bundled one.

In everyday use on X11/Wayland this stays invisible, because the qxcb/qwayland plugins are loaded and the QML modules in question are not used. It does surface when the platform plugin is selected explicitly (QT_QPA_PLATFORM=eglfs), and it keeps checkrebuild pointing at zoom, which hides genuine rebuild candidates.

Suggestion for the PKGBUILD: drop the unusable plugins in package(), e.g.

rm -rf "$pkgdir"/opt/zoom/Qt/plugins/egldeviceintegrations \
       "$pkgdir"/opt/zoom/Qt/plugins/platforms/libqeglfs.so

plus the affected qml/** plugins. Behaviour stays the same, and the permanent checkrebuild noise goes away.

(Text generated with Claude Code (Opus 5) while doing system maintenance on my Laptop.)

quest commented on 2026-08-13 04:06 (UTC)

Flagged out of date incorrectly with no details.

This is the exact build available on their website.

cjm commented on 2026-06-23 15:50 (UTC)

I started having an issue where emojis in chat were basic black-and-white outlines, and some were very strange (the :+1: emoji was just 2 rectangles). Earlier versions of Zoom had full-color emojis.

Installing noto-fonts-emoji solved the problem. It seems like this package should have at least an optional dependency on emoji-font, as it seems like it no longer includes its own.

andreip commented on 2026-06-12 10:40 (UTC)

Thank you, @carlosalvatore! I had figured that out too. I even added fc-cache -f -v to execute at each startup to try to avoid the problem in the future. I've saved your commands in a script in case I may have use for them in the future.

carlosalvatore commented on 2026-06-11 23:02 (UTC) (edited on 2026-06-11 23:09 (UTC) by carlosalvatore)

I had the same problem. In my case, it was related to fontconfig caches. Try this:

  1. Clean the current caches

    $ rm -rf .cache/fontconfig
    $ sudo rm -rf /var/cache/fontconfig/*
    $ rm -rf .cache/zoom-fontconfig # If this exists
    
  2. Rebuild the fontconfig caches for the system and the current user

    $ sudo fc-cache -rsv
    $ fc-cache -rsv
    

After that, it worked fine.

Good luck.

andreip commented on 2026-05-27 02:55 (CST) Does it only crash for me on startup?

zoom was exited due to a handled signal: 11

usta commented on 2026-06-02 15:07 (UTC) (edited on 2026-06-02 15:08 (UTC) by usta)

@lou , @ galvez_65 @AndyM48 If your system still trying to build old versions probably it is related to caches on your box so follow :

sudo rm /var/cache/pacman/pkg/* -Rf
yay -Scc

Select y for each question

Then try again to install/build zoom

lou commented on 2026-06-02 11:29 (UTC)

This installs version 6.6 for me, not 7.05.

andreip commented on 2026-05-27 08:55 (UTC)

Does it only crash for me on startup?

zoom was exited due to a handled signal: 11

galvez_65 commented on 2026-05-21 13:45 (UTC)

Echoing @AndyM48 the PKGBUILD file still points to version 7.0.0

AndyM48 commented on 2026-05-20 06:25 (UTC)

Did you forget to upload the new package?

Downloading zoom-7.0.0.1666_orig_x86_64.pkg.tar.xz