I am very new to Ubuntu and in learning phase. I was a windows user before and switched to Ubuntu for my work. Currently, I have Ubuntu 22.04.1 LTS with Linux 5.15.0-52-generic. I want to add another Linux kernel alongside the stated one. It is Linux 4.10.0-28-generic. I want to have both of these kernels in Ubuntu and at the system reboot, I shall select the desired one. Please help me how to do this. I am not very familiar much with the platform and command line so pardon me if this question is too basic (because for me, it is not)
Asked
Active
Viewed 1,287 times
1 Answers
0
You can install the desired kernel from the terminal (accessed by Ctrl+Alt+T) using sudo apt install linux-image-4.10.0-28-generic, and you can reorder the bootloader menu by using grub customizer which you can install by sudo apt install grub-customizer, but even without that, the new kernel should be added to the menu automatically after installation.
Troy
- 51