Ubuntu

How to install Anydesk on ubuntu 20.04

Anydesk is the most popular remote desktop connectivity tool. It is available for all platforms like Windows, MAC, linux based systems and even for mobile devices. In this article, We will see how to install Anydesk on ubuntu 20.04 desktop.

Anydesk has many features like file transfer, TCP tunneling, remote sound, clipboard, remote printing and even more. Therefore, It is mostly used by IT support personal to provide remote assistant.
Anydesk is powerful and stable software which has both paid and free version. So for personal use, we can use this software for free.

Install Anydesk on ubuntu 20.04

There are many ways to install Anydesk on ubuntu 20.04. We will follow one of the below methods.
1) Using repository
2) Manual install

Using repository

Follow the steps as root user to install Anydesk from the repository.
Step 1. Add Anydesk repository key to the Trusted software providers list.
wget -qO - https://keys.anydesk.com/repos/DEB-GPG-KEY | apt-key add -
Step 2. Now add the repository to the sources list.
Below command will put the repository entry in a new file under /etc/apt/sources.list.d/ directory.
* Execute as single command
echo "deb http://deb.anydesk.com/ all main" > /etc/apt/sources.list.d/anydesk-stable.list
Step 3. Update the apt cache by running below command.
apt update
Step 4. Now install the software. This command will download and install Anydesk from repository along with dependencies.
apt install anydesk
Step 5. Finally, You can launch by typing Anydesk in the application launcher.

Manual install

This method same is similar to previous method. However, we can download the latest software from Anydesk site and install locally.
Step 1. Download the latest Anydesk software from the following link https://anydesk.com/en/downloads/linux using web browser.
[OR]
Use the following command to download latest software.
* Execute as single command
wget $(wget -q -O anydesk https://anydesk.com/en/downloads/linux && grep -Eo "(http|https)://[a-zA-Z0-9./?=_-]*amd64.deb" anydesk | head -1 ) && rm anydesk
Step 2. After that go to the downloaded directory and check the file.
user@krizna:~/Downloads$ ls -l
anydesk_5.5.5-1_amd64.deb
Give execute permission so that we can install the software.
chmod +x anydesk_5.5.5-1_amd64.deb
Step 3. Now install the downloaded software.
This command will install the downloaded package. In addition, It will install the dependencies needed for the software.
sudo apt install ./anydesk_5.5.5-1_amd64.deb
Step 4. Finally, You can launch the application by typing Anydesk in the application launcher.

See also
» How to setup VNC server on centos 8 / RHEL 8
» How to install TeamViewer on ubuntu 20.04

Disqus Comments Loading...
Share
Published by
krizna

Recent Posts

How to install Visual Studio Code on ubuntu 20.04

Visual Studio Code is a popular code editor which is lightweight and cross platform application.…

4 years ago

How to install MySQL workbench on ubuntu 20.04

MySQL workbench is a GUI tool for managing MySQL database system. It is used by…

4 years ago

How to install Android Studio on ubuntu 20.04

Android Studio is a popular development software used especially for developing android applications. It is…

4 years ago

How to install google chrome on ubuntu 20.04

Google chrome is a most popular web browser developed by google. It was developed to…

4 years ago

How to install Zoom on ubuntu 20.04

Zoom is a popular video conferencing software. It is commonly used for conducting online meetings,…

4 years ago

How to install TeamViewer on ubuntu 20.04

TeamViewer is a popular application for desktop sharing and remote control. It is available for…

4 years ago