And to fill in the PC world part.
Sector 0 is the partition table and PC boot block
Sectors 1-63 are the OS boot area, 1-2047 on more modern media
The rest is described by the partition table (actually so is the boot area by inference - the first sector of the first partition will be after the boot area)
Modern media also has GPT tables for big sized stuff (the PC partition system only goes so far). It lives at the far end of the disk. There is still a PC partition table as well usually for the bits that can be described for "legacy" systems.
On the old Grant Searle setups the loader blindly loads the first 24 blocks to the top 12K of RAM and then jumps to (0xFFFE). So for Fuzix I put the partition table where expected and arrange that the boot code runs from 0xFE00 so the fact there is a partition table and a pile of unused sectors doesn't bother it.
Alan