Kernel compilation: Unterschied zwischen den Versionen

Aus Xinux Wiki
Zur Navigation springen Zur Suche springen
 
(Eine dazwischenliegende Version desselben Benutzers wird nicht angezeigt)
Zeile 5: Zeile 5:
 
*cd /usr/src
 
*cd /usr/src
 
=Get the source=
 
=Get the source=
 +
==Webseite==
 +
;Neusten Kernel runterladen
 +
*https://mirrors.edge.kernel.org/pub/linux/kernel/v5.x/
 +
;Beispiel
 
*wget https://mirrors.edge.kernel.org/pub/linux/kernel/v5.x/linux-5.0.21.tar.xz
 
*wget https://mirrors.edge.kernel.org/pub/linux/kernel/v5.x/linux-5.0.21.tar.xz
 
*tar xf linux-5*.xz
 
*tar xf linux-5*.xz
 
*cd linux-5*/
 
*cd linux-5*/
 +
 
=Set the old config=
 
=Set the old config=
 
*cp /boot/config-`uname -r` .config  
 
*cp /boot/config-`uname -r` .config  
Zeile 18: Zeile 23:
 
*make modules_install install
 
*make modules_install install
  
=Build a ramdisk=
+
=Update grub=
*sudo update-initramfs -u -v -k `uname -r`
+
*update-grub
 
 
  
 
=Links=
 
=Links=
 
*https://wiki.ubuntuusers.de/Kernel/Kompilierung/
 
*https://wiki.ubuntuusers.de/Kernel/Kompilierung/
 
*https://www.pro-linux.de/artikel/2/1572/selbstgebacken-kernel-kompilieren-nach-rezept.html
 
*https://www.pro-linux.de/artikel/2/1572/selbstgebacken-kernel-kompilieren-nach-rezept.html

Aktuelle Version vom 28. Oktober 2021, 05:46 Uhr

Needed packages

  • sudo apt-get install linux-source build-essential kernel-package libssl-dev flex bison ncurses-dev

Pre Compile stuff

  • cd /usr/src

Get the source

Webseite

Neusten Kernel runterladen
Beispiel

Set the old config

  • cp /boot/config-`uname -r` .config
  • yes "" | make oldconfig

Change settings

  • make menuconfig

Compile kernel and modules

  • make -j8 bzImage modules

Install modules and kernel

  • make modules_install install

Update grub

  • update-grub

Links