dorian fraser moore

designer & technologist

works
  • works
    published 2003.12.10 13:43
    updated 2010.10.04 14:16

    Problems reading burnt ext2 DVDs

    Eric Waters suggests it might be a block size issue

    I've not had anyproblems with a block size of 1024, but Eric said he checked it out and 2048 was the appropriate blocksize for DVDs, so that might be it

    I found your website in a google search for info on burning DVD's in
    Linux. After following your instructions, I was able to nicely burn an
    unmountable ext2 DVD. The problem, I discovered (through the help of
    http://www.linux.net.nz/lists/NZLUG/2003/07/1243.html), is that the DVD
    is burned with a sector size of 2048k, so therefore the blocksize of the
    ext2 image (created with dd and mke2fs) must be 2048, *not 1024*.

    So, instead of:

    dd \
    if=/dev/zero \ # read input for file from /dev/zero
    of="ext2_file" \ # output file
    bs=1024k \ # file has block size of 1024k [1 Megabyte]
    count=4096 # file has 4096 blocks [4 Gigabytes]

    mke2fs \
    -b 1024 \ # block size
    -F \ # Force [I shouldn't have to use this, but I do]
    ext2_file # input file

    ... it should be this:

    dd \
    if=/dev/zero \ # read input for file from /dev/zero
    of="ext2_file" \ # output file
    bs=2048k \ # file has block size of 2048k [2 Megabytes]
    count=2048 # file has 2048 blocks [4 Gigabytes]

    mke2fs \
    -b 2048 \ # block size
    -F \ # Force [I shouldn't have to use this, but I do]
    ext2_file # input file?

    You might want to add this to the webpage so others don't burn a coaster
    like myself.

    Eric Waters

    leave a comment


    Pseudonyms welcome.


    Never spammed or displayed.


    Used to link to you.


  • home home
  • page me4
  • page page page page portfolio32
  • page page page page page page page words68
  • page page images20
  • page page page page page listening46
  • page sounds3
  • page page page page page page page page works74
  • page page page page page likes48
  • page page page page page page page page links79
  • page page page page page elsewhere44
  • page page page page page page page page page page page minutiae2097
  • timeline timeline
  • search
  • topics topics
  • contact contact