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) ...