Improve documentation wording

Cette révision appartient à :
Jérémy Lecour 2020-04-12 11:43:41 +02:00 révisé par Jérémy Lecour
Parent 2d4cae58bc
révision 7e5aad727f
2 fichiers modifiés avec 10 ajouts et 10 suppressions

Voir le fichier

@ -52,7 +52,7 @@ apt install \
## Client dependencies
The clients only require OpenSSH and rsync.
The clients only require OpenSSH and Rsync.
### Cron job for incremental backups
@ -66,6 +66,6 @@ Edit the root crontab
~~~
## Notes
If you want mutiples backups in a day (1 by hour maximum) you can
If you want mutiples backups in a day (1 per hour maximum) you can
run `bkctld inc` multiples times, if you want to keep incremental
backups **for ever**, just don't run `bkctld rm`.

Voir le fichier

@ -155,31 +155,31 @@ the backup server administrator will need:
He can then create the jail:
# bkctld init CLIENT_HOST_NAME
# bkctld key CLIENT_HOST_NAME /root/CLIENT_HOST_NAME.pub
# bkctld ip CLIENT_HOST_NAME CLIENT_IP_ADDRESS
# bkctld start CLIENT_HOST_NAME
# bkctld status CLIENT_HOST_NAME
# bkctld init <JAIL_NAME>
# bkctld key <JAIL_NAME> /root/<JAIL_NAME>.pub
# bkctld ip <JAIL_NAME> <IP_OR_CIDR>
# bkctld start <JAIL_NAME>
# bkctld status <JAIL_NAME>
And override the default
evobackup-incl(5)
rules
# $EDITOR /etc/evobackup/CLIENT_HOST_NAME
# $EDITOR /etc/evobackup/<JAIL_NAME>.d/incs_policy
To sync itself,
the client server will need to install
rsync(1).
It can then be run manually:
# rsync -av -e "ssh -p JAIL_PORT" /home/ root@BACKUP_SERVER:/var/backup/home/
# rsync -av -e "ssh -p <JAIL_PORT>" /home/ root@<BACKUP_SERVER>:/var/backup/home/
If a more automated setup is required,
a script can be written in any programming language.
In this case,
it may be useful to validate the backup server's identity before hand.
# ssh -p JAIL_PORT BACKUP_SERVER
# ssh -p <JAIL_PORT> root@<BACKUP_SERVER> -t exit
A
bash(1)