doc/burn_or_copy_iso.md

49 lines
1.7 KiB
Markdown
Raw Normal View History

# Flashing the YunoHost ISO
2014-06-05 17:27:03 +02:00
Now that you downloaded the ISO image of YunoHost, you should flash/burn it on a physical medium. Typically, this is done on a **USB stick** or an **SD card**.
2014-06-05 17:27:03 +02:00
<img src="/images/sdcard.jpg" width=100>
<img src="/images/micro-sd-card.jpg" width=100>
<img src="/images/usb_key.png" width=150>
<img src="/images/cd.jpg" width=100>
2014-06-05 17:27:03 +02:00
### (Recommended) With Etcher
2014-06-05 17:27:03 +02:00
Download <a href="https://etcher.io/" target="_blank">Etcher</a> for your operating system and install it.
2014-06-05 17:27:03 +02:00
<img src="/images/etcher.gif">
2014-06-05 17:27:03 +02:00
2019-09-06 17:42:21 +02:00
Plug your USB stick, select your YunoHost ISO and click "Flash"
2014-06-05 17:27:03 +02:00
### With UNetbootin
Download <a href="https://unetbootin.github.io/">UNetbootin</a> for your operating system and install it.
<img src="/images/unetbootin.png">
2019-09-06 17:42:21 +02:00
Put your USB stick on, select your YunoHost ISO and click "OK"
### With `dd`
If you are on Linux / Mac and know your way around command line, you may also
flash your USK stick or SD card with `dd`. You can identify which device corresponds to your
USB stick or SD card with `fdisk -l` or `lsblk`. An SD card name typically is something like `/dev/mmcblk0`. BE CAREFUL and make sure you got the right name.
Then run :
```bash
# Replace /dev/mmcblk0 if the name of your device is different...
dd if=/path/to/yunohost.img of=/dev/mmcblk0
```
2014-06-05 17:27:03 +02:00
### Burning a CD/DVD
2014-06-05 17:27:03 +02:00
For older devices, you might want to burn a CD/DVD. The software to use depends on your operating system.
2014-06-05 17:27:03 +02:00
2014-06-06 14:51:40 +02:00
* On Windows, use [ImgBurn](http://www.imgburn.com/) to write the image file on the disc
2014-06-05 17:27:03 +02:00
2014-06-06 14:51:40 +02:00
* On Mac OS, use [Disk Utility](http://support.apple.com/kb/ph7025)
2014-06-05 17:27:03 +02:00
* On GNU/Linux, you have plenty of choices, like [Brasero](https://wiki.gnome.org/Apps/Brasero) or [K3b](http://www.k3b.org/)