|
|
http://www.cs.utexas.edu/users/walter/geek/linux-tips.html
How do I make a Windows filesystem on Linux?
You got yourself some nice shiny USB external storage device (for example) and you want to create a FAT32 filesystem on it so that Windows and Linux can read it. You've already allocated a partition (Windows FAT32 LBA, type 0C) and figured out that you need to do something involving mkfs to actually create the partition, but get the following error:
[root@persephone root]# mkfs.vfat /dev/sda1
mkfs.vfat 2.9 (15 May 2003)
mkfs.vfat: Attempting to create a too large file system
This occurs if the partition is too large for a FAT filesystem. Tell it to create a FAT32 filesystem instead: mkfs.vfat -F 32 /dev/sda1
Anecdotally, I've seen Windows create a FAT32 partition on a removable storage device that Linux couldn't read (lots of errors about reading beyond the end of the device); the problem went away when I created the partition from Linux. I haven't bothered to investigate further. |
|