ubuntu nginx卸载和安装

sudo apt-get --purge remove nginx
sudo apt-get autoremove
dpkg --get-selections|grep nginx

查看没删除干净的相关内容

比如

nginx-common没删掉的话,执行下面的方法
sudo apt-get --purge remove nginx-common
sudo apt-get install nginx
原文地址:https://www.cnblogs.com/fixbug/p/4049082.html