报错部分
root@VM-0-17-ubuntu:/lib/systemd/system# sysv-rc-conf --list | grep off
sysv-rc-conf: command not found
解决方法
1、先update一下
root@VM-0-17-ubuntu:/lib/systemd/system# sudo apt-get update
试着直接安装sysv-rc-conf
root@VM-0-17-ubuntu:/lib/systemd/system# sudo apt-get install sysv-rc-conf
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package sysv-rc-conf
如果和我这里一样显示无法定位到sysv-rc-conf包的话
我们去资源列表中加一句
//先用vim编辑器打开sources.list
root@VM-0-17-ubuntu:/lib/systemd/system# sudo vi /etc/apt/sources.list
//打开后在最后添加这个源
deb http://archive.ubuntu.com/ubuntu/ trusty main universe restricted multiverse
现在重复1、update更新一下
root@VM-0-17-ubuntu:/lib/systemd/system# sudo apt-get update
再重复2、安装sysv-rc-conf
root@VM-0-17-ubuntu:/lib/systemd/system# sudo apt-get install sysv-rc-conf