禁用SELinux时配置错误导致rhel不能够启动的一种解决方法造成此次问题的原因: linux版本是RHEL5,关闭SELinux时,在修改配置文件/etc/selinux/config过程中,本应设置:# SELINUX=enforcingSELINUX=disabled不慎设置了SELINUXTYPE参数:#SELINUXTYPE=targetedSELINUXTYPE=disabled 重启RHEL的时候,提示:unable to load selinux policy. machine is in enforcing mode. halting now. kernel panic-not syncing:attempted to kill init! 解决方法:系统启动的时候,按下‘e’键进入grub编辑界面,编辑grub菜单,选择“kernel /vmlinuz-2.6.23.1-42.fc8 ro root=/dev/vogroup00/logvol00 rhgb quiet” 一栏,按‘e’键进入编辑,在末尾增加enforcing=0,即:kernel /vmlinuz-2.6.23.1-42.fc8 ro root=/dev/vogroup00/logvol00 rhgb quiet enforcing=0按‘b’键继续引导,顺利引导