Using the live CD I created 2 partitions on a 1 TB drive then installed PCLOS and Win 7 (in that order). Both the PCLOS and Win 7 installations went really well. Now the computer only boots into Windows 7, which after reading several posts about dual booting PCLOS and windows I think is normal. I don't feel I know enough about modifying the boot loader to dual-boot both OSs. I'd really appreciate guidance from some kind soul before I try.
Please see below fdisk -l output:
Disk /dev/sda: 1000.2 GB, 1000204886016 bytes
255 heads, 63 sectors/track, 121601 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Disk identifier: 0xb85fb630
Device Boot Start End Blocks Id System
/dev/sda1 1 38588 309958078+ 83 Linux
/dev/sda2 38589 46779 65794207+ 5 Extended
/dev/sda3 * 46780 121601 601007715 7 HPFS/NTFS
/dev/sda5 38589 46779 65794176 82 Linux swap / Solaris
First item is that your partition table is all screwed up. Your extended partition is not in fact an extended partition except in name only. It houses a single partition that covers it entirely; ie the swap partition.
Each hard drive is allowed 4 primary partitions. If more are needed, one primary partition can be designated as an extended partition which acts as a container for numerous logical partitions. What you have is, in fact, the equivalent of three primary partitions. Your /dev/sda2 and /dev/sda5 are in fact the same single partition, with two names, that serves no real purpose.
Next, you should have installed Windows first, so it would already exist when you installed PCLinuxOS, and it's grub boot loader. Had you done this, there would automatically be entries to boot both OS; as is, there will be no Windows stanza/entry in
/boot/grub/menu.lst. You will have to manually create a Windows boot stanza now.
Given the information as you've presented it, the stanza should be;
title Windows
rootnoverify (hd0,2)
makeactive
chainloader +1You will have to edit
/boot/grub/menu.lst, as
root, in order to
add the stanza, and be able to
save the file.