Debian11 升级到 Debian12

记录如何升级 Debian 11 Bullseye 到 Debian 12 Bookworm。
升级操作需要在 root 下完成,可以使用 sudo -isu root 切换到 root 用户进行操作

首先更新当前系统

1
2
3
4
5
6
apt update
apt upgrade -y
apt dist-upgrade -y
apt autoclean
apt autoremove -y

然后升级系统

  1. 更新源,替换 bullseye 为 bookworm:
    1
    sed -i 's/bullseye/bookworm/g' /etc/apt/sources.list
  2. 再次更新
    1
    2
    3
    apt update
    apt upgrade -y
    apt dist-upgrade -y
    之后就是一路确认,常规操作
    最后执行
    1
    2
    apt autoclean
    apt autoremove -y

Comments

Your browser is out-of-date!

Update your browser to view this website correctly.&npsb;Update my browser now

×