July 15, 2021 in Tutorial1 minute
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
Second, we install the zoom_amd64.deb
using the command below
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
Or we can also use apt-get to remove zoom using the command below
sudo apt-get remove zoom
In this tutorial we learn how to install Zoom on Ubuntu.