Linesman wrote:Hello Madvinegar,
Bang on - Problem solved - Following your suggestion of using Look-Changer everything is back and operating correctly.
You have given me peace of mind and thank you.
I have one more query on a change that took place at the same time which if possible I would also like to correct. It's the default in the boot up Grub Menu. At present it is Zorin but I need this to be Windows XP with Zorin being selectable when required. Can I make Xp to be the default boot up?? Also in this Menu there is a double entry for Win Xp - is it in order to just right click and delete the duplicate entry??
Many thanks again.
Regards Linesman
Glad I helped my friend.
As for your other question, do the following:
In the Terminal, type the command:
- Code:
sudo gedit /etc/default/grub
You will be asked to provide your password, and then the text editor will open with the file loaded.
Now look for the line that says:
GRUB DEFAULT="0"
This line will be one of the first lines in the file, just past the comment lines that are marked with a "#". It tells GRUB2 that the default command to run is number "0" on the list, where the line numbers start with zero, and not one. This is an important detail.For example, the counting looks like this:
0. Zorin
1. Zorin recovery mode
2. Memory test
3. Memory test
4. windows
Remember which line in your GRUB2 boot menu had the Windows command? If it was, for instance, line 5, then you will need to indicate that you want the default action to be item number 4. So change the command to say:
- Code:
GRUB DEFAULT="4"
While you're at it, you could find the line that sets the countdown time for GRUB to display the menu, and change it from 10 seconds to maybe 3 seconds. This will save you a whole 7 seconds of boot-up time!
Save the changes to the file, and close it.
Go back to your Terminal. You will need to get GRUB2 to recognize the changes you made by typing:
- Code:
sudo update-grub
Restart your computer, and it should choose Windows as its default boot-up. Remember that the Windows command will still be the last item on the menu list.