Learn Recovering From a Kernel Panic Using a Custom ISO
Table of Contents
- Step 1: Finding the error
- Step 2: Mounting a custom ISO from the control panel
- Step 3: Rescuing your kernel
There are times when we modify our kernels to optimize them, upgrade them, or tinker around with them. Unfortunately for Linux-based operating systems, this means that there is the possibility of kernel panics – the equivalent to a “blue screen of death” on Windows. It’s important that you know how to recover from these, as any KVM VPS (including IT Web Services) or dedicated server that you use has its own kernel.
For this article, I’ll explain how to recover from a kernel panic on An ITWeb.Services VPS. I will be using an ISO from the SystemRescueCd project.
Step 1: Finding the error
From the IT Web Services control panel, select your VPS and hit VNC console. Attempt to boot the server, and you’ll be able to see the error. Take note of this so that you can repair it.
Step 2: Mounting a custom ISO from the control panel
Click the “ISO” option, and input the SystemRescueCd ISO URL. You may visit the official site for newer images.
http://iweb.dl.sourceforge.net/project/systemrescuecd/sysresccd-x86/4.5.3/systemrescuecd-x86-4.5.3.iso
From there, head back to your VPS controls and click “Mount ISO”.
You will be greeted with a pop-up screen by pressing the VNC console. Click “Enter” on the first option, and your system will start up.
Step 3: Rescuing your kernel
Now that you have access to a shell prompt, create a directory to mount your VPS’s disk.
mkdir /rescuedisk
Now, mount the disk.
mount /dev/vda1 /rescuedisk
You now have access to your files. At this point, you can choose whether to copy your files to a remote server, or research the kernel panic’s message that you took note of earlier.
An example of a kernel panic issue would be a missing /etc/shadow
file, or any missing system file. You could replace a missing file with a backup by copying over /etc/shadow-
to /etc/shadow
. For example:
cd /rescuedisk
cp etc/shadow- etc/shadow
Once you have finished fixing the issue, unmount the ISO from the IT Web Services control panel and reboot your VPS by typing reboot
in the prompt. If your issue was fixed, then your VPS will boot normally.
Need help?
Do you need help setting up this on your own service?
Please contact us and we’ll provide you the best possible quote!