从Ubuntu下删除Apache

我想删除Apache,就好像它从来没有安装,没有configuration文件留下。 我打算重新安装apache2新鲜。 我已经尝试了apt-get选项的各种组合,但没有成功。

apt-get remove apache2 apt-get remove --purge apache2 apt-get purge apache2 apt-get autoremove apache2 

这些都完全删除Apache正确。

没有任何工作,/ etc / apache2目录仍然存在。 所以我删除了它。 当我安装Apache的文件夹永远不会被创build。

运行Ubuntu服务器10.10。

apache2不包含真正的configuration文件。 尝试

 dpkg --purge apache2-common 

从其描述:

 Apache HTTP Server common files <...> This package contains the configuration and support scripts. <...> 

dpkg –purge apache2

 sudo apt-get remove --purge $(dpkg -l apache* | grep ii | awk '{print $2}')