如何恢复/etc/nginx?

我错误地删除了 ubuntu 11.10 PC 中的/etc/nginx 目录。如何恢复/etc/nginx 中的 ngnix 目录?

我下了这些命令:

  1. sudo su
  2. rm -rf /etc/nginx

我想再次获取/etc/nginx 目录?

我试着重新安装 nginx:

  1. sudo apt-get update
  2. sudo apt-get upgrade
  3. sudo apt-get install nginx

然后它给出了跟随

Reading package lists... Done


Building dependency tree


Reading state information... Done
E: Unable to locate package nginx

如何在 ubuntu 11.10上获得完整的 nginx 软件?

111130 次浏览

要重新创建它,首先使用 purge 卸载,甚至删除配置文件和记录:

sudo apt-get purge nginx nginx-common nginx-full

然后重新安装:

sudo apt-get install nginx

如果上面的方法对您不起作用,您还可以尝试使用 dpkg 的—— force-conmisse 选项。

sudo dpkg --force-confmiss -i /var/cache/apt/archives/nginx-common_*.deb