Install TeamViewer on CentOS 8 - Step by Step process to get it done ?

TeamViewer is an all-in-one solution that allows you to connect and assist multiple systems remotely over the internet, share desktop, attend online meetings web conferencing, and share files among systems. 

TeamViewer is supported on a large number of OS platforms including Linux, Windows, MacOS, Chrome OS, Android, and so on. 

TeamViewer offers its free version for personal and non-commercial use while you have to purchase a license for business and commercial use.

Here at LinuxAPT, as part of our Server Management Services, we regularly help our Customers to perform Software Installation task on CentOS system.

In this context, we shall look into how to install TeamViewer on CentOS.


How to install TeamViewer on CentOS ?

CentOS official repository does not include the TeamViewer package. We will be downloading and installing it from the TeamViewer website. 

Here are few simple steps you should follow in order to install TeamViewer on your CentOS system.


1. Download TeamViewer

Our first step will be to download TeamViewer from the official website

i. Access the following link in any web browser and download the .rpm package (for CentOS) x86_64bit or x86_32bit based on your system architecture:

https://www.teamviewer.com/en/download/linux/

ii. Then you will be prompted to either open or save the file. Select the Save File option and click OK.

iii. The file will be saved to the Downloads directory.

Alternatively, we can download TeamViewer .rpm package right from the command line using the wget command. 

To do so, open the Terminal in your CentOS system and issue the following command to download TeamViewer:

$ wget https://dl.teamviewer.com/download/linux/version_15x/teamviewer_15.13.6.x86_64.rpm

It will save the file to your current working directory.


2. Install TeamViewer

Now, we can install TeamViewer on our system.

Before proceeding towards installation, first ensure you are in the same folder which contains the TeamViewer .rpm package.

i. Then in order to install TeamViewer, issue the following command in Terminal:

$ sudo yum install ./teamviewer_15.13.6.x86_64.rpm

If you are prompted to enter the sudo password, then type it and press Enter.

ii. Then it will prompt you with y/n choice. Hit y if you wish to carry on with the installation. After which it will install TeamViewer on your system.

iii. To verify the installation and check the installed version of TeamViewer, issue the following command in Terminal:

$ teamviewer --version

The output will verify that the TeamViewer has been installed on our system along with its version.

You can also check the status of TeamViewer daemon by running the following command in Terminal:

$ teamviewer daemon status

The active (running) status in the output shows the TeamViewer is working fine without any issues.


3. How to Launch TeamViewer on CentOS ?

After the TeamViewer is installed, you are ready to use it on your CentOS system. 

i. To launch TeamViewer, simply issue the following command in Terminal:

$ teamviewer

ii. You can also launch TeamViewer from the Applications menu. Hit the super key and type teamviewer

iii. When the icon for TeamViewer appears, click it to launch the TeamViewer application.

iv. When the TeamViewer is launched for the first time, it shows the following End-User License Agreement. Click Accept License Agreement in order to use the TeamViewer on your system.

Now you will see the following default view of TeamViewer on your screen.


How to update TeamViewer on CentOS ?

During the installation of TeamViewer, a repository and its associated key are also added to your system which enables the updates to be available and installed along with the system updates. All you need is to install those updates when prompted by the system.

You can view the TeamViewer repository and its associated key using the following command in Terminal:

$ cat /etc/yum.repos.d/teamviewer.repo


How to uninstall TeamViewer from CentOS system ?

If you no longer want to use TeamViewer on your system and want to remove it, you can easily do so using the following command in Terminal:

$ sudo yum remove teamviewer.x86_64

If you are prompted to enter the sudo password, then type it and press Enter

Then it will prompt you with y/n choice. Hit y if you wish to proceed with the uninstallation.

After which it remove TeamViewer from your system.


[Need urgent support in fixing missing packages on CentOS system ? We are available to help you today. ]

This article covers how to install TeamViewer on the CentOS system. Additionally, you will learn how to install, launch, and update TeamViewer on CentOS.

We have also covered how to uninstall TeamViewer in case you no longer need it on your system. 

For some more help regarding TeamViewer, run teamviewer help in Terminal.

TeamViewer is a Robust cross-platform solution that provides secure remote access, remote control, and remote support solution across devices. 

The data traffic between devices are encrypted which makes the TeamViewer very secure. 

This software is available for “Linux, Windows, Mac, Chrome OS” and even for mobile devices like "iOS, Android, and so on".


To Install TeamViewer on CentOS 8:

1. Enable EPEL Repo on CentOS 8

You can install EPEL repo using the below command. This command will enable the repo if it is not already installed:

$ sudo yum install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -y

2. Now you can proceed further to install TeamViewer on CentOS 8:

$ sudo yum install teamviewer.x86_64.rpm -y

3. Once the package is installed you can start using team viewer:

$ teamviewer

Related Posts