Re: Large file system creation

2008-04-08 Thread Erik Trulsson
On Tue, Apr 08, 2008 at 08:39:48AM -0400, Brian McCann wrote:
 Hi all.  I'm trying to create a ~9TB partition on a new file server.
 I thought FreeBSD now supported this (I'm on 7.0), but I can't figure
 it out.  I go into sysinstall, create the partition in fdisk using A
 = Use Entire Disk), write it to disk, exit sysinstall and re-run
 it...and sysinstall doesn't show what it showed before I exited last
 time.
 
 Can someone shed some light on what I'm doing wrong here?
 

The filesystem (UFS2) supports disks larger than 2TB, but fdisk(8) and
bsdlabel(8) (which are what sysinstall uses to partition the disk) do not
support disks larger than 2TB due to limitations in the on-disk format they
use.

You will need to use gpt(8) instead to partition your disk.
This cannot be done from sysinstall and you normally cannot boot from
a gpt(8)-partitioned disk due to lack of support in the BIOS of most PC.





-- 
Insert your favourite quote here.
Erik Trulsson
[EMAIL PROTECTED]
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Large file system creation

2008-04-08 Thread Wojciech Puchar

Hi all.  I'm trying to create a ~9TB partition on a new file server.
I thought FreeBSD now supported this (I'm on 7.0), but I can't figure
it out.  I go into sysinstall, create the partition in fdisk using A
= Use Entire Disk), write it to disk, exit sysinstall and re-run
it...and sysinstall doesn't show what it showed before I exited last
time.

Can someone shed some light on what I'm doing wrong here?



The filesystem (UFS2) supports disks larger than 2TB, but fdisk(8) and
bsdlabel(8) (which are what sysinstall uses to partition the disk) do not
support disks larger than 2TB due to limitations in the on-disk format they
use.

You will need to use gpt(8) instead to partition your disk.


or don't partition at all



This cannot be done from sysinstall and you normally cannot boot from
a gpt(8)-partitioned disk due to lack of support in the BIOS of most PC.


or use old disk, pendrive, DVD-ROM etc. for booting
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Large file system creation

2008-04-08 Thread Brian McCann
That looks like what I need.  I've got a seperate 32GB array to boot
off of, so that's perfect.  Now to just read some man pages.  Thanks!

--Brian

On Tue, Apr 8, 2008 at 9:30 AM, Erik Trulsson [EMAIL PROTECTED] wrote:
 On Tue, Apr 08, 2008 at 08:39:48AM -0400, Brian McCann wrote:
   Hi all.  I'm trying to create a ~9TB partition on a new file server.
   I thought FreeBSD now supported this (I'm on 7.0), but I can't figure
   it out.  I go into sysinstall, create the partition in fdisk using A
   = Use Entire Disk), write it to disk, exit sysinstall and re-run
   it...and sysinstall doesn't show what it showed before I exited last
   time.
  
   Can someone shed some light on what I'm doing wrong here?
  

  The filesystem (UFS2) supports disks larger than 2TB, but fdisk(8) and
  bsdlabel(8) (which are what sysinstall uses to partition the disk) do not
  support disks larger than 2TB due to limitations in the on-disk format they
  use.

  You will need to use gpt(8) instead to partition your disk.
  This cannot be done from sysinstall and you normally cannot boot from
  a gpt(8)-partitioned disk due to lack of support in the BIOS of most PC.





  --
  Insert your favourite quote here.
  Erik Trulsson
  [EMAIL PROTECTED]




-- 
_-=-_-=-_-=-_-=-_-=-_-=-_-=-_-=-_-=-_-=-_-=-_
Brian McCann

I don't have to take this abuse from you -- I've got hundreds of
people waiting to abuse me.
 -- Bill Murray, Ghostbusters
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Large file system creation

2008-04-08 Thread Brian McCann
Hmm...didn't think of that...didn't think fsck used that much
RAM...and thought it was independent of the file system size.  Right
now it's got 2GB.

On Tue, Apr 8, 2008 at 11:28 AM, Alexandre Biancalana
[EMAIL PROTECTED] wrote:
 On 4/8/08, Brian McCann [EMAIL PROTECTED] wrote:
   That looks like what I need.  I've got a seperate 32GB array to boot
off of, so that's perfect.  Now to just read some man pages.  Thanks!

  How many memory do you have in this machine ?? To fsck 9 TB you will
  need a LOT of memory




-- 
_-=-_-=-_-=-_-=-_-=-_-=-_-=-_-=-_-=-_-=-_-=-_
Brian McCann

I don't have to take this abuse from you -- I've got hundreds of
people waiting to abuse me.
 -- Bill Murray, Ghostbusters
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Large file system creation

2008-04-08 Thread Alexandre Biancalana
On 4/8/08, Brian McCann [EMAIL PROTECTED] wrote:
 That looks like what I need.  I've got a seperate 32GB array to boot
  off of, so that's perfect.  Now to just read some man pages.  Thanks!

How many memory do you have in this machine ?? To fsck 9 TB you will
need a LOT of memory
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Large file system creation

2008-04-08 Thread Wojciech Puchar

That looks like what I need.  I've got a seperate 32GB array to boot
 off of, so that's perfect.  Now to just read some man pages.  Thanks!


How many memory do you have in this machine ?? To fsck 9 TB you will


there is swap too . but my 1.4TB partition can be fsck'ed on 1GB RAM 
without swap.



need a LOT of memory

depends of block sized and inode counts.

it will be most likely large 32K blocks, so quick fsck and little RAM


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Large file system creation

2008-04-08 Thread Alexandre Biancalana
On 4/8/08, Brian McCann [EMAIL PROTECTED] wrote:
 Hmm...didn't think of that...didn't think fsck used that much
  RAM...and thought it was independent of the file system size.  Right
  now it's got 2GB.

so better you think a little more before execute and do some tests
before production too... Try gjournal
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Large file system creation

2008-04-08 Thread Josh Paetzel
On Tuesday 08 April 2008 11:20:58 am Wojciech Puchar wrote:
  That looks like what I need.  I've got a seperate 32GB array to boot
   off of, so that's perfect.  Now to just read some man pages.  Thanks!
 
  How many memory do you have in this machine ?? To fsck 9 TB you will

 there is swap too . but my 1.4TB partition can be fsck'ed on 1GB RAM
 without swap.

  need a LOT of memory

 depends of block sized and inode counts.

 it will be most likely large 32K blocks, so quick fsck and little RAM


In my experience with UFS2 and fsck you will want to have a gig of ram per TB 
of filesystem.  You can get by with less sometimes, eventually you'll get 
bit.  Most mere mortals don't take UFS2 past 6-8TB in production.

There are of course exceptions

-- 
Thanks,

Josh Paetzel

PGP: 8A48 EF36 5E9F 4EDA 5A8C 11B4 26F9 01F1 27AF AECB


signature.asc
Description: This is a digitally signed message part.


Re: Large file system creation

2008-04-08 Thread Wojciech Puchar

it will be most likely large 32K blocks, so quick fsck and little RAM



In my experience with UFS2 and fsck you will want to have a gig of ram per TB
of filesystem.  You can get by with less sometimes, eventually you'll get
bit.  Most mere mortals don't take UFS2 past 6-8TB in production.

There are of course exceptions


you talk about VM, not real memory. i don't think making 10GB swap is a 
problem.



___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Large file system creation

2008-04-08 Thread Alexandre Biancalana
On 4/8/08, Wojciech Puchar [EMAIL PROTECTED] wrote:
 
   it will be most likely large 32K blocks, so quick fsck and little RAM
  
  
 
  In my experience with UFS2 and fsck you will want to have a gig of ram per
 TB
  of filesystem.  You can get by with less sometimes, eventually you'll get
  bit.  Most mere mortals don't take UFS2 past 6-8TB in production.
 
  There are of course exceptions
 

  you talk about VM, not real memory. i don't think making 10GB swap is a
 problem.

The problem is the time that it will take to fsck a 9TB filesystem.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Large file system creation

2008-04-08 Thread Wojciech Puchar


 you talk about VM, not real memory. i don't think making 10GB swap is a
problem.


The problem is the time that it will take to fsck a 9TB filesystem.


depends mostly of file count not size.

my 1.4TB partition is checked shorter than 20GB squid partition
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Large file system creation

2008-04-08 Thread Edward Capriolo
On Tue, Apr 8, 2008 at 9:38 AM, Wojciech Puchar
[EMAIL PROTECTED] wrote:

 
   Hi all.  I'm trying to create a ~9TB partition on a new file server.
   I thought FreeBSD now supported this (I'm on 7.0), but I can't figure
   it out.  I go into sysinstall, create the partition in fdisk using A
   = Use Entire Disk), write it to disk, exit sysinstall and re-run
   it...and sysinstall doesn't show what it showed before I exited last
   time.
  
   Can someone shed some light on what I'm doing wrong here?
  
  
 
  The filesystem (UFS2) supports disks larger than 2TB, but fdisk(8) and
  bsdlabel(8) (which are what sysinstall uses to partition the disk) do not
  support disks larger than 2TB due to limitations in the on-disk format
 they
  use.
 
  You will need to use gpt(8) instead to partition your disk.
 

  or don't partition at all




  This cannot be done from sysinstall and you normally cannot boot from
  a gpt(8)-partitioned disk due to lack of support in the BIOS of most PC.
 

  or use old disk, pendrive, DVD-ROM etc. for booting


  ___
  freebsd-questions@freebsd.org mailing list
  http://lists.freebsd.org/mailman/listinfo/freebsd-questions
  To unsubscribe, send any mail to
 [EMAIL PROTECTED]

Seems like a shame to boot a nice 9TB disk pack off a floppy Disk or a
Pen drive. I mean you do what you have to but that just screams
'workaround'
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Large file system creation

2008-04-08 Thread Mel
On Tuesday 08 April 2008 21:12:00 Edward Capriolo wrote:

 Seems like a shame to boot a nice 9TB disk pack off a floppy Disk or a
 Pen drive. I mean you do what you have to but that just screams
 'workaround'

Or worrying about 1 minute longer boot cycle on 90 days+ uptime screams 
optimization fever.

-- 
Mel

Problem with today's modular software: they start with the modules
and never get to the software part.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Large file system creation

2008-04-08 Thread Wojciech Puchar

On our older servers that wouldn't even recognize a 2TB partition
(which is where the OS was too), we used a CF card and CF card adapter
to boot from.  Slightly more gracious...


CD/DVD drive isn't bad too. anyway - you don't change kernel every day.

or pendrive. possibly floppy but i don't know if kernel (with at least 
disk driver and ufs) can fit on it compressed. i don't think so.


ZIPdrives internal (i've got a bit for free).

netboot

or simply small hard disk. there are lot of options.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Large file system creation

2008-04-08 Thread Wojciech Puchar

Seems like a shame to boot a nice 9TB disk pack off a floppy Disk or a
Pen drive. I mean you do what you have to but that just screams
'workaround'


Or worrying about 1 minute longer boot cycle on 90 days+ uptime screams


doesn't matter at all. it is workaround, but over strange BIOS software, 
not FreeBSD

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Large file system creation

2008-04-08 Thread Brian McCann
On our older servers that wouldn't even recognize a 2TB partition
(which is where the OS was too), we used a CF card and CF card adapter
to boot from.  Slightly more gracious...

On Tue, Apr 8, 2008 at 3:12 PM, Edward Capriolo [EMAIL PROTECTED] wrote:
 On Tue, Apr 8, 2008 at 9:38 AM, Wojciech Puchar

 [EMAIL PROTECTED] wrote:
  
   


Hi all.  I'm trying to create a ~9TB partition on a new file server.
 I thought FreeBSD now supported this (I'm on 7.0), but I can't figure
 it out.  I go into sysinstall, create the partition in fdisk using A
 = Use Entire Disk), write it to disk, exit sysinstall and re-run
 it...and sysinstall doesn't show what it showed before I exited last
 time.

 Can someone shed some light on what I'm doing wrong here?


   
The filesystem (UFS2) supports disks larger than 2TB, but fdisk(8) and
bsdlabel(8) (which are what sysinstall uses to partition the disk) do not
support disks larger than 2TB due to limitations in the on-disk format
   they
use.
   
You will need to use gpt(8) instead to partition your disk.
   
  
or don't partition at all
  
  
  
  
This cannot be done from sysinstall and you normally cannot boot from
a gpt(8)-partitioned disk due to lack of support in the BIOS of most PC.
   
  
or use old disk, pendrive, DVD-ROM etc. for booting
  
  

   ___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to
   [EMAIL PROTECTED]
  
  Seems like a shame to boot a nice 9TB disk pack off a floppy Disk or a
  Pen drive. I mean you do what you have to but that just screams
  'workaround'




-- 
_-=-_-=-_-=-_-=-_-=-_-=-_-=-_-=-_-=-_-=-_-=-_
Brian McCann

I don't have to take this abuse from you -- I've got hundreds of
people waiting to abuse me.
 -- Bill Murray, Ghostbusters
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]