zl程序教程

您现在的位置是:首页 >  系统

当前栏目

卸载 linux http

LinuxHTTP 卸载
2023-09-11 14:17:25 时间

当我们想卸载httpd 的时候,使用rpm -qa httpd 的时候,我们发现有很多的依赖包。我们耐心的想一个一个的卸载的时候(使用rpm -e httpd-*),还会进入死循环。
解决的办法是:使用 rpm -e httpd-* --nodeps说明:“*”是通配符。