Hi,
>Is there any way to access these folders and retrieve the existing data?
Yes, this is how I would approach it:
Make sure you do see the second drive in the logfiles. You say 'HDC & D'
it should look something like this: (from my own logfiles)
hda: WDC WD600AB-60BVA0, ATA DISK drive
hdb: second drive on primary IDE
hdc: TOSHIBA DVD-ROM SD-M1212, ATAPI CDROM drive
hdd: second drive on secondary IDE
So, be very sure, that you know which drive you are talking about!
(you mounted the second drive as master on the second ide-port?)
First, create a directory on your new drive, in the /home directory for instance, and call it 'mysickdrive'
So, if you go to /home/mysickdrive you will see nothing..
The command to mount any drive is something like this:
( do a 'man mount' on the working system (from the root prompt) and you will learn all about mount!)
mount /dev/hdx /home/mysickdrive (where x is the driveletter you found earlier)
.. that's it.
Now goto the directory /home/mysickdrive, and voila, everything you lost is there!
To unmount the drive after you copied everything:
umount /dev/hdx
If you have trouble reading data, you should try to use 'fsck' or 'e2fsck' on this disk
Not so long ago I treated a disk to 'e2fsck -cvpy /dev/hdxn' where x is your drive and n is the partition. (read man e2fsck). e2fsck takes more than a night with above options, but it worked for me!
First see what you can read, than try fsck, than e2fsck..
Try searching for 'adding second diskdrive' in these forums, this will give you more ideas.
As usual, ask around, get other opinions, don't take my word for it, do your own research etc etc etc....
good luck