Categories: TutorialsUbuntu

How to Install Team Viewer on Ubuntu 24.04

There are numerous ways to access a system remotely, as multiple tools allow accessing the system GUI remotely. Remote access serves various purposes, including fixing bugs, monitoring tasks, or helping a friend or colleague. Team Viewer is one of the best connectivity platforms that provides real-time collaboration, text chat, voice/video conferencing, and session recording. To install Team Viewer on Ubuntu 24.04 there are different ways to be explained in this guide.

Outline:

How to Install Team Viewer on Ubuntu 24.04

TeamViewer provides an easy-to-use interface that requires no configuration and comes with full encryption and unique passwords, making the session more secure. Furthermore, through Team Viewer you can share files or documents, to install Team Viewer on Ubuntu 24.04 there are two ways:

1: Through Team Viewer Repository

Repositories are the locations where the data or the installation file for the respective application is stored. In the case of TeamViewer, the apt package manager repository does not have team viewer data so to install it through apt you need to add its repository. To add the repository successfully first you have to add its GPG key so that it can be validated from the official source:

curl -fSsL https://linux.teamviewer.com/pubkey/currentkey.asc | sudo gpg –dearmor | sudo tee /usr/share/keyrings/teamview.gpg > /dev/null

Now add the repository link in the sources’ directory after validating it using the GPG key. After ward update the packages list for apt to successfully add the TeamViewer repository:

echo “deb [arch=amd64 signed-by=/usr/share/keyrings/teamview.gpg] http://linux.teamviewer.com/deb stable main” | sudo tee /etc/apt/sources.list.d/teamviewer.list

Install TeamViewer using the Ubuntu default package installer by executing:

sudo apt install teamviewer

Now you can launch it either using the application menu or by executing:

teamviewer

2: Through Deb File

Another way to install TeamViewer is by downloading its deb file from its official website. First, navigate to the download page select the Linux distribution, and then opt for the suitable deb file based on system specifications:

Alternatively, you can download the deb file by copying the download link of the desired file and using the wget utility:

wget https://download.teamviewer.com/download/linux/teamviewer_amd64.deb

Now install TeamViewer on Ubuntu via its deb file by using the apt package manager:

sudo apt install ./teamviewer_amd64.deb

To verify the installation, check the version of TeamViewer installed by running:

teamviewer –version

Note: Here I have installed the client version, so for hosting the session you have to install the host version and for that select the deb file for the host version:

The installation process for it will be the same as for the client version. Further, TeamViewer also comes with a quick support version that doesn’t require any installation all you have to just download and extract the tar file.

How to Remove Team Viewer From Ubuntu 24.04

The basic command for removing TeamViewer is the same for both methods, either using the deb file or repository. So to remove TeamViewer from Ubuntu 24 execute:

sudo apt remove –autoremove teamviewer

Now in the case of using the repository for installation to have the complete removal of TeamViewer, first remove the GPG key saved in the keyrings directory:

sudo rm /usr/share/keyrings/teamview.gpg

Next, remove the TeamViewer repository from the sources directory by executing:

sudo rm /etc/apt/sources.list.d/teamviewer.list

Conclusion

TeamViewer on the newly released Ubuntu 24.04 can be installed in two ways, which include using the official repository and deb file from its official website. The best way to get it installed is by using the deb file, as repositories get deprecated with time and also the deb file usually has the latest version.

Furthermore, using the deb file you have to separately install the client and host versions. There is also a quick support version that is pre-installed and to use it simply download and extract the Tar file available on the official site.

Ubuntu Server Admin

Recent Posts

Ubuntu Weekly Newsletter Issue 878

Welcome to the Ubuntu Weekly Newsletter, Issue 878 for the week of February 2 –…

9 hours ago

How your feedback shapes the way we support open source software

At Canonical, we firmly believe that delivering an outstanding, customer-centric support experience is impossible without…

15 hours ago

How To Install osTicket v1.14 On Ubuntu 20.04

I want to share how to install osTicket v1.14 for Ubuntu 20.04 server. osTicket written…

2 days ago

How To Install WordPress On Ubuntu 20.04

Now I want to share how to install WordPress on ubuntu 20.04 server. WordPress is…

2 days ago

How To Install DNS Server (Bind9) On Ubuntu 20.04

Now I want to share the DNS server installation process on your Ubuntu 20.04 server.…

2 days ago

How To Install Team Viewer Into Ubuntu 16.04 Gnome Desktop

Teamviewer is remote system as your pc control. You can use various purposes like windows,…

2 days ago