Commands;
1. sudo apt update
2. wget -qO - https://keys.anydesk.com/repos/DEB-GPG-KEY | sudo apt-key add -
3. echo "deb http://deb.anydesk.com/ all main" | sudo tee /etc/apt/sources.list.d/anydesk-stable.list
4. sudo apt install anydesk
Installing AnyDesk on Ubuntu is a straightforward process. You have a few options, but the most common and recommended methods are either using the graphical user interface (GUI) or the terminal.
Method 1: Installation using the GUI (Easiest for most users)
* Go to the AnyDesk website: Open your web browser and navigate to the official AnyDesk download page for Linux.
* Download the package: Click on the "Download Now" button and select the .deb file for Debian/Ubuntu. This is the correct package format for Ubuntu.
* Find the downloaded file: Once the download is complete, go to your "Downloads" directory or wherever you saved the file.
* Install with the Software Center: Right-click on the .deb file and choose "Open With Software Install" or "Open with Other Application" and select "Software."
* Click "Install": The Ubuntu Software Center will open, displaying information about AnyDesk. Click the "Install" button and enter your password when prompted.
* Launch AnyDesk: After the installation is finished, you can find AnyDesk in your applications menu and launch it.
Method 2: Installation using the Terminal
This method is useful for a more hands-on approach and for ensuring you get the latest version directly from the AnyDesk repository.
* Update your system: Open a terminal (Ctrl+Alt+T) and run the following command to make sure your package list is up-to-date:
sudo apt update
* Add the AnyDesk GPG key: This step adds the key to your system, which allows it to trust the software from the AnyDesk repository.
wget -qO - https://keys.anydesk.com/repos/DEB-GPG-KEY | sudo apt-key add -
Note: You might see a warning about apt-key being deprecated, which is a known issue but is safe to ignore for this purpose.
* Add the AnyDesk repository: This command adds the AnyDesk repository to your system's sources list.
echo "deb http://deb.anydesk.com/ all main" | sudo tee /etc/apt/sources.list.d/anydesk-stable.list
* Update the package list again: Now that you've added the new repository, you need to update your package list so your system knows about the new software.
sudo apt update
* Install AnyDesk: Finally, install AnyDesk using the apt package manager.
sudo apt install anydesk
* Launch AnyDesk: You can launch the application from the terminal with the command:
anydesk
Or, you can find it in your applications menu.
Troubleshooting Dependency Issues
If you encounter dependency errors when using the .deb file method, you can fix them by running this command in the terminal after the initial installation attempt:
sudo apt --fix-broken install
This command will automatically download and install any missing d
ependencies that AnyDesk requires.

0 comments:
Post a Comment