Most Popular

More

Monitoring

More
install sensu agent ubuntu/debian

Install Sensu Agent on Ubuntu/Debian

koromicha

This guide will take you through how to install Sensu agent on Ubuntu/Debian systems. We …

Install and Setup Nagios

Install Nagios Server on CentOS 8

koromicha

In this guide, you will learn how to install Nagios Server on CentOS 8. Nagios provides …

Install Wazuh Agent on RHEL

How to Install Wazuh Agent on RHEL 8/9/10

Kifarunix

In this tutorial, you will learn how to install Wazuh agent on RHEL 8/9/10. Our …

Process and Visualize ModSecurity Logs on ELK Stack

Process and Visualize ModSecurity Logs on ELK Stack

gen_too

In this tutorial, you will learn how to process and visualize ModSecurity Logs on ELK …

Install Grafana on Ubuntu

Install Grafana Data Visualization Tool on Ubuntu 18.04

koromicha

In this guide, we are going to learn how to install Grafana Data Visualization Tool …

Storage

More

Install and Configure BackupPC as a Backup Server on Ubuntu 18.04

In this guide, we will learn how to install and configure BackupPC as a backup …

shrink KVM virtual machine LVM partitioned disk

Shrink KVM Virtual Machine LVM Partitioned Disk

Is it possible to shrink KVM virtual machine LVM partitioned disk? Well, to be honest, …

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); }); }); }); });