Merge pull request #1144 from Wingysam/change-dd-to-sdz

Burn or Copy ISO: Change dd instructions from /dev/sdb to /dev/sdz
This commit is contained in:
Alexandre Aubin 2019-11-11 14:42:51 +01:00 committed by GitHub
commit 196a614d00
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View file

@ -28,10 +28,10 @@ Put your USB stick on, select your YunoHost ISO and click "OK"
### With `dd` ### With `dd`
If you know your way around command line, you may also flash your USB stick with If you know your way around command line, you may also flash your USB stick with
`dd`. Assuming your USB stick is `/dev/sdb` (be careful !!), you may run : `dd`. Assuming your USB stick is `/dev/sdz` (be careful !!), you may run :
```bash ```bash
dd if=/path/to/yunohost.iso of=/dev/sdb dd if=/path/to/yunohost.iso of=/dev/sdz
``` ```
--- ---

View file

@ -28,11 +28,11 @@ Branchez votre clef USB, selectionnez l'ISO YunoHost puis cliquez sur 'OK'
### Avec `dd` ### Avec `dd`
Si vous êtes familier avec la ligne de commande, il est possible de flasher la Si vous êtes familier avec la ligne de commande, il est possible de flasher la
clef USB avec `dd`. En supposant que votre clef USB soit `/dev/sdb` (faites clef USB avec `dd`. En supposant que votre clef USB soit `/dev/sdz` (faites
attention !!), vous pouvez exécuter : attention !!), vous pouvez exécuter :
```bash ```bash
dd if=/chemin/de/yunohost.iso of=/dev/sdb dd if=/chemin/de/yunohost.iso of=/dev/sdz
``` ```
--- ---