从 Ubuntu14.04 上的终端卸载 Apache2

从 Ubuntu14.04 上的终端卸载 Apache2

如何从终端卸载 Ubuntu 14.04 上的 Apache2?我不知道命令。

答案1

这会做你想做的事

sudo apt-get remove apache2*

答案2

如果您只想删除 apache,请使用:

sudo apt-get remove apache2

但是如果您不打算在某个时候重新安装并且想要删除所有 apache 的配置文件,那么请使用:

sudo apt-get purge apache2

相关内容