docs/installation-usb: add more flags to dd

oflag=direct is faster for writing because it by-passes the page cache
status=progress shows speed and progress
This commit is contained in:
Jörg Thalheim 2023-10-27 16:08:20 +02:00
parent 7f7c22b347
commit 3c2efe61dc

View File

@ -35,7 +35,7 @@ select the image, select the USB flash drive and click "Write".
4. Then use the `dd` utility to write the image to the USB flash drive.
```ShellSession
sudo dd if=<path-to-image> of=/dev/sdX bs=4M conv=fsync
sudo dd bs=4M conv=fsync oflag=direct status=progress if=<path-to-image> of=/dev/sdX
```
## Creating bootable USB flash drive from a Terminal on macOS {#sec-booting-from-usb-macos}