Skip to content

Debian 13

Initial Server Setup

shell
# Update package lists and upgrade all packages
apt update
sudo apt full-upgrade -y

# Ensure sudo is installed
apt install sudo

# Set vim as the default editor
apt install vim
update-alternatives --config editor

# Install common essentials
apt install curl git unzip