1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 18:44:56 +02:00
tldr/pages/common/bmaptool.md
Lucas Gabriel Schneider 8211b80c17
multiple pages: rephrase without adjectives (#3846)
Co-authored-by: Starbeamrainbowlabs <sbrl@starbeamrainbowlabs.com>
Co-authored-by: Zlatan Vasović <zlatanvasovic@gmail.com>
2020-02-11 18:53:43 +01:00

20 lines
599 B
Markdown

# bmaptool
> Create or copy block maps intelligently (designed to be faster than `cp` or `dd`).
> More information: <https://source.tizen.org/documentation/reference/bmaptool>.
- Create a blockmap from image file:
`bmaptool create -o {{blockmap.bmap}} {{source.img}}`
- Copy an image file into sdb:
`bmaptool copy --bmap {{blockmap.bmap}} {{source.img}} {{/dev/sdb}}`
- Copy a compressed image file into sdb:
`bmaptool copy --bmap {{blockmap.bmap}} {{source.img.gz}} {{/dev/sdb}}`
- Copy an image file into sdb without using a blockmap:
`bmaptool copy --nobmap {{source.img}} {{/dev/sdb}}`