我正在运行Ubuntu 13.10,对Linux来说还很陌生。我试过了:

$ sudo apt-get install chkconfig



我手动下载了该程序包并将其解压缩。生成的文件夹有一个名为:
chkconfig.install

但是我该如何运行呢?我试过了,但是没用。
$ sudo chkconfig.install

最佳答案

在Ubuntu中不再使用chkconfig命令。等效于chkconfig的命令是update-rc.d。此命令几乎支持所有新版本的ubuntu。

类似的命令是

update-rc.d <service> defaults

update-rc.d <service> start 20 3 4 5

update-rc.d -f <service>  remove

关于linux - 如何在Ubuntu上安装chkconfig?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20680050/

10-10 17:44