ubuntu16.04 解除安裝ubuntu不完全,導致重灌後各種問題,需要徹底刪除nginx自動生成的配置項和相關聯的軟體
停止nginx ,nginx -s stop
解除安裝sudo apt-get --purge remove nginx
sudo apt-get autoremove
查詢和nginx相關的自動安裝的軟體
dpkg --get- selections|grep nginx
查詢的結果
nginx-common deinstall
解除安裝該軟體
sudo apt-get --purge remove nginx-common
再重新安裝nginx
sudo apt-get install nginx
ubuntu完全解除安裝nginx
刪除nginx連帶配置檔案 sudo apt get purge nginx removes everything.解除安裝不再需要的nginx依賴程式 sudo apt get autoremove 這時候檢視版本 nginx v 可以看到no such file 還需要刪除系統一些nginx檔案...
ubuntu完全解除安裝nginx
刪除nginx連帶配置檔案 sudo apt get purge nginx removes everything.解除安裝不再需要的nginx依賴程式 sudo apt get autoremove 這時候檢視版本 nginx v 可以看到no such file 這時候,如果系統還有些nginx...
Ubuntu下完全解除安裝nginx伺服器
刪除nginx,purge包括配置檔案sudo apt get purge remove nginx自動移除全部不使用的軟體包sudo apt get autoremove列出與nginx相關的軟體 並刪除顯示的軟體dpkg get selections grep nginx sudo apt ge...