WireGuard Setup Guide

WireGuard This guide covers setting up a WireGuard VPN server and client. Server Side Setup 1. Update System Log into your server and make sure the system is up to date. apt-get update && apt-get upgrade Reboot if there are updates that require it. 2. Enable IP Forwarding We need to enable IP Forwarding. IP forwarding is the ability for an operating system to accept incoming network packets on one interface, recognize that they are not meant for the system itself, but that they should be passed on to another network. ...

November 25, 2023 · 3 min

Alpine Linux LXC Container Setup

Here are the necessary commands to set up an Alpine Linux LXC container after a fresh install. Basic Installation Upgrade packages: apk -U upgrade Run Alpine setup: setup-alpine Install essential tools: apk add nano curl wget htop git zsh ZSH Configuration Install Oh My Zsh: sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" Edit password file to change default shell to zsh: nano /etc/passwd (Find your user and change /bin/ash or /bin/sh to /bin/zsh) ...

November 20, 2023 · 1 min

Things to Do After Installing a Debian Linux Server

In this page, we will go over things to install, configure the debian server to harden the security and get ready for general use. Assuming all the commands are run from the user root, else add the sudo keyword as prefix to all commands below. Update to Latest Patches Keep your system up to date. apt update apt dist-upgrade -y apt clean apt autoremove reboot SSH - Reconfigure SSH Server Regenerate the SSH host keys to ensure uniqueness. ...

November 15, 2023 · 2 min