I am trying to understand
Blockquote
how to figure out the logical block number and offset.
Offset from beginning of file: 2000 bytes.
Block size = 512 bytes.
2000 / 512 = 3 with a remainder of 464.
Logical block number = 3.
Oset within block = 464.
So it seems to find this you just divide the Offset from the Block size. But when I do this I get
3.90625
.
Why is this different from the example? What am I doing wrong? Thanks.