Thanks for the help. I was able to get GRUB installed in the mbr using the information in one of the links you provide. Now I need help in getting GRUB to boot my Windows 7 installation. For some reason, when GRUB was installed it did not get the menu entry for my Windows partition correct. I get some graphical screen that wants to do a memory check. Here is what fdisk -l shows:
Disk /dev/sda: 500.1 GB, 500107862016 bytes
255 heads, 63 sectors/track, 60801 cylinders, total 976773168 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disk identifier: 0x117d34e4
Device Boot Start End Blocks Id System
/dev/sda1 63 80324 40131 6 FAT16
Partition 1 does not start on physical sector boundary.
/dev/sda2 * 80325 30800324 15360000 7 HPFS/NTFS
Partition 2 does not start on physical sector boundary.
/dev/sda3 30800325 625140399 297170037+ 7 HPFS/NTFS
Partition 3 does not start on physical sector boundary.
/dev/sda4 625141758 976771071 175814657 5 Extended
Partition 4 does not start on physical sector boundary.
/dev/sda5 625141760 683786239 29322240 83 Linux
/dev/sda6 683788288 972865535 144538624 83 Linux
/dev/sda7 972867584 976771071 1951744 82 Linux swap / Solaris
The main Win 7 partition is the sda3 and sda2 I believe is the Dell recovery partition. I don't know what the sda1 partition is and it is listed as fat16. However, here is my menu.lst file's contents.
timeout 10
color black/cyan yellow/cyan
gfxmenu (hd0,4)/boot/gfxmenu
default 0
title linux
kernel (hd0,4)/boot/vmlinuz BOOT_IMAGE=linux root=UUID=ccdfddd7-d0c5-4fc8-8527-75f8222d6683 quiet nokmsboot vmalloc=256M acpi=on resume=UUID=d14209a2-5924-445d-9ce6-8060ab8aeccb splash=silent vga=788
initrd (hd0,4)/boot/initrd.img
title linux-nonfb
kernel (hd0,4)/boot/vmlinuz BOOT_IMAGE=linux-nonfb root=UUID=ccdfddd7-d0c5-4fc8-8527-75f8222d6683 quiet nokmsboot vmalloc=256M acpi=on resume=UUID=d14209a2-5924-445d-9ce6-8060ab8aeccb
initrd (hd0,4)/boot/initrd.img
title failsafe
kernel (hd0,4)/boot/vmlinuz BOOT_IMAGE=failsafe root=UUID=ccdfddd7-d0c5-4fc8-8527-75f8222d6683 quiet nokmsboot failsafe vmalloc=256M acpi=on
initrd (hd0,4)/boot/initrd.img
title windows
root (hd0,0)
chainloader +1
title memtest-4.20
kernel (hd0,4)/boot/memtest-4.20 BOOT_IMAGE=memtest-4.20
Is there anything there that you can spot that should be changed?
Thanks for your help.