I don't know about Linux 3.5.0-45-generic
being 64-bit. That would not possible if your Laptop only supports 32-bit. Putting that aside, your question is about how to set default boot entry. Take a lookt at Grub Customizer. There is one good tutorial here: How do I change the GRUB boot order?. The accepted
answer there can be a bit confusing. You can just follow the second answer, which I paste here:
You can also change the grub default boot entry from the command line without having to install any additional tool. This won't change the order in the list but it will allow a different OS to boot by default, which sounds like what you may want anyway.
First, make a backup copy of /etc/default/grub
. In case something goes wrong, you can easily revert to the known-good copy.
sudo cp /etc/default/grub /etc/default/grub.bak
Then edit the file using vim
or the text editor of your choice.
sudo vim /etc/default/grub
Find the line that contains GRUB_DEFAULT=0
and set it to GRUB_DEFAULT=x
where x
is the index of grub menu item to which you would like to boot to by default. Note that the menu items are zero-indexed. That means that the first item in the list is 0
and that the sixth item is actually 5
. So to boot to the sixth item in the list, the line would read GRUB_DEFAULT=5
.
Additionally, if you want to use a kernel in the "Previous Linux Versions" menu, you'll want to change GRUB_DEFAULT=0 to GRUB_DEFAULT="2>x" (make sure to include the quotations), where x is the placement of the old kernel on the sub-list (assuming the "Previous Linux Versions" is third on the main list). Remember that the list always begins counting at 0.
Then build the updated grub menu.
sudo update-grub
Both Linux 3.5.0-45-generic and Linux 3.2.0-34-generic-pae were installed when I upgraded from 12.04 to 12.10. Any idea why the first would not work, but the second does?
– MellowDios Feb 14 '14 at 00:31sudo apt-get install kde
to reinstall KDE environment.kde
is a meta package for KDE environment. Doing the above command will install all default packages for KDE. You can read more aboutMeta packages
here. PS: If you accept my answer as the answer for your question, mark my answer asaccepted
by clicking on the "Check" mark near the vote up/down arrows. – biocyberman Feb 17 '14 at 13:16