Skip to main content

About the Author

MS author




Who am I?

I'm MS, also known as Miguel Sea, a Linux, homelab and security enthusiast documenting real systems, old hardware, Docker services and defensive security experiments.

I enjoy restoring capable older hardware and using it for low-cost experiments. One of the ideas behind this blog is to show that, with careful optimization, even an old computer can become a useful and secure server.

My academic background is an MSc in Computer Science. Professionally, I have worked across software development for critical systems and cybersecurity, with more than 17 years of experience. I also hold CompTIA Security+ and CompTIA CySA+ and CompTIA Casp+ certifications.

IT Random Stuff is a personal technical blog about Linux, homelabs, computer security, old hardware, laptops, honeypots, Docker, firewalls and practical sysadmin experiments.

The goal of this blog is simple: to document useful IT things in a way that is practical, understandable and based on real-world tinkering.

This is not a corporate security blog. It is not a place for buzzwords, vendor slides or perfect lab conditions. It is a place for notes, guides, checklists and lessons learned while working with Linux systems, home servers, containers, networking tools and older hardware that still has plenty of life left.

What this blog covers

The main topics here include:

  • Linux home server setup and hardening;

  • Docker and self-hosted services;

  • UFW firewall rules and SSH security;

  • Fail2ban, Lynis and other defensive security tools;

  • honeypots and small security labs;

  • backup strategies for home servers and containers;

  • old laptops and workstations used as cheap homelab machines;

  • small fixes, tweaks and experiments that are useful enough to document.

Why I write these posts

A lot of useful IT knowledge comes from small practical problems:

  • Why is this port open?

  • How do I avoid locking myself out of SSH?

  • Where is my Docker container actually storing data?

  • How do I make this old machine useful again?

  • What should I fix first after running a security audit?

When I solve something or find a setup worth keeping, I try to write it down here. Sometimes the result is a checklist. Sometimes it is a command reference. Sometimes it is just a practical guide that future me would want to find again.

Security focus

Many posts on this blog are related to computer security, but the focus is defensive and educational.

The guides here are written for people who want to secure their own systems, understand their home networks, monitor their services, harden Linux servers, experiment safely with honeypots, or learn more about how common tools behave in a real environment.

Nothing here should be treated as professional security advice for critical systems. Always understand a command before running it, test changes carefully, and keep backups before modifying important servers.

Homelab approach

I like practical setups that normal people can actually run:

  • old desktops reused as servers;

  • old laptops running Linux;

  • small Docker stacks;

  • simple monitoring;

  • basic but useful firewall rules;

  • boring backups that actually restore.

Perfect enterprise architecture is nice, but most home labs start with whatever hardware is available and a willingness to learn.

That is the spirit of this blog.

About the content

The posts are written to be practical and easy to follow. I try to include commands, examples, explanations and warnings where something can break.

Technology changes, packages change and distributions change, so always check official documentation when applying something to an important system. If you spot something outdated or incorrect, feel free to get in touch through the contact page.

Start here

If you are new to the blog, a good starting point is the Start Here page. It groups the main Linux, homelab, Docker and security posts into a suggested reading order.

Thanks for reading. I hope something here saves you time, prevents a mistake, or gives you an idea for your own setup.

Comments

Popular posts from this blog

OpenCanary Honeypot on Ubuntu: 2026 Home Lab Setup Guide

I first wrote about OpenCanary years ago, and that old version badly needed an update. The tool is still useful, but the way I would deploy it in a home lab today is different: newer Ubuntu versions, Python 3, Docker as an option, cleaner logging, and no copy-pasted example credentials that look like something someone might actually reuse. This guide is the updated version: how I would set up an OpenCanary honeypot on Ubuntu in 2026 for a small home network or homelab. The goal is not to trap random people on the internet. The goal is to create a quiet internal warning system: a fake service that should never be touched, so any connection to it deserves attention. Important: this is a defensive security guide. Run OpenCanary only on systems and networks you own or have permission to monitor. Do not expose a honeypot to the public internet unless you understand the logging, legal, abuse and maintenance implications. If you are building a Linux home server security setup fro...

Lenovo ThinkPad X250 on Linux: Tweaks, Undervolting, Battery Life and 2026 Update

I wanted a cheap, small, serviceable Linux laptop. Something light enough to carry, easy enough to repair, and inexpensive enough that upgrades would still make sense. The Lenovo ThinkPad X250 was a good candidate because it has a 12.5-inch form factor, a proper ThinkPad keyboard, SSD upgrade options, replaceable parts, Ethernet, docking support and generally good Linux compatibility. I found one on eBay for around 130€ : an Intel Core i5-5300U model with 8GB RAM , a 128GB SSD , two batteries and an HD screen with a small bruise. The plan was simple: clean it, repaste it, upgrade the SSD, install Linux Mint, undervolt it and see how useful it could still be. This post started as my original 2019 notes about tweaking the Lenovo X250 in Linux. I have now updated it with a 2026 perspective, cleaner instructions, better internal links and a more realistic look at whether this old ThinkPad is still worth using. Related posts: Linux Home Server Security Checklist Docker Secu...

Strong, Unique Passwords Without Losing Your Mind

Last updated: May 27, 2026 Password Security in 2026: Password Managers, Passkeys & 2FA for Real People Password Security in 2026: Password Managers, Passkeys & 2FA That Actually Work Most people do not have a weak-password problem. They have a reused-password problem. You can invent the cleverest password in the world, but if you use it on twenty websites and one of them gets breached, you suddenly have twenty compromised accounts. That is how most real-world account takeovers happen in 2026. Not elite hackers brute-forcing your login from a dark room somewhere. Just automated credential stuffing using databases leaked years ago from services you forgot existed. One old forum breach becomes access to your email, cloud storage, streaming services, VPN account, and eventually your homelab dashboard because the same password got reused everywhere. This guide explains how to handle passwords properly today: without paranoia, without enterprise co...