Some of us, or rather most of us dual boot windows and Linux. Bot the operating systems are equally important to me unless you are a Linux fanatic. Windows is as much my development platform as Linux. Now, most of us using Linux also use the Grub boot loader.

Grub
An installation of Linux after windows, places Linux on the top of the grub list and Windows at the end. That also initializes with Linux in selection and our workstation boots into Linux if allowed automatically.
To change this and put Windows as the default as well as the first OS in the list, use the steps below.
- Boot into Linux, that is where you will get the file to edit the boot menu for Grub.
- Open up the terminal, enter
gksudo gedit /boot/grub/menu.lstThis brings up the grub file in Gedit, the text editor. - Look for the lines :
title Microsoft Windows XP root (hd0,2) makeactive chainloader +1
without a ‘#’ comment at the line beginning.
- Bring it above the lines for booting into Linux. That should look something like
kernel/ vmlinuz****Version** root=**** . - You are all set. Save the file, reboot.
Your windows should be on top of the grub, and the selected OS as well. Alternatively, you can set the default selection to 1, in the same file or use SUM to change these settings. I will write about SUM in a future post.


