How to Install Zoom Video Communications Client on Ubuntu 18.04 LTS

|
Last Updated:
|
|
Install Zoom Video Communications Client on Ubuntu

In this tutorial, you will learn how to install Zoom Video Communications Client on Ubuntu. Zoom is an easy to use and secure communication software that offers video conferencing, online meetings, chat, mobile collaboration and webinars across multiple platforms: mobile devices, desktops, telephones, and room systems.

Installing Zoom Client on Ubuntu

Download Zoom Package

To download Zoom package, navigate to Zoom Download Centre,and choose the package for your specific Linux type, OS Architecture and Version of OS. In this case you select Ubuntu as the Linux Type, 64 OS architecture and version 14.04+. After that click the download button and save the package.

You can also download the package as shown below.

wget https://zoom.us/client/latest/zoom_amd64.deb

Install Zoom Client on Ubuntu

Once the download is complete, install the package either from the GUI or the CLI.

GUI Installation

To install Zoom from GUI, Open the file manager and navigate to download location.

Install Zoom Video Communications Client on Ubuntu

Double click or right click on the package and choose Open With Software Install. This opens up the Zoom Installer. Click install button to install Zoom.

installer

When you click Install, you will be prompted to enter your password to authorize the installation.

passprompt

Enter your password and authenticate to launch installation.

Command Line Installation

To install Zoom from terminal, navigate to download location, for my case it is Downloads directory and run the following command to install Zoom

dpkg -i ~/Downloads/zoom_amd64.deb

If you encounter any dependency error as shown below, run the command below to fix it.


Selecting previously unselected package zoom.
(Reading database ... 118356 files and directories currently installed.)
Preparing to unpack zoom_amd64.deb ...
Unpacking zoom (2.4.129780.0915) ...
dpkg: dependency problems prevent configuration of zoom:
zoom depends on libxcb-xtest0; however:
Package libxcb-xtest0 is not installed.

dpkg: error processing package zoom (--install):
...output snipped...

To fix this, run the command below and repeat the installation step.

apt -f install

To deal with dependencies problem automatically, just use APT  to run the installation.

apt install ~/zoom_amd64.deb

Once the installation is complete, you can launch Zoom as described below.

Launching Zoom Client

When installation is complete, click on the Activities tap at the top left corner of your Ubuntu UI, type zoom search and press enter to launch it.

zoom

You can now join the meeting or sign in if you already have an account with Zoom. That is all it takes to install Zoom on Ubuntu 18.04 Desktop.

In our next tutorial, we will discuss how to setup or join a zoom meeting on Ubuntu 18.04.

Other Tutorials;

Install and Configure Elastic Auditbeat on Ubuntu 18.04

Install Latest Wireshark on Ubuntu 18.04

Configure Sendmail to Use Gmail Relay on Ubuntu 18.04/Debian 10/9

Install KDE Plasma on Debian 10/9/Ubuntu 18.04

Install OpenVAS 9 with PostgreSQL in Ubuntu 18.04

SUPPORT US VIA A VIRTUAL CUP OF COFFEE

We're passionate about sharing our knowledge and experiences with you through our blog. If you appreciate our efforts, consider buying us a virtual coffee. Your support keeps us motivated and enables us to continually improve, ensuring that we can provide you with the best content possible. Thank you for being a coffee-fueled champion of our work!

Photo of author
koromicha
I am the Co-founder of Kifarunix.com, Linux and the whole FOSS enthusiast, Linux System Admin and a Blue Teamer who loves to share technological tips and hacks with others as a way of sharing knowledge as: "In vain have you acquired knowledge if you have not imparted it to others".

6 thoughts on “How to Install Zoom Video Communications Client on Ubuntu 18.04 LTS”

  1. Clicking on the downloaded file just hangs. Trying the command line, I get

    sudo apt-get install libxcb-xtest0
    Reading package lists… Done
    Building dependency tree
    Reading state information… Done
    Package libxcb-xtest0 is not available, but is referred to by another package.
    This may mean that the package is missing, has been obsoleted, or
    is only available from another source

    E: Package ‘libxcb-xtest0’ has no installation candidate

    Reply
    • Hi,
      To avoid having to deal with Dependencies, just run the installation as;
      sudo apt install ./zoom_amd64.deb

      Reply
  2. Hi, the only way the instalation worked here was through command line.
    If I want later to uninstall, how can I do that?
    sudo apt remove ./zoom_amd64.deb
    ?

    Reply
  3. when i run command apt istall zoom_amd64.deb following error appear
    E: Invalid operation install

    i don’t understand how to remove it.

    Reply

Leave a Comment