How to Install Zoom Client on Almalinux or Rocky Linux 8

Zoom is an easy-to-use video conference app and is available for Windows, Linux, macOS, and all other common platforms – interesting as a Skype alternative in the home office or distributed teams.  Here we will let you know the command to download and install Zoom Client on AlmaLinux 8…

The starter plan of zoom can be used to handle 100 participants in a video conference with 1 GB Cloud Recording. And those who are interested in webinars or showing online courses, the tool can hold up to 10k viewers without letting them interact without interacting with each other.

The basic free version of Zoom only allows you to have one group video conference, a so-called meeting, at a time. The number of meetings is unlimited. However, there is a time limit: you have 40 minutes per group meeting.

 

Steps to install Zoom Almalinux 8 PC or laptop

The command given here can be used for Rocky Linux 8, CentOS, RedHat, and Fedora as well.

1. Run DNF update

The first thing is to update the existing packages and flush the repo cache to rebuild it again. For that on your Linux simply run the system update command-

sudo dnf update

 

2. Add Zoom GPG Key

To verify the packages in the future to update the Zoom client add its GPG on your system.

wget -O package-signing-key.pub https://zoom.us/linux/download/pubkey

sudo rpm --import package-signing-key.pub

 

3. Download Zoom client for AlmaLinux

With the help of wget command get the RPM binary file of Zoom client in a 64-bit version for the installation-

wget https://zoom.us/client/latest/zoom_x86_64.rpm

 

4. Install using DNF package manager

Finally, use the DNF package manager to install the downloaded Zoom client binary on AlmaLinux 8.x you are using.

sudo dnf install zoom_x86_64.rpm

Command to install Zoom clinet on Linux

 

5. Run and connect video conference or meeting

Once the installation is completed go to Application launcher and search for Zoom for meetings client. As its icon appears, click to run it.

Zoom metting client install AlmaLinux 8

 

Other AlmaLinux Tutorials:

 

 

1 thought on “How to Install Zoom Client on Almalinux or Rocky Linux 8”

  1. Hi, this is a root script to automate the process by creating a local yum|dnf repository

    #!/bin/sh
    # update_zoom.sh by ligenix
    # License: CC-BY-SA
    # http://creativecommons.org/licenses/by-sa/4.0/

    cd $(realpath $(dirname $0))

    wget -c -N https://zoom.us/client/latest/zoom_x86_64.rpm

    repo_zoom=/srv/repo/lin/zoom/
    if [ ! -d “${repo_zoom}” ]; then
    mkdir -p ${repo_zoom}
    else
    zoom_version_major=$(rpm -qp zoom_x86_64.rpm | cut -d”.” -f1,2)
    rm -rf ${repo_zoom}${zoom_version_major}.*
    fi

    local_zoom=/etc/yum.conf.d/local-zoom.repo
    if [ ! -f “${local_zoom}” ]; then
    rpm –import https://zoom.us/linux/download/pubkey
    cat < ${local_zoom}
    [local-zoom]
    name=Local repo for Zoom by ligenix
    baseurl=file://${repo_zoom}
    type=rpm-md
    skip_if_unavailable=True
    gpgcheck=1
    gpgkey=https://zoom.us/linux/download/pubkey
    repo_gpgcheck=0
    enabled=0
    enabled_metadata=1
    EOF
    fi

    zoom_version_rpm=$(rpm -qp zoom_x86_64.rpm).rpm
    mv -f zoom_x86_64.rpm ${repo_zoom}${zoom_version_rpm}

    createrepo ${repo_zoom}

    yum –enablerepo=local-zoom update -y zoom

    Reply

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.