Tagged Questions
The superblock tag has no wiki summary.
7
votes
3answers
2k views
Why do inode numbers start from 1 and not 0?
The C language convention counts array indices from 0. Why do inode numbers start from 1 and not 0?
If inode 0 is reserved is for some special use, then what is the significance of inode 0?
2
votes
2answers
484 views
Reading the Superblock
I know that in Unix (specifically, Mac OS X) the superblock stores information about the layout of data on the disk, including the disk addresses at which the inodes begin and end. I want to scan the ...
0
votes
0answers
64 views
How do I use the inode bitmap or block bitmap?
I can access the super-block and group-descriptor in a EXT2 file system, but I'm having trouble opening the bitmaps. So far I can get my file by searching the inode table, but this obviously isn't the ...
0
votes
1answer
176 views
ext2 “image” files vs real ext2 devices
I'm tasked with writing a reader program for windows that is able read an ext2 partition.
For my testing I'm using a drive I formatted to ext2 and a file I created using mkfs (a file that does mount ...