如何禁用 Bootchart?

ash*_*shr 7 12.04 bootchart

我不希望每次启动时都生成 Bootchart。如何禁用引导图?

禁用后,如何重新启用 bootchart ?

我不是说卸载

Rin*_*ind 6

停止

cd /etc/init.d
sudo update-rc.d -f stop-bootchart remove
sudo update-rc.d -f bootchart remove
Run Code Online (Sandbox Code Playgroud)

重新启动

cd /etc/init.d
sudo update-rc.d stop-bootchart start 99 2 3 4 5
Run Code Online (Sandbox Code Playgroud)

或者:

echo manual | sudo tee -a /etc/init/bootchart.override
Run Code Online (Sandbox Code Playgroud)

使其手动。


$ 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 ...
Run Code Online (Sandbox Code Playgroud)