Skip to content

Blog

Linux | Managing Services

System services are one of the most important parts of a Linux system. They start applications in the background, open sockets, mount file systems, run timers and keep your system operational.

On modern Linux distributions this is usually handled by systemd. The main CLI tool to interact with systemd is systemctl.

Git

Git is a distributed version control system. In plain words: it tracks file changes so you can review, compare, and roll back safely.

SSH Authentication with Pubkey using Fido2

This guide explains how to secure SSH connections using FIDO2 (YubiKey) for authentication and provides a brief overview of SSH basics. Traditional SSH passwords and key files rely on secrets that can be copied or stolen. FIDO2 improves security by using a hardware-backed public/private key pair. The private key never leaves your device, while the public key is stored on the server.

PowerShell Modules

A PowerShell module is a package that contains PowerShell code such as functions, variables, workflows, and more — bundled in a reusable format. Modules enable users to import additional commands into their session, making them an efficient way to extend PowerShell’s capabilities.