💾 Archived View for freeshell.de › tldr › dd.gmi captured on 2024-05-26 at 15:14:33. Gemini links have been rewritten to link to archived content
⬅️ Previous capture (2022-04-28)
-=-=-=-=-=-=-
Convert and copy a file.
dd if={file.iso} of=/dev/{usb_drive} status=progress
dd if=/dev/{source_drive} of=/dev/{dest_drive} bs=4M conv=noerror status=progress
dd if=/dev/urandom of={random_file} bs=100 count=1
dd if=/dev/zero of={file_1GB} bs=1024 count=1000000
dd if=/dev/{drive_device} of={path/to/file.img} status=progress
dd if={path/to/file.img} of=/dev/{drive_device} status=progress
kill -USR1 $(pgrep ^dd)
Copyright © 2014—present the tldr-pages team and contributors.
This work is licensed under the Creative Commons Attribution 4.0 International License (CC-BY).