sudo apt-get --purge remove nginx
开始使用上面这条,后来发现还是有很多相关联没有删除
sudo systemctl stop nginx
dpkg --get-selections|grep nginx
sudo apt-get --purge remove nginx
sudo apt-get --purge remove nginx-common
sudo apt-get --purge remove nginx-core
sudo apt-get autoremove
dpkg --get-selections|grep nginx
which nginx # 不在显示nginx
这样就可以完全卸载掉nginx包括配置文件
原文:https://www.cnblogs.com/royal6/p/12153198.html