Skip to main content

Posts

Showing posts from April, 2026

Proxmox Cheatsheet

Common Setup Find fastest repository apt install netselect-apt netselect-apt sid -nc ID -o /etc/apt/sources.list Downgrade debian to stable apt show base-files Update /etc/apt/sources.list Replacing all testing with stable. # cat /etc/apt/sources.list deb http://deb.debian.org/debian stable main contrib non-free deb-src http://deb.debian.org/debian stable main contrib non-free deb http://deb.debian.org/debian-security/ stable/updates main contrib non-free deb-src http://deb.debian.org/debian-security/ stable/updates main contrib non-free deb http://deb.debian.org/debian stable-updates main contrib non-free deb-src http://deb.debian.org/debian stable-updates main contrib non-free Running apt update && apt dist-upgrade now wouldn't change any packages, because packages from testing have newer version numbers than the ones from stable. To circumvent this, create /etc/apt/preferences.d/downgrade with the following content. This file can be deleted after the update has complete...