for linux just use the "reiserfs" filesystem for the root partition when you are given the option to choose how you want to format...
let me give you an
example to help clear things up a bit:
in this example, you have two hard disks... one is the IDE primary master and the other is the IDE primary slave...
on the primary master (/dev/hda) you have windows... windows is taking up the entire disk, so there's basically just one partition (/dev/hda1)... wheather the partition is FAT32 or NTFS doesn't matter right now...
you want linux on the primary slave (/dev/hdb) disk...
let's say that /dev/hdb is a 40GB disk... so when it comes time to partition, you choose to make a 39GB root (/) partition and a 1GB swap partition... linux likes using a swap partition instead of a swap file unlike windows...
you could choose to make the swap partition an extended one, but let's keep things simple and make them both primary partitions if we can...
you choose
reiserfs as the filesystem for the root partition...
(remember this is all example)
so when you're done formatting the partitions on /dev/hdb you end-up with something that looks like this:
/dev/hda1 = Windows
/dev/hdb1 = Linux (/)
/dev/hdb2 = Linux (Swap)
okay so when it comes time to install the bootloader, you choose to install it on the MBR of /dev/hda... the idea being that as soon as the BIOS tries to boot the primary master disk, the bootloader will take over... the objective is to configure the bootloader so that it will let you choose between Windows and Linux... so the boot loader must be aware that Windows is on /dev/hda1 and Linux is on /dev/hdb1... i believe that mandrake's installer usually manages to figure this stuff out on it's own, but sometimes you might need to adjust stuff manually i guess... if everything goes well you shouldn't even need to use the rescue cd at all...
if your /dev/hdb1 partition has been formatted with the reiserfs filesystem, you'd mount it from the rescue disk like this:
Code:
mount -t reiserfs /dev/hdb1 /mnt/whatever
if your /dev/hdb1 partition has been formatted with the ext3 filesystem, you'd mount it from the rescue disk like this:
Code:
mount -t ext3 /dev/hdb1 /mnt/whatever
the "-t" option for the "mount" command simply specifies the filesystem you wanna mount... one doesn't mount "disks" or "partitions", one mounts "filesystems"...
the "vfat" type is used to mount FAT16 (such as floppies) and FAT32 filesystems such as some Windows... linux can access vfat partitions but it will almost NEVER use vfat as the filesystem for itself, for technical reasons...
try going through the install again using my example as a guide, and then let me know your new situation... i will continue to help you as best i can, it's great that you are so determined, most people would have given-up long ago... it sounds like you have the type of mentality that makes a great linux user/admin...
hang in there!!
good luck...