This commit is contained in:
Yunohost-Bot 2021-02-11 00:48:14 +00:00
commit 702cd300f8
3 changed files with 37 additions and 21 deletions

View file

@ -154,18 +154,22 @@ Il existe aussi l'application Archivist qui permet un système similaire : https
#### Éviter de sauvegarder certains dossiers
Si besoin, vous pouvez spécifier que certains dossiers `home` d'utilisateurs ne soient pas sauvegardés par la commande `yunohost backup`, en créant un fichier vide nommé `.nobackup` à l'intérieur.
#### Backup complet avec `dd`
Si vous êtes sur une carte ARM, une autre méthode pour créer une sauvegarde complète consiste à créer une image (copie) de la carte SD. Pour cela, éteignez votre serveur, insérez la carte SD dans votre ordinateur et créez une image avec une commande comme :
#### Pour les cartes ARM: backup complet avec USBimager ou `dd`
Si vous êtes sur une carte ARM, une autre méthode de backup consiste à créer une image de la carte SD.
Ceci peut être effectué avec [USBimager](https://bztsrc.gitlab.io/usbimager/) (N.B. : assurez-vous de télécharger la version 'Read-write' ! Pas la version 'Write-only' !). Le processus consiste ensuite à "l'inverse" du processus de flashage de la carte SD:
- Éteignez votre serveur
- Récupérez la carte SD et branchez la dans votre ordinateur
- Dans USBimager, cliquez "Read" pour créer une image ("photographie") de la carte SD. Vous pouvez utiliser le fichier obtenu pour plus tard restaurer le système en entier.
Plus de détails dans [la doc d'USBimager](https://gitlab.com/bztsrc/usbimager/#creating-backup-image-file-from-device)
Il est possible d'obtenir la même chose avec `dd` si vous êtes à l'aise avec la ligne de commande:
```bash
dd if=/dev/mmcblk0 of=./backup.img status=progress
dd if=/dev/mmcblk0 | gzip > ./my_snapshot.gz
```
(remplacez `/dev/mmcblk0` par le vrai nom de votre carte SD)
Vous pouvez aussi compresser l'image à l'aide de gzip :
```bash
dd if=/dev/mmcblk0 | gzip > ./image.gz
```

View file

@ -164,13 +164,21 @@ Potete seguire questo tutorial sul forum per impostare Borg fra due server: <htt
Alternativamente, la app Archivist permette di impostare un sistema simile: <https://forum.yunohost.org/t/new-app-archivist/3747>
#### Backup completo con `dd`
#### For ARM boards: full backup with USBimager or `dd`
Se state usando una board ARM un altro metodo per eseguire un backup completo è quello di creare un'immagine della card SD. Per fare questo innanzitutto spegnete la vostra board ARM, prendete la card SD e createne un'immagine completa con un comando come il seguente:
If you are using an ARM board, another method for doing a full backup can be to create an image of the SD card.
This can be done easily using [USBimager](https://bztsrc.gitlab.io/usbimager/) (N.B. be sure to get the Read-Write version! Not the write-only version!). The process is basically the *reverse* of flashing the SD card.
- Poweroff your server
- Get the SD card and plug it into your computer
- Using USBimager, click the *Read* button to create an image (snapshot) of the sd card. You can use it later to restore the entire system.
More details [in the USBimager doc](https://gitlab.com/bztsrc/usbimager/#creating-backup-image-file-from-device)
Alternatively you can use `dd` if you're comfortable with the command line with something like:
```bash
dd if=/dev/mmcblk0 of=./backup.img status=progress
dd if=/dev/mmcblk0 | gzip > ./my_snapshot.gz
```
(modificate `/dev/mmcblk0` con il device reale della vostra card)
(replace `/dev/mmcblk0` with the actual device of your SD card)

View file

@ -161,17 +161,21 @@ Alternatively, the app Archivist allows to setup a similar system: <https://foru
#### Avoiding the backup of some folders
If needed, you can specify that some `/home/user` folders are left out of the `yunohost backup` command, by creating a blank file named `.nobackup` in them.
#### Full backup with `dd`
#### For ARM boards: full backup with USBimager or `dd`
If you are using an ARM board, another method for doing a full backup can be to create an image of the SD card. For this, poweroff your ARM board, get the SD card in your computer then create a full image with something like:
If you are using an ARM board, another method for doing a full backup can be to create an image of the SD card.
This can be done easily using [USBimager](https://bztsrc.gitlab.io/usbimager/) (N.B. be sure to get the Read-Write version! Not the write-only version!). The process is basically the *reverse* of flashing the SD card.
- Poweroff your server
- Get the SD card and plug it into your computer
- Using USBimager, click the *Read* button to create an image (snapshot) of the sd card. You can use it later to restore the entire system.
More details [in the USBimager doc](https://gitlab.com/bztsrc/usbimager/#creating-backup-image-file-from-device)
Alternatively you can use `dd` if you're comfortable with the command line with something like:
```bash
dd if=/dev/mmcblk0 of=./backup.img status=progress
dd if=/dev/mmcblk0 | gzip > ./my_snapshot.gz
```
(replace `/dev/mmcblk0` with the actual device of your SD card)
You can also create a compressed image using gzip this way:
```bash
dd if=/dev/mmcblk0 | gzip > ./image.gz
```