Howtodojo logo
  • Home 
  • About 
  • Certifications 
  • Sample Database 
  • Cheatsheet 
  • Glossary 
  • Blog 
  • Tags 
  1.   Blog
  1. Home
  2. Blog
  3. How To Install Zoom on CentOS

How To Install Zoom on CentOS

Share via
Howtodojo
Link copied to clipboard

In this tutorial we will learn how to install zoom on CentOS.

On this page
Introduction   Download and Import Zoom GPG Key   Install Zoom   Install Zoom on CentOS 7 / CentOS 8   Download Zoom Installer Package   Show Installed Zoom Package   Uninstall Zoom on CentOS   Summary  
How To Install Zoom on CentOS

Introduction  

In this tutorial we will learn how to install zoom on CentOS.

Zoom is a video conferencing, web conferencing and webinars software that enable people to do meeting, class and seminars online.

Zoom popularity highly increased when covid-19 pandemic start around march 2020.

This tutorial tested in CentOS 6, CentOS 7 and CentOS 8.

You should be able to follow this tutorial in Red Hat Enterprise Linux, Oracle Linux and also Fedora Linux with no changes or minimum changes.

Download and Import Zoom GPG Key  

Zoom rpm packages is being signed with GPG key. To avoid missing signing key by package management we need to download and import Zoom’s GPG key

To download Zoom’s GPG key we can use command below.

wget -c https://zoom.us/linux/download/pubkey
```bash

or if wget is not available on your system you can use command below.

```bash
curl https://zoom.us/linux/download/pubkey -o pubkey

To import GPG key we can use command below

rpm --import pubkey
```bash

Zoom have different rpm package for CentOS 6 and for CentOS 7 / CentOS 8. We will learn how to install them separately

## Install Zoom on CentOS 6 {#h-install-zoom-on-centos-6}

### Download Zoom Installer Package {#h-download-zoom-installer-package}

```bash
wget -c https://zoom.us/client/5.4.53391.1108/zoom-1_x86_64.rpm

Install Zoom  

sudo yum localinstall zoom-1_x86_64.rpm

Enter y to continue the installation process

Install Zoom on CentOS 7 / CentOS 8  

Download Zoom Installer Package  

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

### Install Zoom RPM package {#h-install-zoom-rpm-package}

```bash
sudo yum localinstall zoom_x86_64.rpm

Show Installed Zoom Package  

To show the details about zoom rpm package that we just install we can run the command below.

rpm -qi zoom
```bash

The output should be similar to output below

<figure class="wp-block-image size-medium">
<img loading="lazy" width="640" height="240" src="https://www.howtodojo.com/wp-content/uploads/2021/01/install-zoom-centos-7-centos-8-640x240.png" alt="install zoom centos - show zoom rpm package detail" class="wp-image-1847" srcset="https://www.howtodojo.com/wp-content/uploads/2021/01/install-zoom-centos-7-centos-8-640x240.png 640w, https://www.howtodojo.com/wp-content/uploads/2021/01/install-zoom-centos-7-centos-8-70x26.png 70w, https://www.howtodojo.com/wp-content/uploads/2021/01/install-zoom-centos-7-centos-8-768x289.png 768w, https://www.howtodojo.com/wp-content/uploads/2021/01/install-zoom-centos-7-centos-8.png 1275w" sizes="(max-width: 640px) 100vw, 640px" />
</figure>

## Running Zoom on CentOS {#h-running-zoom-on-centos}

To run zoom you can use command below.

```bash
zoom

Uninstall Zoom on CentOS  

If you need to uninstall zoom from your system, you can run the following command.

sudo yum remove zoom

You can use the command above to uninstall zoom on both 32-bit and 64-bit system.

Summary  

In this tutorial we learn how to install Zoom on CentOS. We learn to install different rpm package for CentOS 6 and for CentOS 7 / 8.

We also learn how to show the detail of zoom rpm package and how to uninstall zoom from CentOS.

 How to Install wget on Linux
How to Install MongoDB 4.2 on Ubuntu 18.04 
On this page:
Introduction   Download and Import Zoom GPG Key   Install Zoom   Install Zoom on CentOS 7 / CentOS 8   Download Zoom Installer Package   Show Installed Zoom Package   Uninstall Zoom on CentOS   Summary  
Follow me

We publish tutorials, tips and tricks about Linux, open source, cloud computing, and infrastructure

     
Copyright © 2012 - 2025 howtodojo.com. |
Howtodojo
Code copied to clipboard