> I'm installing from scratch.. :) the disk size was just an example.. > > > On Thursday 12 July 2001 18:48, you wrote: > > Are you installing from scratch, or have you already setup > the system? Are > > you trying to kickstart the system? Why do you want to > make such a small > > fat32 partition? fat32 is very inefficient at that small > size. Why not use > > fat (fat16)? > > > > Forrest > > > > > How can I make a / partition using all of the remaining space? > > > and how can I make a fat32 partition on 45M ? > > > > > > -- > > > Sten Thorstensen <st@xxxxx> > > > eZ systems as > > > http://ez.no In kickstart (ks.cfg) you can use the --grow to use the remaining space. To create a partition type different than the standard (ext2) use the --type=X format, where X is the numerical value of the partition as found in fdisk. E.g. # Partitions zerombr yes # Initialize any invalid partition tables #clearpart --all # Clear all partitions clearpart --linux # Clear all Linux partitions (type 82, 83, fd) part swap --size 512 # All numbers are in MB part /boot --size 100 part / --size 100 --grow # This is how to use all of the remaining space part /home 3000 part /fat --size 45 --type b This is the format for Redhat 7.1, so the others may be different. The --type b is for Win95 FAT32. Type 6 is FAT16, 4 is FAT16 < 32 MB, 1 is FAT12. Others you can find by typing fdisk /dev/hda (or sda if you have scsi drives) at a command prompt in Linux, and then type L. q will exit when you are done. Forrest