Install Zoom Client on Rocky Linux 9: Best Meeting App
This tutorial is designed to guide you through the process of installing the Zoom Client on Rocky Linux 9. Zoom has become a ubiquitous tool for online meetings, offering a user-friendly alternative to platforms like Microsoft Teams. Its ease of use and widespread adoption make it a popular choice for individuals and organizations alike. Installing Install Zoom Client on Rocky Linux 9 allows you to seamlessly join meetings directly from your Linux environment.
You can follow the steps outlined below to easily Install Zoom Client on Rocky Linux 9. This guide is tailored for users who want a straightforward installation process.
To successfully complete this guide, you’ll need access to a Rocky Linux 9 server as a non-root user with sudo
privileges. If you haven’t already configured this, you can refer to the Initial Server Setup with Rocky Linux 9 guide.
Once you have the necessary prerequisites, follow the steps below to begin the installation of your Zoom client.
Step 1 – Install Dependencies for Zoom Client
First, ensure your system is up-to-date by running the following command. This step is crucial for avoiding compatibility issues and ensuring a smooth installation.
sudo dnf update -y
Next, install the required dependencies for Zoom. These libraries are essential for the Zoom client to function correctly on your Rocky Linux 9 system.
sudo dnf install libc.so.6 libX11.so.6 libXfixes.so.3 libglib-2.0.so.0 libGL.so.1 libsqlite3.so.0 libXrender.so.1 libXcomposite.so.1 libQt3Support.so.4 libxslt.so.1 libgstvideo-0.10.so.0 libasound.so.2 libpulse.so.0 libgthread-2.0.so.0 libxcb-shape.so.0 libxcb-shm.so.0 libxcb-randr.so.0 libxcb-image.so.0 libxcb-xtest.so.0 libxcb-keysyms.so.1 mesa-dri-drivers ibus
Step 2 – Download and Install Zoom RMP Package on Rocky Linux 9
Now, you need to download the Zoom GPG key to your server. This key is used to verify the integrity of the Zoom RPM package.
sudo wget -O package-signing-key.pub https://zoom.us/linux/download/pubkey?version=5-12-6
Import the Zoom GPG key using the following command:
sudo rpm --import package-signing-key.pub
Download the latest version of the Zoom RPM package from the official Zoom download site.
sudo wget https://zoom.us/client/latest/zoom_x86_64.rpm
After the download is complete, install the Zoom RPM package using the dnf localinstall
command:
sudo dnf localinstall zoom_x86_64.rpm
Step 3 – Launch Zoom Client App on Rocky Linux 9
With the installation complete, you can now launch the Zoom client application. You can start Zoom from the command line:
zoom &
Alternatively, you can find the Zoom application in your desktop menu and launch it from there.

You can now join meetings and communicate with others via Zoom.
Step 4 – Uninstall Zoom From Rocky Linux 9
If you decide to remove Zoom from your system, you can easily uninstall it, including its dependencies, using the following command:
sudo dnf erase zoom
Conclusion
Install Zoom Client on Rocky Linux 9 is straightforward using the RPM package. Zoom provides a convenient and accessible platform for online meetings and collaboration. This guide provides a step-by-step approach to getting Zoom up and running on your Rocky Linux 9 system. If you’re looking for a reliable meeting app alternative to Microsoft Teams, Zoom is an excellent choice.
Hope you found this guide helpful! You might also be interested in these related articles:
Install Mattermost on Rocky Linux 8 and RHEL 8
Slack Installation Steps on Rocky Linux 8 from CLI
Alternative Solutions for Installing Zoom on Rocky Linux 9
While the RPM package installation method is common and generally reliable, here are two alternative approaches to Install Zoom Client on Rocky Linux 9: using Flatpak and using Snap.
Alternative 1: Installing Zoom using Flatpak
Flatpak is a universal package manager that allows you to install applications across different Linux distributions. This method is particularly useful if you prefer a sandboxed environment for your applications or if you encounter issues with the RPM package installation.
Step 1: Install Flatpak
If Flatpak is not already installed on your Rocky Linux 9 system, you can install it using the following command:
sudo dnf install flatpak
Step 2: Add the Flathub Remote
Flathub is the primary repository for Flatpak applications. Add it to your Flatpak configuration:
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
Step 3: Install Zoom via Flatpak
Now you can install Zoom using Flatpak:
flatpak install flathub us.zoom.Zoom
This command downloads and installs the Zoom client from the Flathub repository.
Step 4: Run Zoom
After installation, you can run Zoom using the following command:
flatpak run us.zoom.Zoom
Or, you can find the Zoom application icon in your desktop environment’s application menu.
Uninstalling Zoom via Flatpak
To uninstall Zoom using Flatpak, use the following command:
flatpak uninstall us.zoom.Zoom
Explanation
Flatpak offers a sandboxed environment, which can enhance security by isolating Zoom from the rest of your system. It also simplifies dependency management, as Flatpak handles the necessary libraries and runtimes. This method ensures that you have a consistent version of Zoom across different Rocky Linux 9 installations.
Alternative 2: Installing Zoom using Snap
Snap is another universal package manager that, similar to Flatpak, allows you to install applications across different Linux distributions.
Step 1: Enable EPEL Repository
The snapd package is available in the EPEL repository. Enable it:
sudo dnf install epel-release
Step 2: Install Snapd
Install the snapd package:
sudo dnf install snapd
Step 3: Enable and Start Snapd Socket
Enable the snapd socket and start the snapd service:
sudo systemctl enable --now snapd.socket
Step 4: Install Zoom via Snap
Install Zoom using the following command:
sudo snap install zoom-client
Step 5: Run Zoom
You can now run Zoom:
zoom-client
Alternatively, find the Zoom application icon in your desktop environment’s application menu.
Uninstalling Zoom via Snap
To uninstall Zoom, use the following command:
sudo snap remove zoom-client
Explanation
Snap provides applications within a container, bundling all necessary dependencies and libraries. This eliminates compatibility issues and ensures consistent behavior across different systems. However, snap packages can be larger than traditional packages. The zoom-client snap package is maintained by the Snap Store community, and offers another viable avenue to Install Zoom Client on Rocky Linux 9.