2015-04-12 23:30:38 +02:00
# Copier l’ image sur une carte SD
2014-06-06 14:49:08 +02:00
2015-05-20 12:09:52 +02:00
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-06-06 14:49:08 +02:00
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
2015-04-12 23:30:38 +02:00
## Sous Windows
2014-06-06 14:49:08 +02:00
* 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" >
2015-04-12 23:30:38 +02:00
## Sous 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
2015-05-20 12:09:52 +02:00
* Copiez l’ image en tapant :
2014-06-06 14:49:08 +02:00
```bash
2015-03-16 22:08:29 +01:00
sudo dd if=/chemin/vers/votre/.img of=/nom/du/matériel
2014-06-06 14:49:08 +02:00
```
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.
2015-05-20 12:09:52 +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);" >
2015-05-20 12:09:52 +02:00
< p class = "text-muted" > Aperçu de l’ interface de Gparted< / p >