![]() |
|
ForumMon Mar 27 12:18:18 2023 UTC Help: Installationteniie2 ![]() Wed Mar 22 21:50:59 2023 UTC Help: GeneralThierry ![]() Mon Mar 20 22:49:30 2023 UTC Help: GeneralThierry ![]() Sat Mar 18 17:50:53 2023 UTC Help: GeneralDj ![]() Sat Mar 18 16:20:49 2023 UTC Help: Generalvikrang ![]() Sun Mar 12 22:33:33 2023 UTC Help: ProgrammingThierry ![]() Thu Mar 9 17:29:47 2023 UTC Help: ProgrammingFerran ![]() Thu Mar 9 11:49:10 2023 UTC Help: Installationteniie2 ![]() Tue Mar 7 07:15:07 2023 UTC Help: ProgrammingThierry ![]() Mon Mar 6 17:37:51 2023 UTC Documentation: Tips and TricksFerran ![]() |
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. |