i doubt that 'extend partition' was disigned a little complex.
why not we take EBR(extended boot record) as the first sector of a logical partition ? Then, we can get a more pure 'link list'.
Is there a reason to do a secondary positioning by reading the first entry of partition-table in EBR?
was 'extened partition' designed a little complex?
-
- Member
- Posts: 5587
- Joined: Mon Mar 25, 2013 7:01 pm
Re: was 'extened partition' designed a little complex?
The first sector of the logical partition already belongs to the filesystem in that partition, so it cannot be combined with the EBR.
Re: was 'extened partition' designed a little complex?
Excuse me, as far as i know, filesystem seldoms touchs the first sector of a device(or partition), thier superblock usually starts from 1K。Octocontrabass wrote:The first sector of the logical partition already belongs to the filesystem in that partition, so it cannot be combined with the EBR.
-
- Member
- Posts: 5587
- Joined: Mon Mar 25, 2013 7:01 pm
Re: was 'extened partition' designed a little complex?
Extended partitions were designed to work in DOS, which uses FAT. FAT places the superblock in the first sector of the partition, so the EBR cannot be located there.
Re: was 'extened partition' designed a little complex?
Great!Octocontrabass wrote:Extended partitions were designed to work in DOS, which uses FAT. FAT places the superblock in the first sector of the partition, so the EBR cannot be located there.
I will take a look at FAT.