install docker ce

Install and Use Docker CE on CentOS 8

Welcome to our guide on how to install and use docker ce on CentOS 8. Docker is a platform that enables developers and system administrators to build,

Install Webmin on CentOS 8

Want to administer your CentOS 8 system from web interface? Well, follow through this guide to learn how to install Webmin on CentOS 8. Webmin

Install phpLDAPadmin on Rocky Linux 8

Install phpLDAPadmin on CentOS 8

In this guide, we are going to learn how to install phpLDAPadmin on CentOS 8. phpLDAPadmin is web application written in PHP for administering LDAP

Install LAMP Stack on CentOS 8

This guide describes a step by step tutorial on how to install LAMP stack on CentOS 8. Installing LAMP Stack on CentOS 8 LAMP is

Install and Configure BackupPC on CentOS 8

In this guide, we are going learn how to install and configure BackupPC on CentOS 8. BackupPC is a high-performance enterprise-grade backup software suite with a web-based

document.addEventListener("DOMContentLoaded", function() { document.querySelectorAll(".scroll-box").forEach(function(box) { box.style.position = "relative"; // Needed for absolute positioning of button var button = document.createElement("button"); button.className = "copy-icon-btn"; button.setAttribute("aria-label", "Copy code"); button.innerHTML = ''; box.appendChild(button); button.addEventListener("click", function() { var text = box.innerText; navigator.clipboard.writeText(text).then(function() { button.querySelector("svg").setAttribute("fill", "#4CAF50"); setTimeout(function() { button.querySelector("svg").setAttribute("fill", "white"); }, 1500); }).catch(function(err) { console.error("Copy failed: ", err); }); }); }); });