web-dev-qa-db-fra.com

Comment installer Viber dans Ubuntu?

Est-il possible d'installer le client Viber VoIP sur Ubuntu? Pour pouvoir appeler les gens via Viber depuis mon PC.

28
rɑːdʒɑ

Viber a publié son client officiel pour Ubuntu/Linux. Pour l'installer, ouvrez votre terminal avec CTRL+ALT+T et type:

wget http://download.cdn.viber.com/cdn/desktop/Linux/Viber.Zip

Puis décompressez-le et cd dans ce répertoire. Alors fais comme:

unzip Viber.Zip
cd Viber
~/Viber/Viber.sh

Cela installera Viber sur votre Ubuntu.

Comment installer de manière .DEB // Actuellement, seule la version 64 bits est disponible

Ouvrez votre terminal et tapez:

wget -O viber.deb http://download.cdn.viber.com/cdn/desktop/Linux/viber.deb  
Sudo dpkg -i viber.deb

C'est tout. Vous pouvez accéder à Viber dans votre Ubuntu.

Mise à jour : J'ai appris que certains utilisateurs obtenaient

home/xyz/Viber/Viber: 1: /home/xyz/Viber/Viber: �: not found
/home/xyz/Viber/Viber: 1: /home/xyz/Viber/Viber: ELF: not found
/home/xyz/Viber/Viber: 1: /home/xyz/Viber/Viber: Syntax error: Word unexpected (expecting ")")

donc ce problème peut être résolu par "♦: commande introuvable" dans tty après la connexion post.

36
rɑːdʒɑ

Téléchargez le paquet deb de viber.com

Installez le package .deb:

cd /viber_download_location/

Sudo dpkg -i viber.deb

Si vous utilisez un système 32 bits

Sudo dpkg --force-architecture -i viber.deb 
7
Achu

Ubuntu 18.04

Terminal ouvert

Ctrl + Alt + T

Tapez le terminal -


username:~$ Sudo su
[Sudo] password for user: 
root:/home/user/# add-apt-repository ppa:alexlarsson/flatpak
root:/home/user/# apt install flatpak
root:/home/user/# apt install gnome-software-plugin-flatpak
root:/home/user/# exit
username:~$ flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
username:~$ Sudo reboot
[Sudo] password for user:

Votre système va maintenant redémarrer.

Terminal ouvert

Ctrl + Alt + T

Tapez le terminal -



username:~$ flatpak search viber
Application ID  Version Branch Remotes Description
com.viber.Viber       Stable flathub We connect people, no metter who they are or where they are from.
username:~$ flatpak install flathub com.viber.Viber
Required runtime for com.viber.Viber/x86_64/stable (runtime/org.freedesktop.Platform/x86_64/18.08) found in remote flathub
Do you want to install it? [y/n]: y
Installing in system:
//some code
//some code
//some code
Is this ok [y/n]: y
Installing: org.freedesktop.Platform/x86_64/18.08 from flathub
//some code
//some code
//some code
Installing: com.viber.Viber/x86_64/stable from flathub
//some code
//some code
//some code
username:~$


Ouvrir Viber de tiret

0
Sonevol