Kernel Installation Guide Downloading the Kernel Download kernel version 2.6.36 to the appropriate directory. If you just plan to install or upgrade the kernel running on your machine, the appropriate directory is /usr/src/. If you are going to be hacking this kernel, download to somewhere like your home directory. wget http://www.kernel.org/pub/linux/kernel/v2.6/linux-2.6.36.tar.gz tar xzvf linux-2.6.36.tar.gz
Linux
Virtual Serial Connection Between Two QEMU VM
If you are a Linux user for your most of the research work and you come upon the task of debugging Windows kernel, but don’t want to switch to a Windows platform for that, QEMU can help you. We can create a virtual serial connection between two QEMU VM. One VM acts as the debugger … Continued
Kernel Debugging Using GDB & QEMU
The effect of a bug in the kernel is catastrophic and may lead to system crash. Kernel debugging is an important stepĀ for kernel developers to find out bugs or debugging kernel execution. Many developers use virtual machine while working on kernel level. QEMU is a famous virtualization tool among the kernel developers. In this tutorial … Continued