Most Popular

More

Monitoring

More
check Docker container RAM and CPU usage

How to Check Docker Container RAM and CPU Usage

Kifarunix

How to check Docker CPU and memory usage? In this tutorial, you will learn how …

Monitor Linux Hosts using Nagios check_by_ssh Plugin

Monitor Linux Hosts using Nagios check_by_ssh Plugin

koromicha

Welcome to our tutorial on how to monitor Linux Hosts using Nagios check_by_ssh plugin. This …

Install Arkime (Moloch) Full Packet Capture tool on Ubuntu

Install Arkime Full Packet Capture tool on Ubuntu

gen_too

Welcome to our tutorial on how to install Arkime (Moloch) Full Packet Capture tool on …

Configure Nagios Email Notification Using Gmail

Configure Nagios Email Notification Using Gmail

koromicha

This guide will take you through how to configure Nagios Email Notification using Gmail. Nagios …

Install and Setup NetData on Ubuntu 20.04/18.04

koromicha

In this tutorial, you will learn how to install and setup NetData on Ubuntu 20.04/18.04. …

Storage

More
Provisioning Kubernetes Persistent Volumes with CephFS CSI Driver

Step-by-Step: Provisioning Kubernetes Persistent Volumes with CephFS CSI Driver

In this guide, we’ll walk you through the process of provisioning Kubernetes Persistent Volumes with …

integrate openstack with ceph storage cluster

Part 3: Integrate OpenStack with Ceph Storage Cluster

This is the part 3 of our guide on how to integrate OpenStack with Ceph …

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