------------------------------------------------------ How to install anydesk on Rhel 8 / Centos 8 ------------------------------------------------------ ----------------------------------- Remote Desktop application ----------------------------------- ---------------------------- Download the package ---------------------------- wget https://download.anydesk.com/linux/rhel7/anydesk-5.1.2-1.el7.x86_64.rpm ----------------------------------------- Install using yum, dnf or rpm -ivh ----------------------------------------- yum localinstall /dir/anydesk-5.1.2-1.el7.x86_64.rpm dnf localinstall anydesk-5.1.2-1.el7.x86_64.rpm rpm -ivh package_name ------------------------- Remove the package ------------------------- rpm -e package_name now run the command anydesk on terminal that's it.
How to install caching only DNS server in RedHat 8 / Centos 8 package name = bind service name = named port number = 53 rndc port = 953 rndc it uses only the loopback address, rndc is used to manage the name server. First install the required packages using yum or dnf: Yum install bind bind-utils -y Take the backup of named.conf before configuration: Cp -p /etc/named.conf /etc/named.conf.orig Information about bind “named” package: rpm -qi bind exploring files and directories of bind “named” server: rpm -ql bind Now configure dns server open the file “vim /etc/named.conf” and make changes: [root@itsummation ~]# vim /etc/named.conf // options { listen-on port 53 { localhost ; 192.168.56.12; }; ...
Comments
Post a Comment