Zoomtopia is here. Unlock the transformative power of generative AI, helping you connect, collaborate, and Work Happy with AI Companion.
Register nowEmpowering you to increase productivity, improve team effectiveness, and enhance skills.
Learn moreKeep your Zoom app up to date to access the latest features.
Download Center Download the Zoom appDownload hi-res images and animations to elevate your next Zoom meeting.
Browse Backgrounds Zoom Virtual BackgroundsEmpowering you to increase productivity, improve team effectiveness, and enhance skills.
Zoom AI CompanionUser groups are unique spaces where community members can collaborate, network, and exchange knowledge on similar interests and expertise.
Help & Resources is your place to discover helpful Zoom support resources, browse Zoom Community how-to documentation, and stay updated on community announcements.
The Events page is your destination for upcoming webinars, platform training sessions, targeted user events, and more. Stay updated on opportunities to enhance your skills and connect with fellow Zoom users.
โ2025-05-21 08:12 AM - edited โ2025-05-21 08:13 AM
On the last update to version 6.4.10 (2027), the settings dialog box is broken. The only usable tabs are "Video & effects", "Statistics", "My Account", "Accessibility" and "Keyboard shorcuts". All the other options (including "General"ยท, "Audio", "Notifications & sounds",...) are unusable. Their content is restricted to a tiny band on the left of the panel. The right band is just white space.
I am using Ubuntu 24.04.2 LTS under Wayland (forcing X11 with "unset $WAYLAND_DISPLAY" does not fix this) with an Intel UHD Graphics 730 integrated controller. Zoom version 6.4.6.1370 just worked fine on the same system.
โ2025-05-29 03:47 AM
Same problem with version 6.4.12 (2180) on "Ubuntu 24.04.2 LTS" with a NVIDIA GeForce GT 710, NVIDIA driver version 470.256.02 running under X11.
I have closed session on Zoom and, just in case it is something like an update bug, removed all the temporary and cache files I was able to find:
$ rm -fr ~/.zoom/
$ rm -fr ~/.config/.zoom/
$ rm ~/.config/zoomus.conf
$ rm ~/.config/zoom.conf
$ rm -fr ~/.config/Unknown\ Organization/zoom.conf Unknown\ Organization/zoom\ .conf
$ rm -fr ~/.config/Unknown\ Organization/zoom.conf Unknown\ Organization/zoom\ .conf
$ rm -fr ~/.cache/zoom/
After such a cleanup, still the same error on the "Settings" dialog that I described on my first post. Please, FIX IT!! Not being able to access most of the settings is a real problem for your GNU/Linux user base!
It must be something really small introduced between version 6.4.6.1370 and 6.4.10 on the "Settings" dialog. Most probably something like changing a parameter on the UI file of the "Settings" dialog so that the right panel with the options, instead of occupying all the right side of the dialog (as correctly happened on versions 6.4.6.1370 and earlier), now it is so narrow that you miss almost all the options. And the right space is just blank space. Most this is something that should not be hard to fix. But, of course, I cannot take a look at the relevant source-code. But most probably is some small change introduce on version 6.4.10. Maybe even without realizing it...
โ2025-06-09 03:42 AM
Same problem with update 6.74.13 (2309). Please, is it so hard to revert whatever changes on the "settings" dialog that made the error? This is really hurting the usability of Zoom on the GNU/Linux platform.
โ2025-06-11 04:47 AM
We sincerely apologize. The issue has been identified and will be fixed in an upcoming version. As a temporary workaround, you can change the system locale to an English region.
โ2025-06-11 06:02 AM - edited โ2025-06-11 06:12 AM
Ok, I see. For anyone reading this, I am now using the following BASH script to initialize Zoom 6.4.13 (2309):
#!/bin/bash
export LANG=en_US.UTF-8
export LANGUAGE=en:ru:en
export LC_CTYPE="en_US.UTF-8"
export LC_NUMERIC=en_US.UTF-8
export LC_TIME=en_US.UTF-8
export LC_COLLATE="en_US.UTF-8"
export LC_MONETARY=en_US.UTF-8
export LC_MESSAGES="en_US.UTF-8"
export LC_PAPER=en_US.UTF-8
export LC_NAME=en_US.UTF-8
export LC_ADDRESS=en_US.UTF-8
export LC_TELEPHONE=en_US.UTF-8
export LC_MEASUREMENT=en_US.UTF-8
export LC_IDENTIFICATION=en_US.UTF-8
zoom &> /dev/null & disown
Just give execution rights to this script and run it instead of the classical "Zoom" launcher. The advantage is that you do not need to change your locations system-wide. Many thanks for your help, @Ross4 This is a nice workaround in my case.
By the way, Zoom appears to let you change your settings back to your native language through the "Language change" menu if you want to and without breaking the "Settings" dialog. But such a solution works only if you keep entering Zoom through the previous bash script that forces location settings to English (settings that are not honoured by Zoom if you overwrite them inside Zoom setup). However, as soon as you run Zoom without the previous bash script, the "Settings" dialog breaks again.