Wednesday, April 5, 2023

How To Install Uninstall or Remove Anydesk on Oracle Linux 9

in This Tutorial you will Learn " How To Install Uninstall or Remove Anydesk on Oracle Linux 9  "
Anydesk is a Lightweight, secure, and fast remote desktop application distributed by Anydesk Software GmbH. Anydesk allows the System admins to access remote devices anywhere and at any time.
__________________________________________________________________________________________________________________________________
Server - Os:  Oracle Linux Server 9.0   64Bit      | IP -192.168.1.50        |Hostname - server.testbox.com
__________________________________________________________________________________________________________________________________
cat /etc/system-release ; hostname ; hostname -I ; dnf groupinstall "Development Tools" -y

sudo tee /etc/yum.repos.d/anydesk.repo<<EOF
[anydesk]
name=AnyDesk CentOS - stable
baseurl=http://rpm.anydesk.com/centos/8/x86_64/
gpgcheck=1
repo_gpgcheck=1
gpgkey=https://keys.anydesk.com/repos/RPM-GPG-KEY
EOF
sudo dnf update -y ; sudo dnf install anydesk -y


#2nd method using Binary
cd Downloads
ls
sudo dnf install ./anydesk-*.el8.x86_64.rpm


Uninstall or Remove AnyDesk – Oracle Linux
sudo dnf remove anydesk -y
sudo rm -r /etc/yum.repos.d/anydesk.repo
__________________________________________________________________________________________________________________________________

No comments:

Post a Comment