我正在尝试摆脱 centOS 机器上的恶意 rootkit,并且需要从各种 rcX.d 文件中删除启动脚本:
我正在寻找的命令相当于 debian:
update-rc.d -f DbSecuritySpt remove
我如何在 CentOS 中做到这一点?
答案1
您需要从 /etc/rc.d/rc?.d 中删除服务脚本:
chkconfig --del DbSecurtiySpt
答案2
为什么不使用递归find
搜索/etc
并删除所有实例DbSecuritySpt
?
首先运行 find 来定位启动脚本的实例:
find /etc/ -type f -name '* DbSecuritySpt*'
然后运行 find 并使用 --delete 来删除它们:
find /etc/ -type f -name '* DbSecuritySpt*' -delete