在线将 Debian 11 升级到 Debian 12 的捏~( ̄▽ ̄)~*

基于一样的原因只能安装到 Debian 11 的系统,虽然可能通过 VNC 手动挂载 ISO 手动安装,但是由于 VPS 配置过于捉急只能使用商家提供的 Debian 11 模板然后自己升级到 Debian 12 了。虽然会导致面板的系统跟实际系统不一样的说。

这是一个空白重新安装的系统,对于在使用中的环境不太敢直接进行升级操作!!!!!!

说起升级系统版本在 Centos、Debian、Ubuntu中其实都有操作过。。。。。。这次就像水一发而已。

1、将系统更新到最新

apt update
apt upgrade
apt full-upgrade
apt autoremove

2、重启

systemctl reboot

3、备份APT 源文件

cp -v /etc/apt/sources.list /root
cp -vr /etc/apt/sources.list.d/ /root

4、编辑 /etc/apt/sources.list 文件

vi /etc/apt/sources.list

将下面内容替换进去

deb http://deb.debian.org/debian/ bookworm main
deb-src http://deb.debian.org/debian/ bookworm main
deb http://security.debian.org/debian-security bookworm-security main
deb-src http://security.debian.org/debian-security bookworm-security main
deb http://deb.debian.org/debian/ bookworm-updates main
deb-src http://deb.debian.org/debian/ bookworm-updates main
deb http://deb.debian.org/debian bookworm non-free non-free-firmware
deb-src http://deb.debian.org/debian bookworm non-free non-free-firmware
deb http://deb.debian.org/debian-security bookworm-security non-free non-free-firmware
deb-src http://deb.debian.org/debian-security bookworm-security non-free non-free-firmware
deb http://deb.debian.org/debian bookworm-updates non-free non-free-firmware
deb-src http://deb.debian.org/debian bookworm-updates non-free non-free-firmware

5、升级

apt update
apt full-upgrade

在升级过程中,安装程序可能会要求你重新启动几个服务。仔细阅读消息后点击 “Yes”。另外,如果你看到带有 : 的提示,请按 q 键退出该消息。
同时我选择让更新 OpenSSH ,也可用选择保持当前的。

6、重启

systemctl reboot

7、检查

检查 Debian 版本:

cat /etc/debian_version
12.2

检查 Debian 内核版本:

uname -mr
6.1.0-13-amd64 x86_64

检查正在运行的服务:

systemctl list-units --type=service

检查 OpenSSH 版本:

sshd -V
OpenSSH_9.2, OpenSSL 3.0.11 19 Sep 2023

8、清理

清理不使用的包

apt --purge autoremove

9、参考

简单几步将 Debian 11 升级到 Debian 12教程
https://www.sshce.com/41092.html

10、小结

空白系统升级到 Debian 12 后我才在上面安装其他软件。

11、镜像站

之前的VPS由于网络不需要修改源,但最近在虚拟机开的 Debian 12 不得不修改下镜像源了,使用清华大学的镜像源:

一般情况下,将 /etc/apt/sources.list 文件中 Debian 默认的源地址 http://deb.debian.org/ 替换为镜像地址即可。

Debian Buster 以上版本默认支持 HTTPS 源。如果遇到无法拉取 HTTPS 源的情况,请先使用 HTTP 源并安装:

apt install apt-transport-https ca-certificates

# 默认注释了源码镜像以提高 apt update 速度,如有需要可自行取消注释
deb https://mirrors.tuna.tsinghua.edu.cn/debian/ bookworm main contrib non-free non-free-firmware
deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ bookworm main contrib non-free non-free-firmware

deb https://mirrors.tuna.tsinghua.edu.cn/debian/ bookworm-updates main contrib non-free non-free-firmware
deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ bookworm-updates main contrib non-free non-free-firmware

deb https://mirrors.tuna.tsinghua.edu.cn/debian/ bookworm-backports main contrib non-free non-free-firmware
deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ bookworm-backports main contrib non-free non-free-firmware

deb https://mirrors.tuna.tsinghua.edu.cn/debian-security bookworm-security main contrib non-free non-free-firmware
deb-src https://mirrors.tuna.tsinghua.edu.cn/debian-security bookworm-security main contrib non-free non-free-firmware

# deb https://security.debian.org/debian-security bookworm-security main contrib non-free non-free-firmware
# deb-src https://security.debian.org/debian-security bookworm-security main contrib non-free non-free-firmware

ChiuYut

2023年11月22日

发布者

ChiuYut

咦?我是谁?这是什么地方? Ya ha!我是ChiuYut!这里是我的小破站!