How To Run An Older Kernel Without Uninstalling Newer Kernels?

Hi,

The most recent Kernel does not like my old desktop much.
I have an older Kernel installed in “Manjaro Settings Manager”.
How would I run an older Kernel without uninstalling newer Kernels?
Let me know, thanks!

Jesse

If you have other kernels installed you can boot with them by selecting them in grub. Usually it’s pressing shift while booting (can be different on some DE) you can select advanced options and pick the kernel you want to boot with.

Be wary of using kernels that are marked EOL and are removed from the repos

1 Like

That worked, thanks!

1 Like

If you want to always have the GRUB menu visible at boot, edit /etc/default/grub and change this line below… :arrow_down:

GRUB_TIMEOUT_STYLE=hidden

… into… :arrow_down:

GRUB_TIMEOUT_STYLE=menu

Then, save the file and run… :arrow_down:

sudo update-grub
1 Like

Might be worthwhile to add (if missing) or change the following entries

GRUB_DEFAULT=saved

The causes grub to remember the version of last kernel you selected and will use it as a default for the next boot.

GRUB_TIMEOUT=3

This will show the GRUB menu for 3 seconds and then continue the boot if you haven’t selected a different menu entry. Adjust the time value to your liking.

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.