Most Popular

More

Monitoring

More

Install Icinga Web 2 on Debian 10 Buster

koromicha

In this guide, we are going to learn how to install Icinga Web 2 on …

Install OSSEC HIDS Agent

Install OSSEC Agent on CentOS 8

koromicha

This guide presents a step-by-step tutorial on how to install OSSEC Agent on CentOS 8. …

Install Grafana Plugins Behind a Proxy server

Install Grafana Plugins Behind a Proxy server

koromicha

This is a quick guide on how to install Grafana plugins behind a proxy server. …

Monitor Docker Swarm Service Metrics using Grafana

Monitor Docker Swarm Service Metrics using Grafana

Kifarunix

How can I monitor Docker swarm service metrics? In this tutorial, you will learn how …

Monitor System Metrics with TICK Stack on Ubuntu 20.04

gen_too

In this tutorial, we are going to learn how to monitor system metrics with TICK …

Storage

More
Easily Install and Configure Samba File Server on Ubuntu 20.04

Easily Install and Configure Samba File Server on Ubuntu 20.04

In this tutorial, you will learn how to easily install and configure Samba file server …

install Couchbase Server on Ubuntu

Install Couchbase Server on Ubuntu 22.04/Ubuntu 20.04

In this tutorial, you will learn how to install Couchbase Server on Ubuntu 22.04/Ubuntu 20.04. …

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