如何禁用 Bootchart?

如何禁用 Bootchart?

我不想每次启动时都生成 Bootchart。如何禁用 bootchart?

一旦禁用,如何重新启用 bootchart?

我不是说卸载

答案1

停止

cd /etc/init.d
sudo update-rc.d -f stop-bootchart remove
sudo update-rc.d -f bootchart remove

重新开始

cd /etc/init.d
sudo update-rc.d stop-bootchart start 99 2 3 4 5

或者:

echo manual | sudo tee -a /etc/init/bootchart.override

使其手动化。


$ cat /etc/lsb-release 
DISTRIB_DESCRIPTION="Ubuntu 14.04 LTS"
sudo update-rc.d -f bootchart remove
Removing any system startup links for /etc/init.d/bootchart ...

相关内容