📜  kali 卸载 nginx - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:49:46.980000             🧑  作者: Mango

代码示例1
#### Removes all but config files.

sudo apt-get remove nginx nginx-common
#### Removes everything.

sudo apt-get purge nginx nginx-common
#### After using any of the above commands, use this in order to remove dependencies used by nginx which are no longer required.

sudo apt-get autoremove