0

I was able to install and use both the TeamViewer 12 DEB and exacqvision for Linux in Ubuntu 14.04 but I cannot install in Ubuntu 17.04.

Any suggestions?

Tim
  • 32,861
  • 27
  • 118
  • 178

1 Answers1

0

Install:

wget https://downloadeu8.teamviewer.com/download/version_12x/teamviewer_12.0.76279_i386.deb
sudo dpkg -i teamviewer_12.0.76279_i386.deb

Maybe got error:

Errors were encountered while processing:
 teamviewer:i386

Info:

sudo dpkg -l | grep team
iU  teamviewer:i386

Fix:

sudo dpkg --add-architecture i386
sudo apt update
sudo apt -f install

Info:

dpkg -l | grep team
ii  teamviewer:i386
ilyar
  • 101