Last active
May 2, 2022 07:10
-
-
Save mortn/24a63f38840c56f8a3b9711acb317f4d to your computer and use it in GitHub Desktop.
dd write iso to usb with progress also on high mem system
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo dd if=debian-live-11.3.0-amd64-gnome.iso of=/dev/sda bs=4M oflag=direct status=progress && sync |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Important part is
oflag=direct
that skips system buffering. Otherwiseif
is just loaded into memory which causes dd to not show progress