kibana

Install ELK Stack on Ubuntu 20.04

Welcome to our guide on how to install ELK Stack on Ubuntu 20.04. ELK, currently known as Elastic Stack, is the acronym for open source

Install MySQL 8 on Debian 9

This guide will demonstrate how to install MySQL 8 on Debian 9. Install MySQL 8 on Debian 9 To install MySQL 8 on Debian 9,

upgrade single package ubuntu

Upgrade a Single package on Ubuntu

Follow through this guide to learn how to upgrade a single package on Ubuntu. Upgrading a Single package on Ubuntu Ubuntu and other Debian derivatives

webmin

Install Webmin on Debian 11

Follow through this tutorial to learn how to install Webmin on Debian 11. Webmin is a web based control panel that allows system administrators to manage

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