Sie könnten eine Bash-Datei für sie erstellen, wenn Sie es in einem Cronjob zum Beispiel und fügen Sie einige andere Befehle wie ein mysqldump vorher
Sie müssen ausführen möchten eine Datei wie backup.sh erstellen mit folgendem Inhalt (möglicherweise müssen Sie den Pfad zu bash ändern, Sie bash mit whereis bash
finden)
#!/bin/bash
#
# Backup script
#
# Format: YEAR MONTH DAY - HOUR MINUTE SECOND
DATE=$(date +%Y%m%d-%H%M%S)
# MySQL backup file
MYSQLTARGET="/var/file/backup-mysql-$DATE.sql"
# Target file
TARTARGET="/var/file/backup-$DATE.tar.gz"
# MySQL dump
# you cannot have a space between the option and the password. If you omit the password value
# following the --password or -p option on the command line, you are prompted for one.
mysqldump -u root -ppassword --all-databases > $MYSQLTARGET
tar -czvf $TARTARGET $MYSQLTARGET /home/code/bots /var/config /var/system
PS. Dies ist ein nicht getesteter Code. Es ist nur ein Beispiel dafür, wie ein Bash-Skript im aktuellen Kontext funktioniert.