| command | explanation | more info |
|---|---|---|
| wget | The non-interactive network downloader | man |
| make menuconfig | configuration config the kernel | man |
| less config-xxx | displays specific config | man |
| less /boot/grub/grub.cfg | check if the new kernel is booted | man |
| smartctl -a /dev/hda1 | tool for SMART observeration of drives | man |
Build And Install A Kernel
- build –> make -j8 deb-pkg (j-Parameter: amounts of threads to be used)
- install –> sudo dpkg -i linux-*.deb
Create Own Kernel Module
- write Kernel Module:
- make -C <path_to_kernel_src> M=<path_to_module> –> will generate a .ko-File
- insmod –> to integrate module
- rmmod –> to remove module