Create FAT Filesystems
Last updated
Was this helpful?
Last updated
Was this helpful?
After creating a blank disk, we have to initalize it with a file system before we can use it.
In Linux, we have a command mkfs.vfat
to format the disk to FAT.
You can control various parameters of the FAT filesystem.
Suppose we would like to create a FAT32 file systems,with
2 FATs
512 bytes per sector
1 sector per cluster
32 Reserved sectors
Then the virtual disk we created earlier is now initialized.