Tuning format options for large EXT3 partition

Ask a Question related to Linux Setup, Configuration & Administration, Design and Development.

  1. #1

    Default Re: Tuning format options for large EXT3 partition

    On Mon, 22 Sep 2003 16:27:57 -0500, Mauriat staggered into the Black Sun
    and said:
    > I have a 110GB partition that I want to use to record large movie
    > files. Most files would be minimum 0.5GB and go to 3-7GB. What
    > settings should I use to format the partition for optimal performance
    > and minimization of wasted space? I want to use EXT3.
    mke2fs -j -m 0 -N $NUMBER /dev/whatever
    (or)
    mke2fs -j -m 0 -T largefile4 /dev/whatever
    > Is there a guide or howto on this? I've read the mke2fs man pages,
    > but they don't specifically explain what settings you would use under
    > which conditions.
    > -b block-size
    Don't change this. It'll get set at 4096.
    > -i bytes-per-inode
    > -T fs-type
    If you want to specify the number of inodes, use -N $NUMBER, which will
    create $NUMBER inodes Don't create less than 1000; it's really annoying
    to run out of inodes. -T largefile4 will, like it says in the man page,
    create 1 inode for every 4M. This should be plenty. The biggest win
    here actually comes from -m0 , which should work because this is not /var
    or / , so your system won't get b0rken if you fill up the partition.

    --
    Matt G|There is no Darkness in Eternity/But only Light too dim for us to see
    Brainbench MVP for Linux Admin /
    [url]http://www.brainbench.com[/url] / "He is a rhythmic movement of the
    -----------------------------/ penguins, is Tux." --MegaHAL
    Dances With Crows Guest

  2. Similar Questions and Discussions

    1. DW Edit -> Preferences -> Code Format Options
      Does anyone know the configuration file that Edit -> Preferences -> Code Format pulls the information from? I need to customize this piece for my...
    2. Large Query Options
      Ok, So we've been racking our brains for a viable (and scalable) solution to this problem. We've played with a couple ideas, but I'd like to...
    3. Large format printers/plotters
      I asked the same question in the Photoshop forum and thought someone here might have some additional advise. What experiences has anyone had with...
    4. File format options
      I am using a Mac OS 10 with Photoshop 7. I've scanned slides using a Nikon scanner. When I attempt to save the image in Photoshop, I am given only...
    5. resizing an ext3 partition in RH9 possible?
      I have a primary partition that is of type ext3 with a size of 40+ GB. I would like to resize it so that I can have more control over space usage...
  3. #2

    Default Tuning format options for large EXT3 partition


    I have a 110GB partition that I want to use to record large movie files.
    Most files would be minimum 0.5GB and go to 3-7GB. What settings should
    I use to format the partition for optimal performance and minimization
    of wasted space? I want to use EXT3.

    Is there a guide or howto on this? Anyone have any experience with this?
    I've read the mke2fs man pages, but they don't specifically explain what
    settings you would use under which conditions.

    Which options would help?
    -b block-size
    -i bytes-per-inode
    -T fs-type

    --

    Mauriat
    ----------------------------
    Remove 'NOSPAM' to email me.

    Mauriat Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139