Difference between revisions of "Data Duplicator"

From 6bit.ch wiki
Jump to navigation Jump to search
(Created page with "= dd = Convert and copy a file. Also, write to tape</br> == Use == <code>dd if=<PATH> of=<PATH></code>duplicate infile to outfile</br> == Useful Flags == <code>bs=<BYTES></code> read and write up to BYTES bytes at a time (default: 512)</br> <code>count=<N></code> copy only N input blocks</br>")
 
Line 9: Line 9:
<code>bs=<BYTES></code> read and write up to BYTES bytes at a time (default: 512)</br>
<code>bs=<BYTES></code> read and write up to BYTES bytes at a time (default: 512)</br>
<code>count=<N></code> copy only N input blocks</br>
<code>count=<N></code> copy only N input blocks</br>
<code>status=progress</code> show progress and speed

Revision as of 22:25, 28 November 2022

dd

Convert and copy a file. Also, write to tape

Use

dd if=<PATH> of=<PATH>duplicate infile to outfile

Useful Flags

bs=<BYTES> read and write up to BYTES bytes at a time (default: 512)
count=<N> copy only N input blocks
status=progress show progress and speed