OS experiment: a simple FAT16 file system
- 需要建立 image 文件,执行命令
dd if=/dev/zero bs=512 count=1M of=fat16.img
- block size = 512bit
- 块数 1M
- 用 0 填充
- 格式化 image 文件,FAT16表项 16bit,执行命令
mkfs.vfat -F 16 fat16.img
- 挂载并执行
- 另起命令行步进到目标目录执行有关命令测试,同时可查看前一命令行输出的有关log判断执行过程有无错误
- https://blog.csdn.net/feelabclihu/article/details/109396707 fuse
- https://liuyehcf.github.io/2017/09/25/%E6%93%8D%E4%BD%9C%E7%B3%BB%E7%BB%9F%E5%8E%9F%E7%90%86-%E6%96%87%E4%BB%B6%E7%B3%BB%E7%BB%9F2/ file system related
- https://blog.csdn.net/yeruby/article/details/41978199?%3E brief introduction of FAT16 file system
- https://en.wikipedia.org/wiki/Design_of_the_FAT_file_system wiki