.exclude-Datei angeben, um bestimmte Dateien/Ordner auszuschließen.Erstelle regelmäßig Backups, um Datenverlust zu vermeiden. Mit pibackup kannst du Backups auch auf kleinere Speichermedien zurückspielen. Ein Notfall-Image ist sehr hilfreich, um dein System im Ernstfall schnell wiederherzustellen. Die neuen Optionen ermöglichen das Schreiben von komplett konfigurierten, headless-fähigen Raspberry OS-Images.
Lade die neueste Version herunter, entpacke das Archiv und installiere das Debian-Paket automatisch:
# Neueste Version herunterladen, entpacken und installieren
wget -O /tmp/pibackup.zip https://sourceforge.net/projects/pibackup/files/latest/download \
&& unzip -o /tmp/pibackup.zip -d /tmp/pibackup \
&& sudo apt install /tmp/pibackup/bin/pibackup_*.deb
Die Installation verwendet das Verzeichnis /tmp, sodass keine Dateien im Home-Verzeichnis zurückbleiben.
.exclude file to skip certain files/folders.Create backups regularly to prevent data loss. Backups can also be restored to smaller media. The new options allow writing fully configured, headless-ready Raspberry OS images.
Download the latest release, extract the archive, and install the Debian package automatically:
# Remove previous temporary files, download latest release, unzip, and install rm -rf /tmp/pibackup /tmp/pibackup.zip && \ wget -O /tmp/pibackup.zip "https://sourceforge.net/projects/pibackup/files/latest/download" && \ unzip -o /tmp/pibackup.zip -d /tmp/pibackup && \ sudo apt install -y "$(find /tmp/pibackup -type f -name 'pibackup.deb' -print -quit)"The installation uses the
/tmpdirectory, so no files remain in your home directory.