ubuntu 16.04二进制安装sysv-rc-conf
方法一:
vim /etc/apt/sources.list
添加镜像源:
deb http://archive.ubuntu.com/ubuntu/ trusty main universe restricted multiverse
如图所示:
输入wq!保存退出
第一步:apt-get update 进行更新;
第二步:apt-get install sysv-rc-conf;安装命令
第四步:ls /usr/sbin | grep sysv;确认是否存在
第五步:cp /usr/sbin/sysv-rc-conf /usr/sbin/chkconfig;更名
第六步:ls /usr/sbin | grep chk #确认修改成功
第七步:#赋予权限
cd /usr/sbin
chmod 755 chkconfig
第八步:chkconfig;测试
方法二:
官网地址:https://sourceforge.net/projects/sysv-rc-conf/
下载并解压安装包
tar zxvf sysv-rc-conf-0.98.tar.gz -C /usr/local
cd sysv-rc-conf-0.98
./configure
make&&make install