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 popular alternative to platforms like Microsoft Teams, offering a user-friendly interface and reliable performance for joining meetings on various Linux distributions. This guide will walk you through the necessary steps to get Zoom up and running on your Rocky Linux 9 system.
You can follow the steps below to easily Install Zoom Client on Rocky Linux 9.
Before proceeding, ensure you have access to your server as a non-root user with sudo
privileges. If you haven’t already set this up, you can refer to a guide on the Initial Server Setup with Rocky Linux 9.
Now, let’s dive into the Zoom client installation process.
Step 1 – Install Dependencies for Zoom Client
First, it’s crucial to update your system to ensure all packages are up-to-date. Execute the following command:
sudo dnf update -y
Next, install the required dependencies for Zoom using the command below. These libraries are essential for Zoom to function correctly on your 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
At this point, you must download the latest Zoom GPG key to your server with the wget
command below:
sudo wget -O package-signing-key.pub https://zoom.us/linux/download/pubkey?version=5-12-6
Then, import the Zoom GPG key with the command below:
sudo rpm --import package-signing-key.pub
Next, use the following command to download Zoom in the latest version from the official site:
sudo wget https://zoom.us/client/latest/zoom_x86_64.rpm
Once the download is complete, install the Zoom RPM package using the following 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. Use the following command:
zoom &
Alternatively, you can search for the Zoom application in your desktop menu and launch it from there.

You can now join meetings and communicate effectively.
Step 4 – Uninstall Zoom From Rocky Linux 9
If you decide to remove Zoom from your system, you can uninstall it along with 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 presents itself as a viable alternative to Microsoft Teams, particularly for Linux server environments. Its ease of installation and use make it a valuable tool for conducting meetings and facilitating communication.
Now you are able to Install Zoom Client on Rocky Linux 9.
Hope you enjoy it. You may also like these articles:
Install Mattermost on Rocky Linux 8 and RHEL 8
Slack Installation Steps on Rocky Linux 8 from CLI
Alternative Installation Methods
While the RPM package method is a common approach, there are alternative ways to Install Zoom Client on Rocky Linux 9. Let’s explore two such options: using Flatpak and Snap.
Alternative 1: Installing Zoom via Flatpak
Flatpak is a universal package management system that allows you to install applications across different Linux distributions. It provides a sandboxed environment for applications, enhancing security and dependency management.
Steps to Install Zoom using Flatpak:
-
Install Flatpak: If Flatpak is not already installed on your Rocky Linux 9 system, install it using the following command:
sudo dnf install flatpak
-
Add the Flathub repository: Flathub is a popular repository for Flatpak applications. Add it to your system:
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
-
Install Zoom: Now, install Zoom using Flatpak:
flatpak install flathub us.zoom.Zoom
-
Run Zoom: After installation, you can run Zoom from the command line:
flatpak run us.zoom.Zoom
Or, you can find it in your desktop environment’s application menu.
-
Uninstall Zoom (Flatpak): To uninstall Zoom installed via Flatpak, use the following command:
flatpak uninstall us.zoom.Zoom
Explanation:
Flatpak packages applications with all their dependencies, which avoids conflicts with system libraries. This makes the installation process more reliable and less prone to errors. The flatpak run
command executes the application within its sandbox, isolating it from the rest of the system. This approach can improve security and stability, especially if Zoom requires specific library versions or configurations that differ from the system’s defaults. Install Zoom Client on Rocky Linux 9 in this way is another reliable option.
Alternative 2: Installing Zoom via Snap
Snap is another universal package management system similar to Flatpak. It also provides sandboxing and dependency management.
Steps to Install Zoom using Snap:
-
Install Snapd: If Snapd (the Snap daemon) is not installed, install it with:
sudo dnf install snapd sudo systemctl enable --now snapd.socket sudo ln -s /var/lib/snapd/snap /snap
-
Install Zoom: Install the Zoom client using the Snap package manager:
sudo snap install zoom-client
-
Run Zoom: Once installed, launch Zoom using the command:
zoom-client
Or you can find it in your desktop environment’s application menu.
-
Uninstall Zoom (Snap): To remove Zoom installed using Snap, use the following command:
sudo snap remove zoom-client
Explanation:
Snaps are self-contained packages that include all the necessary dependencies for an application to run. This eliminates the need to manually install dependencies and reduces the risk of conflicts with system libraries. The snap install
command downloads and installs the Zoom client package, and the zoom-client
command launches the application. Snaps also provide automatic updates, ensuring that you always have the latest version of Zoom. Install Zoom Client on Rocky Linux 9 is made easier using Snap.
These alternative methods offer different approaches to installing Zoom, each with its own advantages. Flatpak and Snap provide sandboxing and dependency management, which can enhance security and stability. Choose the method that best suits your preferences and system configuration.