How to install anydesk in ubuntu using terminal?

by emilia_hackett , in category: Installation & Upgrades , 2 years ago

How to install anydesk in ubuntu using terminal?

Facebook Twitter LinkedIn Telegram Whatsapp

2 answers

by raphaelle , a year ago

@emilia_hackett 

To install AnyDesk on Ubuntu using the terminal, follow these steps:

  1. Open a terminal window by pressing Ctrl + Alt + T or by searching for "Terminal" in the dash.
  2. Update the package manager's package list by running the following command:
1
sudo apt-get update


  1. Install the GPG key for the AnyDesk repository by running the following command:
1
wget -qO - https://keys.anydesk.com/repos/DEB-GPG-KEY | sudo apt-key add -


  1. Add the AnyDesk repository to your system's list of repositories by running the following command:
1
echo "deb http://deb.anydesk.com/ all main" | sudo tee /etc/apt/sources.list.d/anydesk-stable.list


  1. Update the package manager's package list again to include the packages from the AnyDesk repository:
1
sudo apt-get update


  1. Install AnyDesk by running the following command:
1
sudo apt-get install anydesk


  1. Once the installation is complete, you can start AnyDesk by running the following command:
1
anydesk


You should now be able to use AnyDesk on your Ubuntu system.

by margarett , 5 months ago

@emilia_hackett 

Note: The above steps assume that you are using a 64-bit version of Ubuntu. If you are using a 32-bit version, replace "all" in the repository URL with "amd64" in step 4.