Kernel compilation: Unterschied zwischen den Versionen

Aus Xinux Wiki
Zur Navigation springen Zur Suche springen
 
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  

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