Skip to content

Instantly share code, notes, and snippets.

@sebastian13
Last active March 19, 2019 14:14
Show Gist options
  • Save sebastian13/2895e66e5f503a9ceb1fc85fae13e990 to your computer and use it in GitHub Desktop.
Save sebastian13/2895e66e5f503a9ceb1fc85fae13e990 to your computer and use it in GitHub Desktop.
Install btrbk on Debian
#!/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