AnyDesk, a renowned remote desktop software, offers seamless connectivity solutions for those looking to install it on Rocky Linux 9 or the older stable Enterprise Linux release of Rocky Linux 8. This software enables users to effortlessly access and control remote computers, making it an invaluable tool for IT professionals, support teams, or individuals who need to access their systems from different locations.
Notable Features of AnyDesk:
- High Performance: AnyDesk is designed for swift and smooth remote access, even in bandwidth-limited scenarios.
- Secure Connection: With TLS 1.2 encryption and RSA 2048 asymmetric key exchange, AnyDesk ensures your connections remain secure and private.
- Cross-Platform: AnyDesk is available for many operating systems, ensuring compatibility regardless of your device.
- User-Friendly Interface: Its intuitive design ensures that users can quickly establish and manage remote connections irrespective of their technical proficiency.
For those who frequently assist others with technical issues or need to access their workstations remotely, AnyDesk is a game-changer. Its robust performance and top-notch security features ensure a hassle-free remote desktop experience.
This guide is tailored to guide you through the steps to install AnyDesk on Rocky Linux using the command line terminal. Whether you’re using Rocky Linux 9 or the older stable release of Rocky Linux 8, the instructions provided will ensure a smooth installation process.
Table of Contents
Update Rocky Linux System Packages Before AnyDesk Installation
Before proceeding with the tutorial, ensuring your system is up-to-date with all existing packages is good.
sudo dnf upgrade --refresh
Install AnyDesk on Rocky Linux 9 or 8 via DNF
Import AnyDesk RPM
Before proceeding further, you must copy and paste the following command in your terminal, creating the AnyDesk repository file under /etc/yum.repos.d/ directory.
AMD64 (64-bit) users:
sudo tee /etc/yum.repos.d/anydesk.repo<<EOF
[anydesk]
name=AnyDesk Rocky Linux
baseurl=http://rpm.anydesk.com/centos/x86_64/
gpgcheck=1
repo_gpgcheck=1
gpgkey=https://keys.anydesk.com/repos/RPM-GPG-KEY
EOF
Alternatively, you can verify the repository was added using the dnf repolist command.
dnf repolist | grep anydesk
Example output:
[joshua@rocky-linux ~]$ dnf repolist | grep anydesk
anydesk AnyDesk Rocky Linux
Install AnyDesk on Rocky Linux 9 or 8
Finally, install AnyDesk with the following command.
sudo dnf install anydesk -y
Optionally, you can check the version installed using the following command.
anydesk --version
Example output:
[joshua@rocky-linux ~]$ anydesk --version
6.2.1[
Launch AnyDesk on Rocky Linux 9 or 8
Launching can be done in a few ways now that you have the software installed.
Using the command line terminal, you can open it quickly by using the following command.
anydesk
Also, while in the terminal, you can grab your AnyDesk ID using the following command.
anydesk --get-id
Then, you can connect to other computers or remote systems using the ID in a terminal command.
anydesk <AnyDesk ID>
The best way to use AnyDesk for desktop users who prefer not to use the command line terminal is to open the GUI of the application by following the path:
Activities > Show Applications > AnyDesk.
Once open, you can use AnyDesk by connecting to a remote PC and getting its address.
Tips on Getting Started with AnyDesk on Rocky Linux 9 or 8
Now that you have installed AnyDesk on Rocky Linux, diving into new software can sometimes be overwhelming for first-time users. To ensure a smooth experience, here are some essential tips and tricks for Rocky Linux users to get the most out of AnyDesk.
General Tips with AnyDesk on Rocky Linux
- Stay Updated: Always ensure that you’re running the latest version of AnyDesk. Regular updates not only bring new features but also patch potential security vulnerabilities.
- Secure Your Sessions: Always use strong, unique passwords for unattended access. This ensures that only authorized users can connect to your machine.
- Connection Quality: If you’re experiencing lag or poor connection quality, consider adjusting the display quality from the settings. Lowering the quality can improve performance on slower connections.
Customizations with AnyDesk on Rocky Linux
- Custom Alias: Instead of the default numeric ID, create a custom alias for easier recognition and access.
- Adjust Sound: If you don’t need to transmit sound during a session, you can disable it from the audio settings. This can sometimes improve connection speed.
- Display Preferences: Tailor the display settings to your liking. Using a multi-monitor setup, you can adjust the resolution or choose which monitor to display.
Other Tips with AnyDesk on Rocky Linux
- Keyboard Shortcuts: Familiarize yourself with AnyDesk’s keyboard shortcuts. They can significantly speed up your workflow. For instance,
Ctrl+Alt+Shift+F
toggles fullscreen mode. - File Transfer: Use the built-in file transfer feature to quickly send and receive files during a session. Drag and drop the files into the AnyDesk window.
- Session Recording: You can record your sessions for training or auditing purposes. Ensure you have the consent of all parties involved before recording.
# To check your AnyDesk version on Linux:
anydesk --version
Remember, the key to mastering any software is consistent practice and exploration. As you spend more time with AnyDesk on Rocky Linux, you’ll discover more features and shortcuts to enhance your remote desktop experience. Happy computing!
Additional AnyDesk Commands with Rocky Linux 9 or 8
Update AnyDesk on Rocky Linux 9 or 8
The software should update itself with your system packages for desktop users using the DNF package manager. Use the following command in your terminal for users who want to check manually.
sudo dnf update --refresh
Remove AnyDesk From Rocky Linux 9 or 8
When you no longer want the video conference software installed on your system, use the following command to remove it.
sudo dnf autoremove anydesk
Remove the repository if you plan not to re-install AnyDesk again.
sudo rm /etc/yum.repos.d/anydesk.repo
Conclusion
In the tutorial, you have learned how to install AnyDesk on Rocky Linux EL9 or EL8 using the official repository so that you will have the latest version installed at all times. Overall, AnyDesk does work well with Enterprise Linux distributions, given they are popular in workplaces and scenarios where AnyDesk shines, so it should work well.