Easily Install MariaDB 10.5 on FreeBSD 12.1

In this tutorial, you will how to install MariaDB 10.5 on FreeBSD 12.1. “MariaDB 10.5 is the current stable series of MariaDB. It is an evolution of MariaDB 10.4 with

install processwire cms ubuntu

Install ProcessWire on Ubuntu 22.04

Follow through this guide to install ProcessWire on Ubuntu 22.04. ProcessWire is an opensource PHP based content management system and framework. Install ProcessWire on Ubuntu

Install Osquery on Linux

Install Osquery on Rocky Linux 8

In this guide, we are going to learn how to install osquery on Rocky Linux 8. Osquery is an opensource tool that queries an operating system as

gvm

Install GVM 21.04 on Rocky Linux 8

In this guide, you will learn how to install  GVM 21.04 on Rocky Linux 8. Greenbone Vulnerability Management (GVM), previously known as OpenVAS, is a network security scanner which

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