Ubuntu 20.04 LTS (Server) est livré avec le noyau Linux 5.4.0 par défaut. Essayez d'y mettre votre propre noyau compilé (Ubuntu 20.04). Le noyau utilise le noyau vanilla distribué par kernel.org.
sudo apt -y install make gcc flex bison libssl-dev
wget https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.4.tar.xz tar xfJ linux-5.4.tar.xz cd linux-5.4/ cp /boot/config-5.4.0-33-generic ./.config yes "" | make oldconfig make -j8 bzImage modules sudo make modules_install install
wget https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.6.15.tar.xz tar xfJ linux-5.6.15.tar.xz cd linux-5.6.15/ cp /boot/config-5.4.0-33-generic ./.config yes "" | make oldconfig make -j8 bzImage modules sudo make modules_install install
Recommended Posts