In the mkfs man page, there's a mention of an "automagical" mechanism for finding the size of the parition. I guess this fails at some sort of size-limit (8GB ~ 33bit, odd...) so you need to specify the number of blocks. To find the number of blocks, you can use fdisk, using:
fdisk -l /dev/parition
The number of blocks is usually the last paramater of mkfs. For instance:
mkfs.ext3 /dev/hdc3 12345
That will format /dev/hdc3 to a size 12345. Please do not make a mistake with the number of blocks.
Last updated on 2005-05-06 14:00:00 -0800, by Shalom CraimerBack to Tech Journal