Quote (iakudi @ Oct. 20 2005,17:45) |
I have created 2 partitions /dev/hda1 (primary and bootable) and /dev/hda3 (extended, with /dev/hda5 as logical). When I do the frugal_lite install I want to eventually install frugal in /dev/hda1, so when it prompts me for which partition to fold the iso in and which t install in and I correct is saying I want to download the iso in /dev/hda1 and install in dev/hda5?? I will later install frugal in dev/hda1....so I can get rid of the floppy. |
Code Sample |
fi echo -n "Enter the partition to hold the iso (eg: hda1): " read SOURCE if test "$SOURCE"; then; else echo "no source partition entered." exit 1 fi echo -n "Enter the partition to install into (eg: hda2): " read TARGET if test "$TARGET"; then; else echo "no target partition entered." exit 1 |
Code Sample |
echo "You must have created and formatted two empty and unmounted Linux partitions." echo "1. One large enough to hold the downloaded iso." echo "2. The other large enough for poorman's install." echo echo "You must also have a no bad sectors unmounted floppy inserted into drive." |