Install zoom client in Ubuntu 18.04

[toc]

What's zoom

Zoom offers communications software that combines video conferencing, online meetings, chat, and mobile collaboration. Zoom can be installed on Windows and Linux desktops and mobile devices.

Zoom's Linux client allows you to start or join Zoom meetings on Ubuntu, Fedora and many other Linux distributions.

How to install zoom

The following commands would download the Zoom package for Debian system and install it using the apt package manager.

  1. Install wget if not installed

    1
    sudo apt -y install wget

  2. Download the latest Zoom package

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

  3. Install the zoom package

    1
    sudo apt install ./zoom_amd64.deb

  4. Check zoom is installed successfully

    1
    apt-cache policy zoom

apt-cache queries and displays available information about installed and installable packages, in which policy shows policy settings. The output information has demonstrated the downloaded package has installed successfully.

1
2
3
4
5
6
zoom:
Installed: 3.5.352596.0119
Candidate: 3.5.352596.0119
Version table:
*** 3.5.352596.0119 100
100 /var/lib/dpkg/status

  1. Set up zoom in command line
    1
    zoom

Reference

None.