Install AnyDesk on Ubuntu 22.04 LTS Jammy via Command terminal

AnyDesk is an alternative to Teamviewer kind of application that enables the users to establish a connection for accessing remote Dekstop or Laptop via the Internet. Just like TeamViewer, it is also free for personal usage while commercial users need to buy licenses. Apart from Linux, AnyDesk is also available for Windows, macOS, Android, iOS, FreeBSD, Raspberry Pi, and Chrome OS. Here we will see how to install AnyDesk on Ubuntu 22.04 LTS Jammy JellyFish using its repository and command terminal.

Steps to install Anydesk in Ubuntu 22.04 Jammy Jellyfish

The commands are given here to download and set up AnyDesk were executed on Ubuntu 22.04 LTS, however, users can use them for their other Ubuntu versions including the Linux based on it such as Linux Mint.

1. Integrate GPG Key 

To check the authenticity of the package we download from any repository, the system needs a key used to sign them. Hence the same goes for AnyDesk as well. Before adding its repo, let’s add the following key to your Ubuntu 22.04 system.

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

 

3. Add AnyDesk Repository in Ubuntu 22.04 

Those who don’t want to add the AnyDesk repository can download the binary from its official website, however, to make the article purely command-line based, we are using its official repository.

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

 

4. Update Apt Repository cache 

To make the system aware of the newly added repository and its packages, run the system update command which will refresh the repo cache.

sudo apt update

 

5. Command to Install AnyDesk on Ubuntu 22.04 

Finally, everything is ready, just issue the below single command in your Ubuntu 22.04 Terminal to download and install AnyDesk.

sudo apt install anydesk

 

6. Run AnyDesk

Go to the Application launcher, search and click on the AnyDesk icon, and soon it will start for you to get remote access to other computers using the same application.

Note: If after installing AnyDesk is not running or you get an error: 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 solve it:

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

 

7. Uninstall AnyDesk from Ubuntu

In case, you don’t want to run AnyDesk remote desktop application on your Ubuntu computer then here is the command to uninstall it and remove its repository.

sudo apt remove anydesk
sudo rm /etc/apt/sources.list.d/anydesk-stable.list
Next Post Previous Post
No Comment
Add Comment
comment url