Book Review: How to Implement Design Patterns in PHP
Enforce Coding Standards with PHP_CodeSniffer and Eclipse IDE on Ubuntu Linux
Getting Set up with Ogre 3D on Ubuntu
ENUMs, User Preferences, and the MySQL SET Datatype
Installing Xdebug for use with Eclipse on Ubuntu Linux
Using Multi-Byte Character Sets in PHP (Unicode, UTF-8, etc)
Microsoft Office Open XML
Buy the Sun Music

Restore GRUB After Installing Windows XP

Sunday, 3 January 10, 5:39 pm
compton
Note that when using grub commands, spaces are important. In particular, a space is required after the commands root and setup (but before the first bracket) and no spaces should be used inside the brackets.

1) Boot from a Live CD
2) Open a terminal window or switch to a TTY and enter:
sudo grub

3) At the grub prompt, use the following command to determine where grub is installed:
find /boot/grub/stage1

4) Using the hard disk and partition given by the above, enter:
root (hd0,6) setup (hd0)

5) Then quit grub by typing quit, and reboot your machine.

If you need more information about the partitions on your disk, use:
sudo fdisk -l


Note that the partition numbers shown by fdisk begin at zero; grub however uses a zero-based index, so you'll need to subtract one from the number given by fdisk.
 
Leave Comment
About This Page