9 lines
124 B
Markdown
9 lines
124 B
Markdown
|
---
|
||
|
tags: image terminal
|
||
|
---
|
||
|
|
||
|
Flashing an image to a USB drive:
|
||
|
|
||
|
```sh
|
||
|
dd if=file.img of=/dev/sdx bs=64M status=progress
|
||
|
```
|