1

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?

Haroon
  • 211
  • 3
  • 6
  • 23

1 Answers1

2

Steps to install version 11:

  1. Get version 11
  2. Install:
    • sudo dpkg -i teamviewer_11.0.xxxxx_i386.deb
  3. 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:

https://www.teamviewer.com/en/help/363-How-do-I-install-TeamViewer-on-my-Linux-distribution.aspx#grafischeInstallation

Previous versions:

https://www.teamviewer.com/en/download/previous-versions/

George Udosen
  • 36,677