Booted up and internet is working. What's next?
Seems a little laggy but that may be because it's not installed to the HD.
Amazing! It really worked! Who'd have thunk it? 
Does the live OS see all your hardware? If you open a terminal, su to root, and enter;
[root@localhost ~]# fdisk -l <Enter>
are both hard drives seen? Post the output, if so.
Outside of being laggy, does it otherwise seem like a fully functional OS? Try playing a game or two, Write a few simple text files and save them; then delete them. Try mounting what now should be /dev/sda1, your installed / partition.
[root@localhost ~]# mkdir /here <Enter>
[root@localhost ~]# mount /dev/sda1 /here <Enter>
Try looking at the contents of the installation's fstab;
[root@localhost ~]# cat /here/etc/fstab <Enter>
Post the results.
Label your /home partition.
[root@localhost ~]# tune2fs -L home /dev/sda3 <Enter>
[root@localhost ~]# blkid /dev/sda3 <Enter>
Post that result too.
Play around as much as it takes to convince yourself that this is a fully usable environment. After that, we need to make some changes to the partitions on the hard drive, to insure that if things go badly in the first installation attempt, we'll at least have a chance for a second try. As is, if the first attempt to install fails, your menu.lst with the boot instructions for the live session will no longer exist, so we need to make a small boot partition, and copy the present /boot/grub directory to it, then reinstall grub to the MBR, using that /grub/menu.lst as the new master menu.lst.
It looks as if it sees them all:
Units = cylinders of 16065 * 512 = 8225280 bytes
Disk identifier: 0x8f800000
Device Boot Start End Blocks Id System
/dev/sda1 * 1 1912 15358108+ 83 Linux
/dev/sda2 1913 2166 2040255 5 Extended
/dev/sda3 2167 3695 12281692+ 83 Linux
/dev/sda5 1913 2166 2040223+ 82 Linux swap / Solaris
Disk /dev/sdb: 40.0 GB, 40020664320 bytes
16 heads, 63 sectors/track, 77545 cylinders
Units = cylinders of 1008 * 512 = 516096 bytes
Disk identifier: 0x2a5815e1
[root@localhost guest]# cat /here/etc/fstab
# Entry for /dev/hda1 :
UUID=3c5542d0-c6b3-418c-89a5-315ee72164db / ext3 relatime 1 1
# Entry for /dev/hda3 :
UUID=d3160b57-e569-4019-828d-b5df627f7a0e /home ext3 relatime 1 2
none /proc proc defaults 0 0
# Entry for /dev/hda5 :
UUID=77cb6b79-72e2-4915-ae8c-5390f01e2109 swap swap defaults 0 0
none /dev/pts devpts mode=0620 0 0
/dev/hdc1 /home/kevin/Documents ext3 user,exec,rw,auto 0 0
[root@localhost guest]# cat /here/etc/fstab
# Entry for /dev/hda1 :
UUID=3c5542d0-c6b3-418c-89a5-315ee72164db / ext3 relatime 1 1
# Entry for /dev/hda3 :
UUID=d3160b57-e569-4019-828d-b5df627f7a0e /home ext3 relatime 1 2
none /proc proc defaults 0 0
# Entry for /dev/hda5 :
UUID=77cb6b79-72e2-4915-ae8c-5390f01e2109 swap swap defaults 0 0
none /dev/pts devpts mode=0620 0 0
/dev/hdc1 /home/kevin/Documents ext3 user,exec,rw,auto 0 0
[root@localhost guest]# tune2fs-L home /dev/sda3
bash: tune2fs-L: command not found
[root@localhost guest]# tune2fs -L home /dev/sda3
tune2fs 1.41.9 (22-Aug-2009)
[root@localhost guest]# blkid /dev/sda3
/dev/sda3: LABEL="home" UUID="d3160b57-e569-4019-828d-b5df627f7a0e" SEC_TYPE="ext2" TYPE="ext3"
[root@localhost guest]#
Played with it, even submitted an article to a client, so everything is fully functional as far as I am concerned. Just going to have to restore my bookmarks and emails and such. Sure seems like a whole lot of work for a simple upgrade but I sincerely thank you for the effort you have put forth to give me a hand here and the clear instructions were very much appreciated as well- It actually worked with me at the controls, who'd a thunk that!!!!!!!!!!
