Month: October 2019

  • Auto reboot after kernel panic

    Auto reboot after kernel panic

    By default after a kernel panic, Linux kernel just waits there for a system administrator to hit the restart or powercycle button.  This is because of the value set on “kernel.panic” parameter. [root@linux23 ~]# cat /proc/sys/kernel/panic 0[root@linux23 ~]# sysctl -a | grep kernel.panickernel.panic = 0 To disable this and make the Linux OS reboot after a kernel panic,…