From: anarcat Date: Fri, 9 Sep 2022 16:14:50 +0000 (-0400) Subject: reverse the order of dd arguments to ease copy X-Git-Url: https://git.grml.org/?a=commitdiff_plain;h=1029e2fb73e582f10784bd24907dde4e2a87d44b;p=grml.org.git reverse the order of dd arguments to ease copy This is easier to copy-paste: ``` dd bs=4M status=progress conv=fdatasync if=grml_2021.07.iso of=/dev/USB_KEY ``` ... because I can just paste it in a terminal and all I have to change is the last word. Compare with the previous version: ``` dd if=grml_2021.07.iso of=/dev/USB_KEY bs=4M status=progress conv=fdatasync ``` ... where you have to paste, move your cursor right before ` bs` (notice the space), then change the word. All that `bs=` and `conv=` is cosmetic anyways, keep the good stuff where it matters, near the end of line, where the cursor will be. --- diff --git a/download/index.html.tt2 b/download/index.html.tt2 index a0e9822..33bf3ca 100644 --- a/download/index.html.tt2 +++ b/download/index.html.tt2 @@ -230,7 +230,7 @@ Boot from USB key

Just dd(1) the downloaded ISO to an empty USB key!

- dd if=grml_2021.07.iso of=/dev/USB_KEY bs=4M status=progress conv=fdatasync + dd bs=4M status=progress conv=fdatasync if=grml_2021.07.iso of=/dev/USB_KEY

Troubleshooting