CentOS

How to Install Anydesk on CentOS 8

Anydesk is the most commonly used desktop application for remote access to a system that can easily install on all Linux distributions. Using this application, you can provide smooth access to your system running Linux, Mac OS, and Windows. Anydesk has an attractive user-friendly interface and administrative tools through which you can easily manage the remote systems. We will show you in this article how to install the Anydesk application on the Linux system CentOS 8 through the command line method. Once this application installed on your system, you can easily access your team member or friend’s system.

Prerequisites

User need root or sudo rights to install Anydesk application on your system.

Installing AnyDesk on CentOS 8

You have two different methods to install the Anydesk application on your CentOS 8 system. First, you can install Anydesk using the official CentOS Yum repository with the RPM packages. Second, manually download the rpm package of Anydesk for CentOS 8 and then install it. However, you need manually update the Anydesk application to use the updated version. Let us start the Anydesk installation. Open the terminal on CentOS 8 system. Click on the activities section that is available on the top left corner of your CentOS 8 desktop. Then, click on the ‘Terminal’ icon from the left sidebar tray. Now, follow the following steps to install the Anydesk on CentOS 8 system:

Step 1: Add AnyDesk repository

First, add the Anydesk application repository to your system by running the below-mentioned command:

$ cat > /etc/yum.repos.d/AnyDesk-CentOS.repo << "EOF"
[anydesk]

name=AnyDesk CentOS - stable

baseurl=http://rpm.anydesk.com/centos/$basearch/

gpgcheck=1

repo_gpgcheck=1

gpgkey=https://keys.anydesk.com/repos/RPM-GPG-KEY

EOF

Step 2: Update repository

Once the Anydesk repository is included, update the yum repository by using the following terminal command:

$ sudo yum update

Step 3: Install AnyDesk application

Once the system is updated successfully, install the AnyDesk software on your CentOS 8 system using the dnf or yum package manager. Run the following commands to install the AnyDesk application on your system.

Run the below-shared command on the terminal.

$ sudo dnf makecache

After executing the above command, the GPG key of the Anydesk application will be imported into your system. Press the ‘y’ key and then hit ‘Enter’ to continue the running process. In the end, the ‘Metadata cache created’ message will display on the terminal.

After that, you need to install the redhat-lsb core packages on your system by executing the following command:

$ sudo dnf install -y redhat-lsb-core

The above packages installation process will take time to install all necessary packages on your system.

Now, install the AnyDesk software along with all required packages by running the following command:

$ sudo dnf install anydesk

Again, press the ‘y’ key and then ‘Enter’ to import the GPG key, and once again press ‘y’ to start the Anydesk installation on your CentOS 8 system.

Step 4: Verify the AnyDesk installation

Verify the AnyDesk application installation by displaying the Installed version by using the following command:

$ rpm -qi anydesk

Step 5: Launch AnyDesk application on CentOS 8

The services of the AnyDesk application automatically start after the successful installation. Check the status of the running service by using the following command:

$ systemctl status anydesk.service

Make sure that services of Anydesk application should be enabled on your system. Either check the service is enabled or not by using the below-mentioned command:

$ systemctl is-enabled anydesk.service

Open the AnyDesk application on your system by using the desktop graphical interface. Click on the top ‘Activities’ section and then type AnyDesk in the search bar. The following result will display on the desktop:

Click on the AnyDesk application icon to launch on your system. The following Anydesk software window will show on the system:

You can also launch the Anydesk application using the terminal, write the ‘AnyDesk’ on the terminal to launch the Anydesk application through the terminal.

Conclusion

From this article, we have seen how to install the AnyDesk application on CentOS 8 system using the command-line approach. Different commands we have executed on the terminal to install remote desktop applications along with all dependencies. If this application is installed on your system, you can easily remote your system with friends. So, enjoy the Anydesk application benefits on your CentOS 8 system.

Similar Posts