Last active
March 19, 2019 14:14
-
-
Save sebastian13/2895e66e5f503a9ceb1fc85fae13e990 to your computer and use it in GitHub Desktop.
Install btrbk on Debian
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
apt update | |
apt install make | |
curl https://digint.ch/download/btrbk/releases/btrbk-0.27.1.tar.xz -o /tmp/btrbk.tar.xz | |
tar xf /tmp/btrbk.tar.xz -C /tmp | |
make install -C /tmp/btrbk-0.27.1/ | |
rm -r /tmp/btrbk* | |
btrbk --version |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment