Setting up an encrypted disk image on Debian 12 with Cryptsetup

Posted on September 10, 2023

Encrypted disk images allow you to securely store sensitive files on your Linux system. The contents of the image can only be accessed by providing the correct passphrase. In this post, we’ll walk through creating an encrypted image using the …

debian sysadmin devops

Installing Docker on Debian 11

Posted on December 1, 2022

This should work as-is with Debian 12. Prerequisites Debian 11 (Bullseye) One of the following architectures; x86_64 amd64 armhf arm64 Remove any previously installed versions of Docker sudo apt-get remove docker docker-engine docker.io containerd …

debian docker sysadmin devops linux

Using Linux nftables

Posted on October 15, 2022

nftables is the new packet filtering framework built into the Linux kernel that replaces the older iptables technology. This tutorial will cover the basics of using nftables to configure a simple firewall on a Linux system. Installing nftables Most …

debian sysadmin devops linux