diff --git a/burn_or_copy_iso.md b/burn_or_copy_iso.md index 4a296420..1c4f7007 100644 --- a/burn_or_copy_iso.md +++ b/burn_or_copy_iso.md @@ -1,21 +1,38 @@ -# Copy ISO image +# Flashing YunoHost ISO on a USB key or CD/DVD Now that you have the ISO image of YunoHost, you have to put it on a physical medium: **USB key** or **CD/DVD** - - + + --- ## USB key +### With Etcher + Download Etcher for your operating system and install it. - - + Put your USB key on, select your YunoHost ISO and click "Flash" +### With UNetbootin + +Download UNetbootin for your operating system and install it. + + + +Put your USB key on, select your YunoHost ISO and click "OK" + +### With `dd` + +If you know your way around command line, you may also flash your USB key with +`dd`. Assuming your USB key is `/dev/sdb` (be careful !!), you may run : + +```bash +dd if=/path/to/yunohost.iso of=/dev/sdb +``` --- @@ -27,4 +44,4 @@ The software to use differs regarding your operating system. * On Mac OS, use [Disk Utility](http://support.apple.com/kb/ph7025) -* On GNU/Linux, you have plenty of choices, like [Brasero](https://wiki.gnome.org/Apps/Brasero) or [K3b](http://www.k3b.org/) \ No newline at end of file +* On GNU/Linux, you have plenty of choices, like [Brasero](https://wiki.gnome.org/Apps/Brasero) or [K3b](http://www.k3b.org/) diff --git a/images/etcher.gif b/images/etcher.gif new file mode 100644 index 00000000..e06ce0cb Binary files /dev/null and b/images/etcher.gif differ