Setup Rsyslog Server on Ubuntu 20.04

Setup Rsyslog Server on Ubuntu 20.04

In this tutorial, you will learn how to setup rsyslog server on Ubuntu 20.04. Rsyslog is a multi-threaded implementation of syslogd (a system utility providing

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

Install and Setup LEMP Stack on

Install LEMP Stack on CentOS 8

Just like LAMP Stack, LEMP Stack is a group opensource tools commonly used for developing and deploying web applications. It consists of the Linux Operating System

gitlab

Install Gitlab CE on Debian 11

In this tutorial, you will learn how to install Gitlab CE on Debian 11. GitLab is an open source end-to-end software development platform with built-in version control,

auditd

Find out who Edited Files in Linux

In this tutorial, you will learn how to find out who edited files in Linux. Linux provides user space tools for security auditing called auditd

Install ELK Stack 8.x

Install ELK Stack 8 on Debian 12

In this tutorial, you will learn how to install ELK stack 8 on Debian 12 systems. Elastic/ELK stack 8.x has been released making it another

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