diff --git a/pages/common/rpi-imager.md b/pages/common/rpi-imager.md new file mode 100755 index 000000000..ec6e43354 --- /dev/null +++ b/pages/common/rpi-imager.md @@ -0,0 +1,16 @@ +# rpi-imager + +> Flash images onto storage devices. +> More information: . + +- Write a specific image to a specific block device: + +`rpi-imager --cli {{path/to/image.zip}} {{/dev/sdX}}` + +- Write a specific image to a block device, disabling the checksum verification: + +`rpi-imager --cli --disable-verify {{path/to/image.zip}} {{/dev/sdX}}` + +- Write a specific image to a block device, which will expect a specific checksum when running the verification: + +`rpi-imager --cli --sha256 {{expected_hash}} {{path/to/image.zip}} {{/dev/sdX}}`