From 1029e2fb73e582f10784bd24907dde4e2a87d44b Mon Sep 17 00:00:00 2001 From: anarcat Date: Fri, 9 Sep 2022 12:14:50 -0400 Subject: [PATCH] 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. --- download/index.html.tt2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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

-- 2.1.4