mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-26 17:57:59 +00:00
df8205a4ba
Created with borg v1.1.0, so more up-to-date and split into different parts (install, basic, advanced)… Fixes https://github.com/borgbackup/borg/issues/669
21 lines
990 B
Bash
21 lines
990 B
Bash
# This asciinema will show you the installation of borg as a standalone binary. Usually you only need this if you want to have an up-to-date version of borg or no package is available for your distro/OS.
|
|
|
|
# First, we need to download the version, we'd like to install…
|
|
wget -q --show-progress https://github.com/borgbackup/borg/releases/download/1.1.0b6/borg-linux64
|
|
# and do not forget the GPG signature…!
|
|
wget -q --show-progress https://github.com/borgbackup/borg/releases/download/1.1.0b6/borg-linux64.asc
|
|
|
|
# In this case, we have already imported the public key of a borg developer. So we only need to verify it:
|
|
gpg --verify borg-linux64.asc
|
|
# Okay, the binary is valid!
|
|
|
|
# Now install it:
|
|
sudo cp borg-linux64 /usr/local/bin/borg
|
|
sudo chown root:root /usr/local/bin/borg
|
|
# and make it executable…
|
|
sudo chmod 755 /usr/local/bin/borg
|
|
|
|
# Now check it: (possibly needs a terminal restart)
|
|
borg -V
|
|
|
|
# That's it! Check out the other screencasts to see how to actually use borgbackup.
|