Rate this post

Last Updated on August 26, 2022 by Vikash Ekka

How to install Anydesk on Ubuntu 20.04 LTS Jammy via Command terminal | vetechno
How to install Anydesk on Ubuntu 20.04 LTS Jammy | vetechno

In this blog, we are going to install latest version of Anydesk on Latest Ubuntu Operating system that is Ubuntu 22.04 LTS Jammy via Terminal. 

AnyDesk is a cross-platform, multi-device remote desktop software that allows you to securely connect fast remote desktop connections over the internet. It is available for all platforms such as Linux-based systems, windows, mac, and android.

With this tool, you can remotely access other computers using AnyDesk or let someone else remotely access your computer / system. You have to accept the incoming connection and/or provide a password for a secure connection.

There are multiple ways to install AnyDesk on Ubuntu. The easiest way to install AnyDesk is to add its software repository to Ubuntu and install from there.

How to install AnyDesk from repository on Ubuntu 22.04 Jammy Jellyfish

Following are the given below commands to download and set up Anydesk on Ubuntu 22.04 LTS 

Step1. Download the GPG key of AnyDesk repository and add it to your system’s trusted keys.

wget -qO - https://keys.anydesk.com/repos/DEB-GPG-KEY | sudo apt-key add -

Step2. Add AnyDesk Repository in Ubuntu 22.04 

The next step is to add the AnyDesk repository to your system’s repository sources:

echo deb http://deb.anydesk.com/ all main | sudo tee /etc/apt/sources.list.d/anydesk-stable.list

Step3. Update Apt Repository cache 

Run the below command to refresh the repo cache . It will check the  availability of new applications through the newly added repository.

sudo apt update

Step4. And now, you can install AnyDesk on Ubuntu 22.04 

Below command will install the anydesk with an errors.

sudo apt install anydesk

Step5. Start AnyDesk Application

Also Read:

Fixed – loading shared libraries: libpangox-1.0.so.0: Anydesk on Ubuntu 22.04

Ubuntu 22.04 LTS Jammy Jellyfish is a latest version so you may face some issue while installing AnyDesk . Below is the common error where many users reported when they are installing Anydesk.

Error is looks like

/usr/bin/anydesk: error while loading shared libraries: libpangox-1.0.so.0: cannot open shared object file: No such file or directory
anydesk.service: Failed with result ‘exit-code’.

 

While loading shared libraries: libpangox-1.0.so.0: cannot open shared object file: No such file or directory
While loading shared libraries: libpangox-1.0.so.0: cannot open shared object file: No such file or directory

Then use the given command to resolve it:

Step1. Download libpangox-1.0 package

wget http://ftp.us.debian.org/debian/pool/main/p/pangox-compat/libpangox-1.0-0_0.0.2-5.1_amd64.deb

Step2. Now install libpangox-1.0 package on Ubuntu 22.04

sudo apt install ./libpangox-1.0-0_0.0.2-5.1_amd64.deb

Step3. Check the Anydesk Service

sudo service anydesk status                 # for status check
sudo service anydesk stop                    # for stop service
sudo service anydesk start                   # for start service

How to install AnyDesk from deb package.

Step 1. Update the Repository

Run the below command to refresh the repo cache . It will check the  availability of new applications through the newly added repository.

sudo apt update

Step.2 Download the below anydesk .deb file from official page via terminal

 wget command will help you to download the anydesk .deb file
wget https://download.anydesk.com/linux/anydesk_6.1.1-1_amd64.deb

Step3. Now time to install anydesk on system

sudo dpkg -i anydesk_6.1.1-1_amd64.deb

Step4. Launch Anydesk

How to remove or uninstall Anydesk from Ubuntu

Step1. Enter the below command to remove anydesk application from your system

sudo apt remove anydesk
sudo apt purge anydesk

Step2. Remove from source list

sudo rm /etc/apt/sources.list.d/anydesk-stable.list

Conclusion

Congratulation you have successfully install and removed the anydesk from latest Ubuntu 22.04 LTS. Please let us know if you are facing any issue in the below comment box. We will happy to assist you.

Happy learning !!!

By Vikash Ekka

Hi All, My name is Vikash Ekka from India. I’m the founder and tech editor of https://www.vetechno.in. I have completed my Graduation in BCA. I love to write technical articles like Windows, Linux & MAC Tutorials, Tips, Tricks, How To fix, Tutorials About Ethical Hacking & Cyber Security Guide, and Software Review. Currently, I have been working as an IT professional since 2018.

Leave a Reply

Your email address will not be published. Required fields are marked *