Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

80 total results found

Update #13: Fail2Ban IP Lookup & Enrichment Script with GeoIP, PTR, and AbuseIPDB

02 - Project Notes

Date: May 11, 2025Category: Security / AutomationBacklink: Update #12 โ€“ Step-by-Step Breakdown of UFW DDNS Update Script Objective Build a script to automatically extract and enrich the IP addresses banned by Fail2Ban, giving deeper insight into: Where ...

Step-by-Step Security Hardening for WordPress on a Public VPS

04 - WordPress

๐Ÿ” Overview This guide explains how to harden your public WordPress site using free plugins and smart configuration. It includes login obfuscation, brute-force protection, 2FA, and XML-RPC lockdown. ๐Ÿ”ง Step 1: Hide the Default Login Page Change the default /w...

๐Ÿง‘โ€๐Ÿ’ป Security-Focused Linux Distributions for Anonymous Browsing & Penetration Testing

05 - Linux

Anonymous Browsing & Lightweight Live OSes 1. Tails (The Amnesic Incognito Live System) Website: https://tails.net/ Description: A Debian-based distro focused on privacy and anonymity. It routes all traffic through Tor and leaves no trace on the hos...

Top 25 Linux Commands I Use Weekly

05 - Linux

A practical list of Linux commands I personally use most often during system monitoring, server administration, scripting, and troubleshooting.Use this list as a quick reference or jump-off point for deeper Linux command mastery. ๐Ÿ”ง System Monitoring & Info ...

How I Back Up My VPS with Syncthing

05 - Linux

This guide documents how I use Syncthing to back up my VPS's critical BookStack data folder (/opt/bookstack_backups) to my personal workstation automatically and securely. ๐Ÿ“‚ Backup Directory I use a dedicated folder on my VPS for storing compressed BookSta...

๐Ÿง‘โ€๐Ÿ’ป Lightweight Linux Distributions for Reviving Old Hardware

05 - Linux

This page highlights Linux distributions specifically designed to run efficiently on older or resource-constrained hardware. These systems are ideal for breathing new life into legacy laptops, desktops, or low-spec devices while maintaining decent usability, s...

๐Ÿง‘โ€๐Ÿ’ป Beginner-Friendly Linux Distributions for Daily Use

05 - Linux

This page highlights Linux distributions that are particularly well-suited for new users transitioning from Windows or macOS. These distros prioritize ease of use, polished interfaces, large communities, and reliable long-term support. ๐ŸŒŸ 1. Linux Mint ...

๐Ÿ‘จโ€๐Ÿ’ป Linux Distributions for Developers

05 - Linux

This page outlines Linux distributions that are particularly developer-friendly โ€” whether you're writing code, compiling software, managing containers, or deploying apps. These distros emphasize performance, customizability, and access to cutting-edge developm...

๐ŸŽจ Linux Distributions for Media & Content Creation

05 - Linux

This page highlights Linux distros tailored for creators โ€” including video editors, graphic designers, audio producers, and 3D artists. These distros come pre-equipped or are optimized for creative workflows, often featuring real-time kernels, pro-grade multim...

๐ŸŽฎ Gaming on Linux: Best Distributions for Gamers

05 - Linux

This guide lists Linux distributions optimized or commonly used for gaming โ€” whether you're running native Linux titles, emulating consoles, or using Proton via Steam. These distros focus on performance, compatibility, graphics support, and ease of use for gam...

๐Ÿ–ฅ๏ธ Best Linux Distributions for Servers & Self-Hosting

05 - Linux

This guide highlights Linux distributions best suited for servers โ€” whether you're running a home lab, self-hosting services, deploying to the cloud, or managing enterprise infrastructure. These distros are chosen for their stability, performance, long-term su...

Top Self-Hosted Applications to Run on Linux Servers

05 - Linux

This list showcases powerful and privacy-friendly applications you can host on your own Linux server - perfect for replacing third-party services and building your own digital infrastructure. These apps can run on bare-metal servers, virtual machines, or Docke...

๐Ÿ“ก Linux Tools for Infrastructure Monitoring

05 - Linux

This page covers the best open-source tools for monitoring the health, performance, and security of your Linux infrastructure - whether you're managing a single server or an entire fleet of systems and services. ๐Ÿ–ฅ๏ธ 1. Grafana Website: https://grafana.c...

My Custom Linux Scripts Index

05 - Linux

This page tracks custom scripts Iโ€™ve written or installed on my systems, primarily placed inย /usr/local/bin for global use. Each script is either a utility, security tool, or automation helper I use regularly. ๐Ÿ“ Script Directory: /usr/local/bin This direct...

๐Ÿ“˜ CompTIA Linux+ (XK0-005) Exam Overview and Study Objectives

07 - CompTIA Linux+ (XK0-005) Certifica...

Theย CompTIA Linux+ certification (XK0-005) is designed for early-career Linux administrators. This exam validates the essential skills needed to manage, secure, and troubleshoot Linux systems in a professional environment. ๐Ÿงพ Exam Overview Field Deta...

LibreNMS Docker Deployment on Raspberry Pi 5

06 - Raspberry Pi, Python & Linux Tips

Date: May 13, 2025Category: Monitoring / Raspberry Pi ProjectsBacklink: You can add this to a โ€œPi5 Monitoring Projectsโ€ page or your โ€œHomelab Projectsโ€ index Project Overview This guide walks through setting up LibreNMS on a Raspberry Pi 5 (64-bit) using D...

๐Ÿ—‚๏ธ Log Management Reference

03 - All About Ubuntu

Category: All About UbuntuLast Updated: May 14th, 2025 ๐Ÿ“Œ Default Log File Locations Most Linux systems (especially Debian/Ubuntu) store logs in these locations: Path Purpose /var/log/ Main system log directory /var/log/syslog Genera...

Full SNMP Monitoring on Raspberry Pi 5 for LibreNMS (UCD-SNMP + Extend Workaround)

06 - Raspberry Pi, Python & Linux Tips

Date: May 14, 2025Category: Monitoring / SNMPBacklink: LibreNMS Docker Deployment on Raspberry Pi 5 ๐Ÿงฉ Overview This update documents how I configured full-featured SNMP monitoring on a Raspberry Pi 5 running LibreNMS inside Docker. Since hrProcessorLoad an...

Changing the Hostname on Linux and Removing VPN Server.

06 - Raspberry Pi, Python & Linux Tips

I want to change the hostname on my pivpn because I have moved that to a different system and want to use this for something else but don't need to reinstall linux: use hostname to see current hostname or it is after your profile name right there in the termi...

Creating a PowerShell Backup Script for VPS Syncthing Folders

08 - Windows 11

I'm using Robocopy to sync folders with logic to skip unchanged files. # Define source and destination paths $source1 = "C:\Users\aonat\BookStack-VPS-Backups" $source2 = "C:\Users\aonat\Default Folder" $destination = "E:\VPS-Backups" # Ensure destinatio...