译者注:debian官方内部围绕systemd发生过激烈的争论,最终换来了妥协。debian jessie 默认使用systemd作为init程序,但是保留了sysv,二者不可同时存在。如果你想让debian依然使用sysv,可以参照下面的办法。
首先安装sysv init软件包
apt-get update apt-get install sysvinit-core sysvinit sysvinit-utils
重启机器,删除和systemd相关的软件包。
注意:下面的命令会删除依赖systemd的软件包比如libpam-systemd
apt-get remove --purge --auto-remove systemd
防止apt将来会安装systemd软件包
echo -e ‘Package: systemd\nPin: origin ""\nPin-Priority: -1‘ > /etc/apt/preferences.d/systemd
防止apt将来会安装类似systemd的软件包
echo -e ‘Package: *systemd*\nPin: origin ""\nPin-Priority: -1‘ > /etc/apt/preferences.d/systemd
原文:
http://without-systemd.org/wiki/index.php/How_to_remove_systemd_from_a_Debian_jessie/sid_installation
本文出自 “专注Linux 运维” 博客,请务必保留此出处http://purplegrape.blog.51cto.com/1330104/1650994
【翻译】如何删除debian jessie 的systemd
原文地址:http://purplegrape.blog.51cto.com/1330104/1650994