From: "Ben Peddell" Newsgroups: comp.os.msdos.djgpp References: <3 DOT 0 DOT 6 DOT 16 DOT 20030115130330 DOT 423fc348 AT pop3 DOT 01019freenet DOT de> Subject: Re: Partition/Cluster problem with sources... Lines: 54 X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 5.00.2615.200 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2615.200 Message-ID: Date: Wed, 15 Jan 2003 23:28:57 +1000 NNTP-Posting-Host: 144.139.175.26 X-Trace: newsfeeds.bigpond.com 1042636660 144.139.175.26 (Thu, 16 Jan 2003 00:17:40 EST) NNTP-Posting-Date: Thu, 16 Jan 2003 00:17:40 EST Organization: Telstra BigPond Internet Services (http://www.bigpond.com) To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com On linux, hd*1...hd*4 are primary partitions, while hd*5 and upwards are extended partitions. Was the harddrive partitioned with a third-party fdisk? MS fdisk places extended partitions on a 'string', whilst it looks to me that hda7 is sharing its 'bead' with hda6. Here's an example of what I think may be going on: MBR: 0: Primary (hda1)(C:) 1: Extended (hda5...hda9) 2: Empty 3: Empty Extended1: 0: Primary (hda5)(D:) 1: Extended (hda6...hda9) 2: Empty 3: Empty Extended2: 0: Primary (hda6)(E:) 1: Primary (hda7)(H:) 2: Extended (hda8...hda9) 3: Empty Extended3: 0: Primary (hda8)(F:) 1: Extended (hda9) 2: Empty 3: Empty Extended4: 0: Primary (hda9)(G:) 1: Empty 2: Empty 3: Empty Here's the order: MBR->Prim (hda1) MBR->Ext1->Prim (hda5) Ext1->Ext2->Prim (hda6) Ext2->Ext3->Prim (hda8) Ext3->Ext4->Prim (hda9) Ext3->Prim (hda7) Here's what the order would be if more than one primary partition existed in the MBR (I have 3 Prim's and 1 Ext): MBR->Prim (hda1) MBR->Ext1->Prim (hda5) MBR->Prim (hda2) MBR->Prim (hda3)