From f1d5ef8cd0e603924ecbe7991fad35968dd56deb Mon Sep 17 00:00:00 2001 From: DarkWiiPlayer Date: Mon, 17 Apr 2023 09:07:44 +0200 Subject: [PATCH] Add note about dd --- notebook/Linux/Tools/dd.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 notebook/Linux/Tools/dd.md diff --git a/notebook/Linux/Tools/dd.md b/notebook/Linux/Tools/dd.md new file mode 100644 index 0000000..4dd1d43 --- /dev/null +++ b/notebook/Linux/Tools/dd.md @@ -0,0 +1,9 @@ +--- +tags: image terminal +--- + +Flashing an image to a USB drive: + +```sh +dd if=file.img of=/dev/sdx bs=64M status=progress +``` \ No newline at end of file