How to install Viber in Ubuntu 22.04.1 LTS properly
(updated 11.01.23)
1. Optional Download Viber or skip if you already have viber.AppImage
wget -P ~/Downloads https://download.cdn.viber.com/desktop/Linux/viber.AppImage
2. Extract from AppImage & move to /opt
chmod +x ~/Downloads/viber.AppImage
~/Downloads/viber.AppImage --appimage-extract
sudo mv ~/squashfs-root /opt/viber
3. Download working libs & replace broken ones in /opt/viber/lib
export libsfilename="libssl1.1_1.1.1f-1ubuntu2_amd64.deb"
wget -P ~/Downloads http://security.ubuntu.com/ubuntu/pool/main/o/openssl/$libsfilename
dpkg -x ~/Downloads/$libsfilename ~/Downloads/viberlibs/
sudo rm /opt/viber/lib/libssl.so.* /opt/viber/lib/libcrypto.so.*
sudo cp ~/Downloads/viberlibs/usr/lib/x86_64-linux-gnu/lib* /opt/viber/lib/
rm ~/Downloads/$libsfilename
4. Move launcher to application folder & edit viber.desktop
(point to actual Viber
executable)
sudo cp /opt/viber/viber.desktop /usr/share/applications
sudo sed -i "s/Exec=.*/Exec=\/opt\/viber\/Viber/" /usr/share/applications/viber.desktop
sudo sed -i "s/Icon.*/Icon=\/opt\/viber\/viber\.png/" /usr/share/applications/viber.desktop
Profit! Open your launcher and there should be working Viber
(if not logout & login)
/var/log/syslog
(or elsewhere in/var/log
) that might point to the issue? – matigo Apr 20 '22 at 10:06I checked the supported platforms, and it seems that my system is supported "Linux Fedora and Ubuntu (64 bit)" I'm using 64bit.
While checking the
/var/log/syslog
and doingtail -f /var/log/syslog
while opening the Viber app, there is no logs on syslogmmmh.. what specific logs name do you mean on elsewhere in
– Rey Mark Apr 20 '22 at 10:17/var/log
?libssl1.1_1.1.1l-1ubuntu1.3_amd64.deb
inside /opt/viber/lib and you're set. – George Litos May 10 '22 at 14:17