LinuxQuestions.org
Did you know LQ has a Linux Hardware Compatibility List?
Go Back   LinuxQuestions.org > Forums > Non-*NIX Forums > General
User Name
Password
General This forum is for non-technical general discussion which can include both Linux and non-Linux topics. Have fun!

Notices

Reply
 
LinkBack Search this Thread
Old 05-15-2007, 06:58 PM   #1
jscottdl
LQ Newbie
 
Registered: May 2007
Location: AB, Canada
Distribution: Mandriva 2007, PCLinuxOS, SLAX
Posts: 16

Rep: Reputation: 0
Mystery drive letter on multiboot system


My problem is similar to the one here, but I couldn't find an answer I could use.

For most of the time I was trying to configure my system, WindowsME saw C: (13GB) and D: (58GB). Now that the system's working, it sees C: (13GB) D: ("Would you like to format it now?" - No) and E: (58GB). How do I get it back to just C: and D: ? I don't want to take the risk of formatting and having Windows wreck my Linux partitions. Is there anything I can do within Ubuntu or Mandriva? This is the result of 'fdisk -l':

Code:
Disk /dev/sda: 250.0 GB, 250059350016 bytes
240 heads, 63 sectors/track, 32301 cylinders
Units = cylinders of 15120 * 512 = 7741440 bytes

   Device Boot      Start         End      Blocks   Id
 System
/dev/sda1   *           1          16      120928+  83 Linux
/dev/sda2             660       32294   239160600    f W95 Ext'd (LBA)
/dev/sda3              17         659     4861080   83 Linux
/dev/sda5             660        8409    58589968+   b W95 FAT32
/dev/sda6            8410        8499      680368+  82 Linux swap / Solaris
/dev/sda7            8500        8887     2933248+  83 Linux
/dev/sda8            8888       10179     9767488+  83 Linux
/dev/sda9           10180       15346    39062488+  83 Linux
/dev/sda10          15347       15395      370408+  83 Linux
/dev/sda11          15396       16070     5102968+  83 Linux
/dev/sda12          16071       16163      703048+  82 Linux swap / Solaris
/dev/sda13          16164       17543    10432768+  83 Linux
/dev/sda14          17544       18216     5087848+  83 Linux
/dev/sda15          18217       31760   102392608+  83 Linux
/dev/sda16          31761       32294     4037008+  83 Linux

Partition table entries are not in disk order

Disk /dev/sdb: 15.0 GB, 15020457984 bytes
240 heads, 63 sectors/track, 1940 cylinders
Units = cylinders of 15120 * 512 = 7741440 bytes

   Device Boot      Start         End      Blocks   Id
 System
/dev/sdb1   *           1        1940    14666368+   c
 W95 FAT32 (LBA)
Thanks in advance for any help you can give me.
 
Old 05-15-2007, 08:46 PM   #2
pixellany
LQ Veteran
 
Registered: Nov 2005
Location: Annapolis, MD
Distribution: back to Arch
Posts: 16,659

Rep: Reputation: 425Reputation: 425Reputation: 425Reputation: 425Reputation: 425
Good Grief!!! You've got a lot of stuff there.
2 FAT32 partitions--I assume that Windows ME is on one of them. What is the other one?
Another assumption: All those Linux partitions are for various distros.

Is everything working in both Windows and the various Linuces? If so, then I would not worry about Windows trying to format one of the partitions.

And why 2 Linux swap partitions?
 
Old 05-15-2007, 09:27 PM   #3
jscottdl
LQ Newbie
 
Registered: May 2007
Location: AB, Canada
Distribution: Mandriva 2007, PCLinuxOS, SLAX
Posts: 16

Original Poster
Rep: Reputation: 0
sda5 (or hda5) is the only one that's supposed to be a Windows partition. sda2 looks like it refers to the entire drive (minus the first two partitions). It's not too important, but I don't want to accidently format D: someday.

I have Ubuntu and Mandriva - that's why there's two Linux swap partitions. Wasn't sure how many partitions I needed, but those are the ones I settled on

Last edited by jscottdl; 05-15-2007 at 09:29 PM.
 
Old 05-16-2007, 03:03 AM   #4
jscottdl
LQ Newbie
 
Registered: May 2007
Location: AB, Canada
Distribution: Mandriva 2007, PCLinuxOS, SLAX
Posts: 16

Original Poster
Rep: Reputation: 0
I used a program called TweakUI to hide drive D from Windows Explorer. It's not what I wanted, but I guess that's all I get.

Last edited by jscottdl; 05-16-2007 at 03:07 AM.
 
Old 05-16-2007, 07:00 AM   #5
masonm
Senior Member
 
Registered: Mar 2003
Location: Following the white rabbit
Distribution: Slackware64 13.37 Android 4.0
Posts: 2,244

Rep: Reputation: 45
Your two Linux distros can share a swap, no need to have one for each.
 
Old 05-16-2007, 07:14 AM   #6
rkelsen
Senior Member
 
Registered: Sep 2004
Distribution: slackware
Posts: 1,575

Rep: Reputation: 97
Quote:
Originally Posted by jscottdl
I used a program called TweakUI to hide drive D from Windows Explorer. It's not what I wanted, but I guess that's all I get.
You certainly have a few partitions there!

What tools did you use to partition your disks?

Personally, I only ever use "fdisk" from the "util-linux" package to create/modify the partitions on a disk. Even when I have to create Windows partitions.
 
Old 05-16-2007, 08:02 AM   #7
michaelk
Moderator
 
Registered: Aug 2002
Posts: 9,915

Rep: Reputation: 338Reputation: 338Reputation: 338Reputation: 338
sda2 is an extended partition which in a nutshell is a container for logical partitions i.e. any sdax where x >=5. An extended partition allows one to create more then four partitions on a drive. Windows should not assign an extended partition a drive letter and not sure why or if the unknown D: is really referring to the extended partition. The unknown d: might be sda1. You could try removing the active flag from sda1 and see what happens. linux does not use this flag anyway.

Windows 98 always assigns c: to the active partition on the boot drive followed by the first active partition recognized on the next physical hard drive. Then non active and logical drives are assigned. All non DOS partitions should be ignored. I've seen posts where non DOS drives were being assigned a drive letter but I do not remember why.
 
Old 05-17-2007, 12:46 AM   #8
jscottdl
LQ Newbie
 
Registered: May 2007
Location: AB, Canada
Distribution: Mandriva 2007, PCLinuxOS, SLAX
Posts: 16

Original Poster
Rep: Reputation: 0
Could someone tell me how to change the active flag or direct me to somewhere that can? I can't find any examples.

I formatted and installed Fedora, then went back to Ubuntu (Fedora looks great but it's too slow). I've got Ubuntu and Mandriva on my drive again with just one swap partition between the two of them. Now's the time to do installations, when I don't have much data to back up.

I have a MaxBlast floppy disk that lets me do Windows partitions, then I delete some of them with the Linux custom installers - and use the custom installers to create probably more partitions than I need. But there aren't as many now:

Code:
Disk /dev/sda: 250.0 GB, 250059350016 bytes
240 heads, 63 sectors/track, 32301 cylinders
Units = cylinders of 15120 * 512 = 7741440 bytes

   Device Boot      Start         End      Blocks   Id
 System
/dev/sda1   *           1          16      120928+  83 Linux
/dev/sda2              17       32253   243711657    f W95 Ext'd (LBA)
/dev/sda5            1293        9042    58589968+   b W95 FAT32
/dev/sda6              17        1292     9646497   83 Linux
/dev/sda7            9043        9132      680368+  82 Linux swap / Solaris
/dev/sda8            9133        9649     3908488+  83 Linux
/dev/sda9            9650       14816    39062488+  83 Linux
/dev/sda10          14817       14866      377968+  83 Linux
/dev/sda11          14867       15761     6766168+  83 Linux
/dev/sda12          15762       32253   124679488+  83 Linux

Last edited by jscottdl; 05-17-2007 at 04:29 AM.
 
  


Reply

Tags
unwanted


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Toshiba SATA -- No Drive letter kidzmom3 Linux - Laptop and Netbook 17 07-26-2006 03:23 PM
smaller drive to larger drive duplication mystery midlifecrisis Solaris / OpenSolaris 6 02-01-2006 07:23 AM
Partition drive letter cannot be identified? colly Linux - General 7 06-21-2004 11:03 AM
Assign Drive Letter in Linux? UTKEngineer Linux - Newbie 3 10-28-2003 10:34 PM
Zip drive speed mystery kemkem Linux - General 1 09-18-2003 10:52 AM


All times are GMT -5. The time now is 02:38 AM.

Main Menu
 
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
identi.ca: @linuxquestions
Facebook: @linuxquestions
Open Source Consulting | Domain Registration