> Hey All, > > I am doing an NFS kickstart and seem to be having some > problems with my > partitioning. I pasted a portion of my ks.cfg file below. > > zerombr yes > clearpart --all > part /boot --size 16 > part swap --size 512 > part / --size 250 > part /usr --size 1000 --grow --maxsize 2000 > part /var --size 1000 --grow --maxsize 2000 > part /usr/local --size 1000 --grow --maxsize 2000 > part /home --size 1000 --grow > install > > I was under the impression that remaining space would be > divided equally > between the 3 partitions with the max 2000 command and then the --grow > command would allocate all the remaining space to /home . > Yet if you look > at the results below of the df -h command, you will see that > my hard drives > have unallocated space ( I didn't know how to see what the > amount of swap > space is, but I only have it set at 512). Did I do something > wrong or am I > not understanding the grow and max commands incorrectly? Thanks in > advance! > > (Embedded image moved to file: pic04745.pcx) > Are you going to install this on anything smaller than 8 GB? If not, just take out the --grow --maxsize, and make them all 2GB. IMHO disk druid is not great at partitioning using the --grow feature more than once. Which version of Red Hat are you using? You can see the swap file size by doing `fdisk -l` or `fdisk -l /dev/hda` [or sda, hdb, etc.], or even `cat /proc/partitions` Forrest