How can we add a kernel to grub2? i knew the stuff we could do with the former versions, but it seems to have changed. What files should we edit?

link|improve this question
1  
better fit to ubuntu/superuser? – awoodland Nov 8 '10 at 13:37
feedback

migrated from stackoverflow.com Nov 8 '10 at 13:58

This question came from our site for professional and enthusiast programmers.

5 Answers

To add a new kernel to grub2:

  1. Move your kernel to /boot/
  2. Run sudo update-grub

update-grub will scan your computer for kernels, and create a listing of available kernels at boot.

In order for you to select which kernel to boot at boot time, you may have to hold the SHIFT button down right after your BIOS does it's posting.

You can edit /etc/default/grub to change default boot options and parameters that you may need.

link|improve this answer
feedback

/boot/grub/grub.cfg is the file that replaced menu.lst from grub1

In Debian/Ubuntu systems this is generated by update-grub, which runs the scripts in /etc/grub.d using something similar to run-parts.

link|improve this answer
feedback

If the new kernel is installed with dpkg (as if it's compiled with make-kpkg), update-grub2 is enough (it removes no more existent kernels, too)

link|improve this answer
feedback

You don't "edit" to add kernels anymore. It scans and adds them dynamically. If you MUST add one a scan doesn't find you should look in /etc/grub.d and modify or copy and custom40(it is added last so it's a great place to test your config before you put it at the top of your list).

link|improve this answer
feedback

Try update-grub or update-grub2 depending on you grub version. You will have to run these as root, sudo. This worked for me when I installed a second Linux distro without reinstalling grub.

link|improve this answer
I realized that my answer is similar to Alan's answer, but I added the grub2 command. – tjameson Mar 31 '11 at 19:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.