From 29b68a6277d43433e0ade5172e4fd6fe83448d7a Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Thu, 21 Jun 2018 23:01:29 +0200 Subject: [PATCH] Typo / forgot stuff --- external_storage.md | 8 +++++--- external_storage_fr.md | 12 +++++++----- 2 files changed, 12 insertions(+), 8 deletions(-) diff --git a/external_storage.md b/external_storage.md index 8e4c4a5e..79062327 100644 --- a/external_storage.md +++ b/external_storage.md @@ -77,9 +77,11 @@ mkdir /media/storage Then we can manually mount the disk with : ```bash -mount /dev/YOUR_DISK /media/storage +mount /dev/YOUR_DISK1 /media/storage ``` +(Here, `/dev/YOUR_DISK1` corresponds to the first partition on the disk) + Next, you should be able to create files in `/media/stockage`, and, for instance, add `/media/stockage` as an external drive in Nextcloud. ## 4. Mount the disk automatically at boot @@ -89,9 +91,9 @@ So far, we only mounted the disk manually. But it can be nice and useful to have Let's start by finding the UUID (universal identifier) of the disk with : ```bash -blkid | grep "/dev/YOUR_DISK:" +blkid | grep "/dev/YOUR_DISK1:" # Should return something like -# /dev/sda:UUID="cea0b7ae-2fbc-4f01-8884-3cb5884c8bb7" TYPE="ext4" PARTUUID="34e4b02c-02" +# /dev/sda1:UUID="cea0b7ae-2fbc-4f01-8884-3cb5884c8bb7" TYPE="ext4" PARTUUID="34e4b02c-02" ``` Let's add a line in the file `/etc/fstab` which manages which disks are mounted at boot. We open this file with `nano` : diff --git a/external_storage_fr.md b/external_storage_fr.md index 19eefcc9..88a99ee6 100644 --- a/external_storage_fr.md +++ b/external_storage_fr.md @@ -8,7 +8,7 @@ Si vous n'avez pas dédié une grande partition à `/home` avant d'installer Yun Les étapes à réaliser, même si elles sont relativement simples, peuvent parfois paraître techniques et nécessitent dans tous les cas **de prendre son temps**. -Vous devez également être connecté en root sur votre système, par exemple via SSH. (Note : en étant connecté en tant qu'utilisateur `admin`, vous pouvez passer root avec `sudo su`) +Vous devez également être connecté en root sur votre système, par exemple via [SSH](/ssh). (Note : en étant connecté en tant qu'utilisateur `admin`, vous pouvez passer root avec `sudo su`) Il peut être utilise de [faire un backup](/backup) de votre installation. @@ -76,9 +76,11 @@ mkdir /media/stockage Puis nous pouvons monter le disque manuellement avec : ```bash -mount /dev/VOTRE_DISQUE /media/stockage +mount /dev/VOTRE_DISQUE1 /media/stockage ``` +(Ici, `/dev/VOTRE_DISQUE1` corresponds à la première partition sur le disque) + Ensuite, vous devriez pouvoir créer des fichiers dans `/media/stockage`, et, par exemple, ajouter `/media/stockage` comme périphérique externe dans Nextcloud. ## 4. Monter le disque automatiquement au démarrage @@ -88,9 +90,9 @@ Jusqu'ici, nous avons monté manuellement le disque. Cependant, il peut être ut Pour commencer, trouvons l'UUID (identifiant universel) de notre disque avec : ```bash -blkid | grep "/dev/VOTRE_DISQUE:" -# Retourne quelque chose comme -# /dev/sda:UUID="cea0b7ae-2fbc-4f01-8884-3cb5884c8bb7" TYPE="ext4" PARTUUID="34e4b02c-02" +blkid | grep "/dev/VOTRE_DISQUE1:" +# Retourne quelque chose comme : +# /dev/sda1:UUID="cea0b7ae-2fbc-4f01-8884-3cb5884c8bb7" TYPE="ext4" PARTUUID="34e4b02c-02" ``` Ajoutons alors une ligne au fichier `/etc/fstab` qui gère le montage des disques au démarrage. On ouvre donc le fichier avec `nano` :