public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* howto create partitions bigger than 2TB
@ 2007-07-13 12:54 Ingo Freund
  2007-07-13 13:10 ` Salyzyn, Mark
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Ingo Freund @ 2007-07-13 12:54 UTC (permalink / raw)
  To: linux-kernel

Hi

I've got a RAID5 (driver aacraid for an ICP9047MA) with four
750GB hdds which provides a 2.25TB sized device.
None of the until now used tools will work with that device.
fdisk complains about missing cylinder count.
cfdisk misses the device size.
parted shows the right device size but only creates a partion
with 51GB.
What am I supposed to do to work with this device?
Which fs can handle it?
(CONFIG LARGE BLOCK is on)
We are talking about a 32Bit machine with vanilla kernel 2.6.21.5.

Thanks in advance,
Regards - Ingo.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* RE: howto create partitions bigger than 2TB
  2007-07-13 12:54 howto create partitions bigger than 2TB Ingo Freund
@ 2007-07-13 13:10 ` Salyzyn, Mark
  2007-07-13 14:59 ` Mark Lord
  2007-07-13 22:52 ` H. Peter Anvin
  2 siblings, 0 replies; 6+ messages in thread
From: Salyzyn, Mark @ 2007-07-13 13:10 UTC (permalink / raw)
  To: Ingo Freund, linux-kernel

Put a file system on the entire device, stop trying to partition it.

The standard DOS partition table is of no use to you above 2TB.

Sincerely -- Mark Salyzyn

> -----Original Message-----
> From: linux-kernel-owner@vger.kernel.org 
> [mailto:linux-kernel-owner@vger.kernel.org] On Behalf Of Ingo Freund
> Sent: Friday, July 13, 2007 8:55 AM
> To: linux-kernel@vger.kernel.org
> Subject: howto create partitions bigger than 2TB 
> 
> Hi
> 
> I've got a RAID5 (driver aacraid for an ICP9047MA) with four
> 750GB hdds which provides a 2.25TB sized device.
> None of the until now used tools will work with that device.
> fdisk complains about missing cylinder count.
> cfdisk misses the device size.
> parted shows the right device size but only creates a partion
> with 51GB.
> What am I supposed to do to work with this device?
> Which fs can handle it?
> (CONFIG LARGE BLOCK is on)
> We are talking about a 32Bit machine with vanilla kernel 2.6.21.5.
> 
> Thanks in advance,
> Regards - Ingo.
> -
> To unsubscribe from this list: send the line "unsubscribe 
> linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/
> 

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: howto create partitions bigger than 2TB
  2007-07-13 12:54 howto create partitions bigger than 2TB Ingo Freund
  2007-07-13 13:10 ` Salyzyn, Mark
@ 2007-07-13 14:59 ` Mark Lord
  2007-07-13 22:52 ` H. Peter Anvin
  2 siblings, 0 replies; 6+ messages in thread
From: Mark Lord @ 2007-07-13 14:59 UTC (permalink / raw)
  To: Ingo Freund; +Cc: linux-kernel

Ingo Freund wrote:
> Hi
> 
> I've got a RAID5 (driver aacraid for an ICP9047MA) with four
> 750GB hdds which provides a 2.25TB sized device.
> None of the until now used tools will work with that device.
> fdisk complains about missing cylinder count.
> cfdisk misses the device size.
> parted shows the right device size but only creates a partion
> with 51GB.
> What am I supposed to do to work with this device?

Create a single RAID which covers the entire drive set
(as it sounds like you have already done).

Then use LVM on top of that, instead of conventional partitions.

-ml

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: howto create partitions bigger than 2TB
  2007-07-13 12:54 howto create partitions bigger than 2TB Ingo Freund
  2007-07-13 13:10 ` Salyzyn, Mark
  2007-07-13 14:59 ` Mark Lord
@ 2007-07-13 22:52 ` H. Peter Anvin
  2007-07-17 11:19   ` Ingo Freund
  2 siblings, 1 reply; 6+ messages in thread
From: H. Peter Anvin @ 2007-07-13 22:52 UTC (permalink / raw)
  To: Ingo Freund; +Cc: linux-kernel

Ingo Freund wrote:
> Hi
> 
> I've got a RAID5 (driver aacraid for an ICP9047MA) with four
> 750GB hdds which provides a 2.25TB sized device.
> None of the until now used tools will work with that device.
> fdisk complains about missing cylinder count.
> cfdisk misses the device size.
> parted shows the right device size but only creates a partion
> with 51GB.
> What am I supposed to do to work with this device?
> Which fs can handle it?
> (CONFIG LARGE BLOCK is on)
> We are talking about a 32Bit machine with vanilla kernel 2.6.21.5.
> 

You have to use GPT partitions instead of DOS partitions (although you
may have to leave your /boot as an DOS partitions, this is supposed to
be possible as the two partitioning schemes are designed to coexist, but
I don't think parted has support for it yet.)

	-hpa

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: howto create partitions bigger than 2TB
  2007-07-13 22:52 ` H. Peter Anvin
@ 2007-07-17 11:19   ` Ingo Freund
  2007-07-17 11:39     ` Jesper Juhl
  0 siblings, 1 reply; 6+ messages in thread
From: Ingo Freund @ 2007-07-17 11:19 UTC (permalink / raw)
  To: linux-kernel

On 14.07.2007 00:52, H. Peter Anvin wrote (please find the answer below the original text):
> Ingo Freund wrote:
>> Hi
>>
>> I've got a RAID5 (driver aacraid for an ICP9047MA) with four
>> 750GB hdds which provides a 2.25TB sized device.
>> None of the until now used tools will work with that device.
>> fdisk complains about missing cylinder count.
>> cfdisk misses the device size.
>> parted shows the right device size but only creates a partion
>> with 51GB.
>> What am I supposed to do to work with this device?
>> Which fs can handle it?
>> (CONFIG LARGE BLOCK is on)
>> We are talking about a 32Bit machine with vanilla kernel 2.6.21.5.
>>
> 
> You have to use GPT partitions instead of DOS partitions (although you
> may have to leave your /boot as an DOS partitions, this is supposed to
> be possible as the two partitioning schemes are designed to coexist, but
> I don't think parted has support for it yet.)
> 

This is the solution (for use as a data container on a backup machine):

parted /dev/sdb:
(parted) mklabel gpt
(parted) mkpart p 0 100%
(parted) quit
mkreiserfs /dev/sdb1
...and all seems to work.

Thank you all very much for your hints.

Regards - Ingo.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: howto create partitions bigger than 2TB
  2007-07-17 11:19   ` Ingo Freund
@ 2007-07-17 11:39     ` Jesper Juhl
  0 siblings, 0 replies; 6+ messages in thread
From: Jesper Juhl @ 2007-07-17 11:39 UTC (permalink / raw)
  To: Ingo Freund; +Cc: linux-kernel

On 17/07/07, Ingo Freund <linux-kernel-news@e-dict.net> wrote:
> On 14.07.2007 00:52, H. Peter Anvin wrote (please find the answer below the original text):
> > Ingo Freund wrote:
> >> Hi
> >>
> >> I've got a RAID5 (driver aacraid for an ICP9047MA) with four
> >> 750GB hdds which provides a 2.25TB sized device.
> >> None of the until now used tools will work with that device.
> >> fdisk complains about missing cylinder count.
> >> cfdisk misses the device size.
> >> parted shows the right device size but only creates a partion
> >> with 51GB.
> >> What am I supposed to do to work with this device?
> >> Which fs can handle it?
> >> (CONFIG LARGE BLOCK is on)
> >> We are talking about a 32Bit machine with vanilla kernel 2.6.21.5.
> >>
> >
> > You have to use GPT partitions instead of DOS partitions (although you
> > may have to leave your /boot as an DOS partitions, this is supposed to
> > be possible as the two partitioning schemes are designed to coexist, but
> > I don't think parted has support for it yet.)
> >
>
> This is the solution (for use as a data container on a backup machine):
>
> parted /dev/sdb:
> (parted) mklabel gpt
> (parted) mkpart p 0 100%
> (parted) quit
> mkreiserfs /dev/sdb1
> ...and all seems to work.
>

Why not simply
mkreiserfs /dev/sdb
and forget about partitions entirely?

-- 
Jesper Juhl <jesper.juhl@gmail.com>
Don't top-post  http://www.catb.org/~esr/jargon/html/T/top-post.html
Plain text mails only, please      http://www.expita.com/nomime.html

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2007-07-17 11:39 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-07-13 12:54 howto create partitions bigger than 2TB Ingo Freund
2007-07-13 13:10 ` Salyzyn, Mark
2007-07-13 14:59 ` Mark Lord
2007-07-13 22:52 ` H. Peter Anvin
2007-07-17 11:19   ` Ingo Freund
2007-07-17 11:39     ` Jesper Juhl

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox