1

我正在尝试在我的 Ubuntu 上创建一个 FAT16 文件系统。

所以,我首先用dd if=/dev/zero of=Fat16.bin bs=1024 count=8192.

这将创建一个充满零的 8MB 文件。

然后,我通过发出以下命令将此文件格式化为 FAT16 文件系统mkfs.vfat -f2 -n FAT16 -r 224 -s8 -S512 -F16 Fat16.bin

但这给了我以下错误。

WARNING: Not enough clusters for a 16 bit FAT! 
The filesystem will be misinterpreted as having a 12 bit FAT without mount option "fat=16"

就我而言,FAT16 文件系统的最小大小为 4MB,所以我不明白这里发生了什么。

4

2 回答 2

2

我找到了答案,

来自https://staff.washington.edu/dittrich/misc/fatgen103.pdf(参见“FAT 类型确定”)的簇数必须在 4085 <=> 65525 之间才能格式化有效的 FAT16 分区。所以分区必须足够大,才能存储4085个簇+FAT表等元数据信息。

于 2015-04-26T12:16:36.657 回答
1

大概就是这么说的—— Not enough clusters for a 16 bit FAT。我想可以计算所需的空间,但尝试例如 16Mb 不会导致此警告:

$ dd if=/dev/zero of=Fat16.bin bs=$((1024*1024)) count=16
16+0 records in
16+0 records out
16777216 bytes (17 MB) copied, 0.0561285 s, 299 MB/s

$ mkfs.vfat -v -f2 -n FAT16 -r224 -F16 Fat16.bin
mkfs.fat 3.0.26 (2014-03-07)
Fat16.bin has 64 heads and 32 sectors per track,
hidden sectors 0x0000;
logical sector size is 512,
using 0xf8 media descriptor, with 32768 sectors;
drive number 0x80;
filesystem has 2 16-bit FATs and 4 sectors per cluster.
FAT size is 32 sectors, and provides 8171 clusters.
There is 1 reserved sector.
Root directory contains 256 slots and uses 16 sectors.
Volume ID is 30bd4358, volume label FAT16      .
于 2015-04-25T21:17:25.073 回答