Ubuntu – Problem on installing teamviewer on 16.04 LTS

16.04remote desktopteamviewer

I have a problem on installing teamviewer on 16.04 LTS. I don't know if this problem is just on my PC but I can't install it.

I found this solution:

Download the official image from http://www.teamviewer.com/en/download/linux.aspx (always get 32bit)

Open a console:

cd ~/Downloads/
sudo dpkg -i teamviewer_linux.deb
sudo apt-get -f install  # to install any missing dependencies

Follow whatever steps it needs you to take.

But it doesn't work…

I also tried this:

sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install gdebi
wget http://download.teamviewer.com/download/teamviewer_i386.deb
sudo gdebi teamviewer_linux.deb
sudo dpkg --remove-architecture i386

But this is not working too.

Can anyone help me to install teamviewer, please?

Best Answer

Using sudo apt-get -f install or gdebi may not always solve dependency problem. Instead, run the following command to install all Teamviewer dependencies.

sudo apt-get install libdbus-1-3:i386 libasound2:i386 libexpat1:i386 libfontconfig1:i386 libfreetype6:i386 libjpeg62:i386 libpng12-0:i386 libsm6:i386 libxdamage1:i386 libxext6:i386 libxfixes3:i386 libxinerama1:i386 libxrandr2:i386 libxrender1:i386 libxtst6:i386 zlib1g:i386 libc6:i386

And then you can install teamview with dpkg

sudo dpkg -i teamviewer*.deb

Source: https://www.linuxbabe.com/desktop-linux/install-teamviewer-ubuntu-16-04-xenial-xerus

Related Question