Tag: kernel

Kernel Version

Get the version of the kernal cat /proc/version OR uname -r

Get Kernel Version

Show version of the kernel cat /proc/version

lsmod – Show Loaded Kernel Modules

This command shows the kernel modules that are currently loaded. # lsmod Module Size Used by vboxdrv 55088 0 autofs4…

Remove an existing Kernel

The final numbers(2.6.20.6) is the version of you kernel. You can get this using uname -r (for the current kernel)…

Compiling a 2.6 Linux kernel

Get the latest Kernel from kernel.org Get a default .config file cp /boot/config-`uname -r` ./.config OR make defconfig Then configure…