Pages

Install Teamviewer on Debian/Ubuntu from DEB repository

Teamviewer is a popular remote desktop access software. Often, Linux users install Teamviewer from .deb package. Users need to upgrade the software manually whenever new version arrives. Now Linux users can install Teamviewer by adding software repository. This method is convenient to keep the software new all time. Teamviewer update along with updating Linux operating system. This method can apply to install Teamviewer on Ubuntu and Debian. Following are the steps to add and install Teamviewer from DEB repository. Open a Terminal and apply the following commands for each purpose.

Add the repository address to the system (change editor name, here I am using Mousepad)

sudo mousepad /etc/apt/sources.list.d/teamviewer.list

Add software repository address in the file,

deb https://linux.teamviewer.com/deb stable main

Save and close the file.

Add the repository key,

sudo su

wget -O - https://download.teamviewer.com/download/linux/signature/TeamViewer2017.asc | apt-key add -

sudo apt update

sudo apt install teamviewer

The software will appear on Applications > Internet after the successful installation.

Reference

https://community.teamviewer.com/English/kb/articles/30666-how-to-update-teamviewer-on-linux-via-repository

Install Anydesk from DEB repository

AnyDesk is a remote desktop access software and offers a user-friendly interface. Traditionally, AnyDesk installs from the .deb package. Users need to upgrade the software manually whenever a new version arrives. Now, Linux users can install AnyDesk by adding a software repository. This method is convenient to keep the software new all the time. AnyDesk updates occur simultaneously with the updates to the Linux operating system. The following are the steps to add and install AnyDesk from the DEB repository.

Add the AnyDesk GPG key

Apply the following command one by one:

sudo apt update
sudo apt install ca-certificates curl apt-transport-https
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
Apply the following commands, one by one:

echo "deb [signed-by=/etc/apt/keyrings/keys.anydesk.com.asc] https://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

After the successful installation, the software will be found under Applications > Internet.

Reference

https://deb.anydesk.com/howto.html