Compiling the Linux kernel and creating a bootable ISO
This revision is from 2024/01/21 13:54. You can Restore it.
Guides to compile the Linux kernel from source, create the file system from BusyBox and then run it using QEMU. But, Create a bootable ISO of it and boot it on a computer.
The Linux Kernel
At first, compile the Linux kernel, https://kernel.org/ and grab the latest Linux kernel.
wget https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-6.7.1.tar.xz tar xf linux-6.7.1.tar.xz cd linux-6.7.1.tar.xz
To compile the kernel...
{code}
apt install build-essentials flex libncurses5-dev bc libelf-dev bison
{/code}