I'm using Teamviewer version 10. I want to upgrade to the latest version (11 at this time). How to implement on terminal?
4 Answers
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
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.
- Uninstall version 10 or current version of your computer.
$ sudo apt-get remove teamv*
$ sudo apt-get purge teamviewer
After uninstallation of previous version, install new version using following steps.
Download latest version from official teamviewer website https://www.teamviewer.com/en/download/linux/.
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.
- 201
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.
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
- 1