Ubuntu – Zoom Conference (skype type of program) not working

zoom-meeting

Just recently Zoom conference is offering to install their program on Ubuntu, but I am not able to make it work.

I went here to download the .deb file from https://zoom.us/download to install it via the software center.

The installation goes really fast, probably too fast and then when starting the program, the first page shows up where I have "join meeting" or "log in" options available but none of both options works. The program freezes and I can not close the window.

Best Answer

From the documentation:

Installation

dpkg -i ZoomInstaller_i386.deb
sudo apt-get -f install

Should you come across any issues or be using the tar file to install, the following is the list of commands to install required dependencies

Ubuntu 12.04 32-bit

sudo apt-get install libegl1-mesa

Ubuntu 14.04 64-bit

sudo apt-get install libglib2.0-0:i386 libegl1-mesa:i386 libxcb-shape0:i386 libxcb-shm0:i386 libgl1-mesa-glx:i386 libxi6:i386 libsm6:i386 libfontconfig1:i386 libxrender1:i386 libpulse0:i386 libxcomposite1:i386 libxslt1.1:i386 libgstreamer-plugins-base0.10-0:i386 libssl1.0.0:i386

Source: https://support.zoom.us/hc/en-us/articles/204206269-Getting-Started-on-Linux

Related Question