Debian 8 (Jessie) 默认的系统管理守护进程 Systemd,用命令systemctl --version查看,版本只有215,而多数服务要求 Systemd 版本在219以上。通过系统的apt-get upgrade systemd没法升级版本。

Debian Backports,软件新版本的某些功能移植到旧版本上来,主要从testing源,部分安全更新从unstable源重新编译包。backportsstabletesting的一个折衷。

添加 backports 到源

echo deb http://ftp.debian.org/debian jessie-backports main >> /etc/apt/sources.list
apt-get update

通过 backports 安装软件包

apt-get -t jessie-backports install systemd

这就升级完成了。

2017-08-21_204545.png