35

I'm using Teamviewer version 10. I want to upgrade to the latest version (11 at this time). How to implement on terminal?

arxoft
  • 270
Lợi
  • 417

4 Answers4

50

Download it from their official website :

# 64 bits version
wget https://download.teamviewer.com/download/linux/teamviewer_amd64.deb

or the 32 bits version

wget http://download.teamviewer.com/download/teamviewer_i386.deb

or the Raspberry Pi version

wget https://download.teamviewer.com/download/linux/teamviewer-host_armhf.deb

Install it :

sudo dpkg -i teamviewer_*.deb

Install missing dependencies :

sudo apt-get -f install
arxoft
  • 270
hg8
  • 13,582
10

As you have version 10 or version 12 or current version. First you need to uninstall that version 10 or current installed version and install new version 11 or version 13.

  1. Uninstall version 10 or current version of your computer.

$ sudo apt-get remove teamv*

$ sudo apt-get purge teamviewer

  1. After uninstallation of previous version, install new version using following steps.

  2. Download latest version from official teamviewer website https://www.teamviewer.com/en/download/linux/.

  3. Go to the downloaded directory and run following command.

$ sudo dpkg -i teamviewer_****.deb

$ sudo apt-get -f install

This process will help you little bit.

Mehedi
  • 201
0

Download the version you want to update to, from teamviewer's official site. Then use the above sudo commands to install the new version. This will overwrite the older version, but will have some issues with overwriting log folders. So, better option is to remove the older version and install a new one.

0

Remove the older version & Go to Official TeamViewer Website & download the Debian Package of the teamviewer version, you want to install.

Then open terminal in the directory in which your package is downloaded.

sudo dpkg -i package_name

package_name is the name of the package you installed.

For installing the missing dependencies

sudo apt-get -f install
lawlug
  • 1