mirror of
https://github.com/YunoHost/doc.git
synced 2024-09-03 20:06:26 +02:00
Typo / forgot stuff
This commit is contained in:
parent
bed2ae8d90
commit
29b68a6277
2 changed files with 12 additions and 8 deletions
|
@ -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` :
|
||||
|
|
|
@ -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` :
|
||||
|
|
Loading…
Add table
Reference in a new issue