I need to install version 11 of teamviewer on ubuntu system . I have tried the solution in this question http://askubuntu.com/questions/764228/teamviewer-11-wont-run-on-ubuntu-16-04-64-bit
but the problem is that when I download teamviewer from any download link for teamviewer it always gives version 12, I really need version 11 as my team mates have version 11 on their systems. How can I achieve this?
Asked
Active
Viewed 1.1k times
1

Haroon
- 211
- 3
- 6
- 23
1 Answers
2
Steps to install version 11
:
- Get version 11
- the link will download the 64 bit deb package
- For 32/64 bit version
- Install:
sudo dpkg -i teamviewer_11.0.xxxxx_i386.deb
- Any issues with dependencies run this:
sudo apt-get install -f
NOTE:
Notes on Multiarch:
On newer 64-bit DEB-systems with Multiarch-support (Debian 7)
teamviewer_linux_x64.deb cannot be installed because the
package ia32-libs is not available anymore on these systems.
In this case you can use teamviewer_11.0.xxxxx_i386.deb instead.
For multiarch systems:
In case you get the error wrong architecture i386 you have to execute the following command lines as an administrator:
dpkg --add-architecture i386 apt-get update
Source:
Previous versions:

George Udosen
- 36,677
sudo apt-get install -f
– George Udosen Jan 01 '17 at 17:20