Debian8直接升级到Debian9

之前说了,入手了一个virmach家的128MB的KVM VPS,由于这台VPS的重装系统模板Debian系列系统最高只到Debian8,对于喜欢Debian9的我来说,肯定是会想办法自己重装成Debian9的哈哈哈,好在Debian官方提供了这个功能,我们只要少数几步就能完成升级。

首先,为了保证Debian9的系统的纯净,我们肯定到后台选择重装minimal版的Debian8了,安装之后,登录到VPS,然后就是老生常谈的update&&upgrade了:

apt update
apt upgrade

然后,编辑source.list文件,将jessie替换成stretch,代码如下:

vim /etc/apt/sources.list
deb http://ftp.us.debian.org/debian/ stretch main
deb-src http://ftp.us.debian.org/debian/ stretch main
deb http://security.debian.org/ stretch/updates main
deb-src http://security.debian.org/ stretch/updates main
deb http://ftp.us.debian.org/debian/ stretch-updates main
deb-src http://ftp.us.debian.org/debian/ stretch-updates main

然后,更新一下源仓库信息:

apt update

接下来就是关键的一步,开始升级系统了:

apt-get dist-upgrade

如无意外,会下载安装一大坨东西,安装过程需要手动确认几下,很简单,按照提示操作就行。
上面那个命令执行完毕之后,重启VPS,再次SSH登录就是Debian9系统了,想要什么就能随意安装玩耍了。
PS:如果遇到Failed to reload daemon: Refusing to reload, not enough space available on /run/systemd. Currently, 10.5M are free, but a safety buffer of 16.0M is enforced.问题,可参考这篇文章:Linux系统/run/systemd空间不足问题解决
相关文章:
Debian 9 启用BBR
v2ray+websocks+nginx+ssl配置