Install MariaDB 11.x on Linux

Install MariaDB 10.x on Rocky Linux 8

This guide will take you through how to install MariaDB 10.x on Rocky Linux 8 system. As of this writing, MariaDB 10.5.10 is the current stable (GA)

Install phpMyAdmin on Ubuntu 20.04

Install phpMyAdmin on Ubuntu 20.04

In this guide, we are going to learn how to install phpMyAdmin on Ubuntu 20.04. phpMyAdmin is a free and opensource application written in PHP

Install MongoDB on Debian 10

Install MongoDB on Debian 10

Follow through this tutorial to learn how to install MongoDB on Debian 10. According to mongodb.com, “MongoDB is a general purpose, document-based, distributed database built

Install MariaDB 10 on Debian 12

Install MariaDB 10 on Debian 12

Follow through this guide to learn how to install MariaDB 10 on Debian 12. “MariaDB 10 is the new major release series of MariaDB. It ships

Quickly Install MySQL 8 on Debian 12

Quickly Install MySQL 8 on Debian 12

This guide provides a step-wise tutorial on how to quickly install MySQL 8 on Debian 12. MySQL is a fast, stable and true multi-user, multi-threaded SQL database

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