Skip to content

Instantly share code, notes, and snippets.

@pvalkone
Created August 3, 2013 20:34
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pvalkone/6147878 to your computer and use it in GitHub Desktop.
Save pvalkone/6147878 to your computer and use it in GitHub Desktop.
How to Install Tarsnap on Raspbian "Wheezy"
$ sudo aptitude install libssl-dev zlib1g-dev e2fslibs-dev debhelper libbz2-dev libattr1-dev libacl1-dev
$ wget https://www.tarsnap.com/download/tarsnap-autoconf-1.0.35.tgz
$ wget https://www.tarsnap.com/download/tarsnap-sigs-1.0.35.asc
$ gpg --decrypt tarsnap-sigs-1.0.35.asc
$ sha256sum tarsnap-autoconf-1.0.35.tgz
$ tar xzf tarsnap-autoconf-1.0.35.tgz
$ cd tarsnap-autoconf-1.0.35
$ ln -s pkg/debian .
$ dpkg-buildpackage
$ cd ..
$ sudo dpkg -i tarsnap_1.0.35_armhf.deb
$ tarsnap --version
@atmosx
Copy link

atmosx commented Feb 13, 2014

Thanks :-)

@asymmetric
Copy link

Didn't work on my Ubuntu Wily box, failed with error dpkg-buildpackage: error: failed to sign .dsc and .changes file !sp.

Had to run dpkg-buildpackage -uc -us, taken from here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment