1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/bmaptool.md

21 lines
599 B
Markdown
Raw Normal View History

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