Comment on Could I just create my own drive format?

JumpyWombat@lemmy.ml ⁨1⁩ ⁨day⁩ ago

Building a filesystem essentially means linking a directory of filenames to physical blocks and handling CRUD operations. It’s not that hard. The hard part comes when you go beyond the basics to build something efficient with useful features. For example, fast access, journaling and fragmentation are all challenging topics. You can try without messing with the kernel by creating an in-memory filesystem (essentially a block of RAM) and playing with the I/O.

source
Sort:hotnewtop