![]() |
|
ForumWed Sep 27 12:34:35 2023 UTC Help: GeneralThierry ![]() Wed Sep 27 12:30:24 2023 UTC Help: GeneralPeppe123$$$ ![]() Wed Sep 27 11:30:55 2023 UTC Help: GeneralThierry ![]() Wed Sep 27 07:31:22 2023 UTC Help: GeneralPeppe123$$$ ![]() Tue Sep 26 09:53:25 2023 UTC Help: GeneralPeppe123$$$ ![]() Mon Sep 25 20:38:46 2023 UTC Help: Generalspiky ![]() Mon Sep 25 17:08:09 2023 UTC Help: GeneralThierry ![]() Sat Sep 23 12:00:57 2023 UTC Help: Generalpupuklok ![]() Sat Sep 23 05:38:00 2023 UTC Help: Generaldevlin7 ![]() Thu Sep 21 09:33:52 2023 UTC Help: GeneralThierry ![]() |
Tue Jan 24 11:37:32 2023 UTC Change the default kernel bootIntroductionNuTyX provides several kernel. To list them : cards search kernel (cli-extra) kernel-414 4.14.260 The 4.14 longterm support Linux Kernel version ... (cli-extra) kernel-419 4.19.223 The 4.19 longterm support Linux Kernel version ... (cli-extra) kernel-54 5.4.169 The 5.4 longterm support Linux Kernel version ... (cli-extra) kernel-510 5.10.89 The 5.10 longterm support Linux Kernel version ... (cli-extra) kernel-515 5.15.12 The 5.15 longterm support Linux Kernel version .. (cli-extra) kernel-61 6.1.8 The 6.1 longterm support Linux Kernel version .. For this example, we are going to use the "kernel-419". Kernel installationTo install the kernel (4.19) : sudo cards install kernel-419 More information about cards commands : base commands Set the new kernel by defaultYou have to edit /boot/grub/grub.cfg file which is the GRUB configuration file. Edit the menuentry function. By default the kernel is defined by this line : linux /boot/kernel-stable root=/dev/nvme0n1p3 ro init=/sbin/systemd-init quiet verbose=no /boot/kernel-stable indicates that the stable version of the kernel will be used. You have to modify kenerl-stable by the kernel that you want to use. In this example kernel-stable with kernel-419. linux /boot/kernel-419 root=/dev/nvme0n1p3 ro init=/sbin/systemd-init quiet verbose=no Then, save the file and reboot, you can then check by opening a terminal and type the command: uname -r 4.19.223-NuTyX-419to verify if it succed. |