Resolved! Update Zoom in Debian/Ubuntu
Too bad there is no PPA for Zoom. I use this script to check for newer zoom_amd64.deb and update. Installing or updating Zoom on Linux – Zoom Support #!/bin/sh
echo Installed: $(cat /opt/zoom/version.txt)
echo Available: $(wget --spider https://zoom.us/client/latest/zoom_amd64.deb 2>&1 | grep Location | sed -e 's/.*prod\/\(.*\)\/.*/\1/')
REPLY=n
echo -n "Download and install? "
read REPLY
if [ $REPLY = y ] ; then
wget -c https://zoom.us/client/latest/zoom_amd64.deb
sudo apt install ./zoom_amd64.deb
rm zoom_amd64.deb
fi
Show less

