How To Install Zoom on Ubuntu
Posted on July 15, 2021 (Last modified on July 14, 2022) • 1 min read • 164 wordsThis tutorial guides you on how to install Zoom Client on Ubuntu Linux. You can follow this tutorial on Ubuntu 16.04 / 18.04 / 20.04.
In this tutorial we learn how to install Zoom on Ubuntu Linux. This tutorial is using Ubuntu 20.04 but you can follow this tutorial in previous version of Ubuntu like Ubuntu 18.04 or later version like Ubuntu 21.04.
Zoom is a secure, reliable video platform powers all of your communication needs, including meetings, chat, phone, webinars, and online events.
First, download the Zoom deb package using wget command below
wget https://zoom.us/client/latest/zoom_amd64.deb
```bash
Second, we install the `zoom_amd64.deb` using the command below
```bash
sudo apt install ./zoom_amd64.deb
To start Zoom on Ubuntu Linux, you can go to Applications -> Internet -> zoom
. The zoom application will open.
To uninstall Zoom, we can use the command below:
sudo apt remove zoom
```bash
Or we can also use apt-get to remove zoom using the command below
```bash
sudo apt-get remove zoom
In this tutorial we learn how to install Zoom on Ubuntu.