2

How can I download teamviewer on Ubuntu 24.04? I followed a tutorial but teamviewer does not open and does not present any error message

muru
  • 207,228

2 Answers2

4

For Ubuntu 24.04

  1. sudo apt install libminizip1 gdebi-core wget
  2. wget https://download.teamviewer.com/download/linux/teamviewer_amd64.deb
  3. sudo apt install ./teamviewer_amd64.deb
Brandon
  • 214
  • 1
  • 5
2

Install Gdebi with sudo apt install gdebi.

Now you can open the .deb package (download from https://download.teamviewer.com/download/linux/teamviewer_amd64.deb) with Gdebi to install it.


In case teamviewer does not run after installing, most likely that is a result of the recent changes in apparmor which is interfering with many apps. The workaround is to run the command sudo sysctl -w kernel.apparmor_restrict_unprivileged_userns=0 after every reboot.