Alpine Linux: bup installieren

English Deutsch

Um die bup-Backup-Software auf Alpine Linux zu installieren, musst du sie derzeit selbst kompilieren.

Installiere zuerst die Voraussetzungen:

apk add bash make g++ python3-dev git automake autoconf par2cmdline py3-pip && pip install -U wheel && pip install -U pyxattr

how-to-install-bup-on-alpine-linux.sh
apk add bash make g++ python3-dev git automake autoconf par2cmdline py3-pip && pip install -U wheel && pip install -U pyxattr

Nun können wir bup klonen:

git clone -b 0.33 –depth 1 https://github.com/bup/bup

git_clone_bup.sh
git clone -b 0.33 --depth 1 https://github.com/bup/bup

und bauen:

build_install_bup.sh
cd bup && ./configure && make -j4 install PREFIX=/usr

Danach sollte bup in /usr/bin/bup installiert sein. Das bup-Klon-Verzeichnis, das wir im ersten Schritt erstellt haben, wird nicht mehr benötigt.


Check out similar posts by category: Alpine Linux, Bup