欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

ubuntu找不到chkconfig命令

程序员文章站 2022-07-12 13:41:07
...

注:本帖在整理其他的贴的基础上,清晰说明一下,本人在root权限下进行的安装,没有用sudo组

1,安装

[email protected]:~# apt install sysv-rc-conf

2,复制文件,
注:复制过长中发现,在/usr/sbin/中没有chkconfig这个文件,需要利用gedit新建一个空白文件,命名为chkconfig
在执行命令:

[email protected]:~# cp /usr/sbin/sysv-rc-conf /usr/sbin/chkconfig

3,设置权限,要将目录切换至/usr/sbin/下

[email protected]:/usr/sbin# chmod 755 chkconfig

这样就可以了,
下面是完成的试错过程

[email protected]:~# apt install sysv-rc-conf
正在读取软件包列表... 完成
正在分析软件包的依赖关系树       
正在读取状态信息... 完成       
sysv-rc-conf 已经是最新的版本。
升级了 0 个软件包,新安装了 0 个软件包,要卸载 0 个软件包,有 444 个软件包未被升级。
[email protected]:~# cp /usr/sbin/sysv-rc-conf /usr/sbin/chkconfig
[email protected]:~# chkconfig telent off
bash: /usr/sbin/chkconfig: 权限不够
[email protected]:~# chmod 755 chkconfig
chmod: 无法访问"chkconfig": 没有那个文件或目录
[email protected]:~# cd ..
[email protected]:/home# cd ..
[email protected]:/# cd usr 
[email protected]:/usr# cd sbin
[email protected]:/usr/sbin# chmod 755 chkconfig
[email protected]:/usr/sbin# chkconfig telent off
[email protected]:/usr/sbin# 


相关标签: chkconfig