doc/copy_image_fr.md
2016-03-30 14:32:52 +02:00

46 lines
1.9 KiB
Markdown
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Copier limage sur une carte SD
Maintenant que vous avez limage ISO YunoHost, vous devez la copier sur une carte SD. Le processus est différent suivant votre système dexploitation.
<img src="/images/sdcard.jpg" width=150><img src="https://yunohost.org/images/micro-sd-card.jpg">
## Sous Windows
* Téléchargez et installez **[Win32 Disk Imager](http://sourceforge.net/projects/win32diskimager/)**.
* Insérez votre carte SD.
* Copiez le fichier `.img` sur votre carte SD en utilisant *Win32 Disk Imager*.
<img src="/images/win32diskimager.png">
## Sous GNU/Linux, BSD ou Mac OS
* Ouvrez un terminal.
* Insérez votre carte SD.
* Identifiez votre matériel en tapant :
```bash
sudo fdisk -l
```
Ça devrait être `/dev/diskN`, où `N` est un chiffre, ou `/dev/sdX`, où `X` est une lettre, ou `/dev/mmcblk0`.
Attention à ne pas mettre le chiffre `N` car ça créera une [carte SD non fonctionnelle](https://raspberrypi.stackexchange.com/questions/11880/sd-card-doesnt-works-after-dd).
* Copiez limage en tapant :
```bash
sudo dd if=/chemin/vers/votre/.img of=/nom/du/matériel
```
<span class="glyphicon glyphicon-warning-sign"></span> Noubliez pas de changer `/chemin/vers/votre/.img` et `/nom/du/matériel` par les valeurs appropriées.
La commande peut prendre quelques minutes, puis votre carte SD sera prête à être utilisée. **:-)**
## Étendre la partition root <small>(facultatif, mais conseillé)</small>
Par défaut, la partition root installée sur votre carte SD avec la commande `dd` est très petite.
Vous pouvez la redimensionner avec un logiciel comme `resize2fs` (ligne de commande) ou `Gparted` (interface graphique) en étendant la partition ext4 au maximum de façon à utiliser tout lespace non alloué.
<img src="/images/gparted.jpg" style="max-width:100%;border-radius: 5px;border: 1px solid rgba(0,0,0,0.15);box-shadow: 0 5px 15px rgba(0,0,0,0.35);">
<p class="text-muted">Aperçu de linterface de Gparted</p>