2014-06-06 14:49:08 +02:00
# Copier l'image sur une carte SD
Maintenant que vous avez l'image ISO YunoHost, vous devez la copier sur une carte SD. Le processus est différent suivant votre système d'exploitation.
2014-07-23 16:07:32 +02:00
< img src = "https://yunohost.org/images/sdcard.jpg" width = 150 > < img src = "https://yunohost.org/images/micro-sd-card.jpg" >
2014-06-06 14:49:08 +02:00
## Sur 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 = "https://yunohost.org/images/win32diskimager.png" >
2014-08-20 14:10:29 +02:00
## Sur GNU/Linux, BSD ou Mac OS
2014-06-06 14:49:08 +02:00
* Ouvrez un terminal.
* Insérez votre carte SD.
2014-06-09 11:47:40 +02:00
* Identifiez votre matériel en tapant :
2014-06-06 14:49:08 +02:00
```bash
sudo fdisk -l
```
2014-11-01 12:25:34 +01:00
Ça devrait être `/dev/diskN` , où `N` est un nombre, ou `/dev/sdX` , où `X` est une lettre, ou `/dev/mmcblk0` .
2014-06-06 14:49:08 +02:00
* Copiez l'image en tapant :
```bash
sudo dd bs=1M if=/chemin/vers/votre/.img of=/nom/du/matériel
```
2014-06-06 14:57:17 +02:00
< span class = "glyphicon glyphicon-warning-sign" ></ span > N’ oubliez pas de changer `/chemin/vers/votre/.img` et `/nom/du/matériel` par les valeurs appropriées.
2014-06-06 14:49:08 +02:00
2014-06-06 17:57:33 +02:00
La commande peut prendre quelques minutes, puis votre carte SD sera prête à être utilisée. ** :-)**
2014-06-06 14:49:08 +02:00
## Étendre la partition root <small>(facultatif)</small>
Par défaut, la partition root de votre carte SD est très petite.
2014-09-25 14:42:57 +02:00
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 l'espace non-alloué.
2014-06-06 14:49:08 +02:00
< img src = "https://yunohost.org/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);" >
2014-08-20 14:10:29 +02:00
< p class = "text-muted" > Aperçu de l'interface de Gparted< / p >