Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Peter Korsgaard <jacmet@uclibc.org>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH] manual: add section about dealing efficiently with big image files
Date: Sun, 15 Dec 2013 20:54:39 +0100	[thread overview]
Message-ID: <87k3f5vqio.fsf@dell.be.48ers.dk> (raw)
In-Reply-To: <1387133792-32363-1-git-send-email-yann.morin.1998@free.fr> (Yann E. MORIN's message of "Sun, 15 Dec 2013 19:56:32 +0100")

>>>>> "Yann" == Yann E MORIN <yann.morin.1998@free.fr> writes:

 > From: "Yann E. MORIN" <yann.morin.1998@free.fr>
 > As reported by Ryan, it is not well-known that most tools can deal
 > efficiently with big sparse files.

 > Add a section in the manual about this, with three tools as examples,
 > and a hint to the man pages for the others.

...

 > +* +tar+ accepts the +-S+ option to tell it to only store non-zero blocks
 > +  of sparse files:
 > +** +tar cf archive.tar -S [files...]+ will efficiently store sparse files
 > +   in a tarball
 > +** +tar xf archive.tar -S+ will efficiently store sparse files extracted
 > +   from a tarball
 > +
 > +* +cp+ accepts the +--sparse=WHEN+ option (+WHEN+ is one of +auto+,
 > +  +never+ or +always+):
 > +** +cp --sparse=always source.file dest.file+ will make +dest.file+ a
 > +   sparse file if +source.file+ has long runs of zeroes
 > +
 > +* +dd+ accepts the +sparse+ value in a +conv+ list (specifying the
 > +  block-size is recommended):

We should probably note that these things are only supported by (recent
versions of ) the big GNU versions of the tools, not the busybox variant
(which people are likely to be using).


 > +** +dd if=image.file of=/dev/device bs=131072 conv=sparse+ will only
 > +   write to +/dev/device+ the blocks of +image.file+ that are not made
 > +   only of zeroes

Is that safe advise when writing to devices? If the image file contains
128K of spaces in the used part of the filesystem (E.G. as part of a
file or in the block bitmap or wherever), then that data will not be
written and you will instead read back whatever was at that location in
the device before.

I think that you should be using bigger block sizes, tools that
understand the filesystem layout or resize afterwards (E.G. resize2fs)
instead.

-- 
Bye, Peter Korsgaard

  reply	other threads:[~2013-12-15 19:54 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-12-15 18:56 [Buildroot] [PATCH] manual: add section about dealing efficiently with big image files Yann E. MORIN
2013-12-15 19:54 ` Peter Korsgaard [this message]
2013-12-15 22:25   ` Yann E. MORIN
2013-12-15 22:38     ` Peter Korsgaard
2013-12-15 22:48       ` Yann E. MORIN
2013-12-15 23:28         ` Peter Korsgaard
  -- strict thread matches above, loose matches on Subject: below --
2013-12-15 23:05 Yann E. MORIN
2013-12-16  7:32 ` Thomas De Schampheleire
2013-12-16 22:35   ` Yann E. MORIN

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87k3f5vqio.fsf@dell.be.48ers.dk \
    --to=jacmet@uclibc.org \
    --cc=buildroot@busybox.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox