Please suggest a command to install AnyDesk in Ubuntu 20.04.
Asked
Active
Viewed 4,695 times
2 Answers
1
You can download installer file from their website. it's the easiest way, or do it from package manager this will be appreciate , because of update version.
step one update system: $ sudo apt update
step two add their public key: $ wget -qO - https://keys.anydesk.com/repos/DEB-GPG-KEY | sudo apt-key add -
step three enable their repository: $ echo "deb http://deb.anydesk.com/ all main" | sudo tee /etc/apt/sources.list.d/anydesk-stable.list
finally isntall anydesk: $ sudo apt install anydesk
Hossein
- 21
0
Follow these steps:
# Add the AnyDesk GPG key
sudo apt update
sudo apt install ca-certificates curl
sudo install -m 0755 -d /etc/apt/keyrings
sudo curl -fsSL https://keys.anydesk.com/repos/DEB-GPG-KEY -o /etc/apt/keyrings/keys.anydesk.com.asc
sudo chmod a+r /etc/apt/keyrings/keys.anydesk.com.asc
Add the AnyDesk apt repository
echo "deb [signed-by=/etc/apt/keyrings/keys.anydesk.com.asc] http://deb.anydesk.com all main" | sudo tee /etc/apt/sources.list.d/anydesk-stable.list > /dev/null
Update apt caches and install the AnyDesk client
sudo apt update
sudo apt install anydesk
karel
- 122,292
- 133
- 301
- 332