Here's what i want to ask;
If this method works, do you think the Grub setting will still be maintained? i don't want to have only Windoze on my system as i just use it for specific activities.
If it doesn't work (i'm not counting too much on the problem getting fixed) then obviously i have to re-install windows which means it will wipe the current settings. I re-searched the possible things i could do if that happened, i want you to tell me if this will surely work. I can't afford to lose the Grub settings
You can't boot into any of your Linux OSs.
First, you need to get a grub prompt (grub>) somehow. Your two choices are: (1) Use a rescue disk, like Super Grub Disk, from which you can boot into your OS, or press the “c” key to get a GRUB prompt. Or, (2) Use your Live Kubuntu CD. Let's assume (2) here. Put your Live CD in the CD tray, re-boot your PC, startup your Live Kubuntu. Then open a terminal (Konsole) get a GRUB prompt as root by typing sudo grub (then press Enter), and type the following (press Enter after each command):
grub> root (hdx,y) # (hdx,y) is the partition of your "main" Linux OS
grub> setup (hd0) # This assumes (hd0) is your “main” booting hard drive MBR
grub> quit
$ exit
First, you need to get a grub prompt (grub>) somehow. Your two choices are: (1) Use a rescue disk, like Super Grub Disk, from which you can boot into your OS, or press the “c” key to get a GRUB prompt. Or, (2) Use your Live Kubuntu CD. Let's assume (2) here. Put your Live CD in the CD tray, re-boot your PC, startup your Live Kubuntu. Then open a terminal (Konsole) get a GRUB prompt as root by typing sudo grub (then press Enter), and type the following (press Enter after each command):
grub> root (hdx,y) # (hdx,y) is the partition of your "main" Linux OS
grub> setup (hd0) # This assumes (hd0) is your “main” booting hard drive MBR
grub> quit
$ exit
Here's what fdisk -lu gives me;
Code:
nikhil@nikhil-laptop:~$ sudo fdisk -lu Disk /dev/sda: 120.0 GB, 120034123776 bytes 255 heads, 63 sectors/track, 14593 cylinders, total 234441648 sectors Units = sectors of 1 * 512 = 512 bytes Disk identifier: 0xd0f4738c Device Boot Start End Blocks Id System /dev/sda1 * 63 45062324 22531131 7 HPFS/NTFS /dev/sda2 45062325 234436544 94687110 f W95 Ext'd (LBA) /dev/sda5 45062388 49255289 2096451 82 Linux swap / Solaris /dev/sda6 49255353 65047184 7895916 83 Linux /dev/sda7 65047248 234436544 84694648+ 83 Linux
Thanks
Comment