📌  相关文章
📜  如何在启动时使 apache2 不自动恢复 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:49:55.032000             🧑  作者: Mango

代码示例1
# disable autostart
sudo update-rc.d apache2 disable

# enable autostart
sudo update-rc.d apache2 enable

# remove / uninstall
sudo update-rc.d -f  apache2 remove