Skip to content

Instantly share code, notes, and snippets.

@alfredo
Created January 1, 2012 19:38
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save alfredo/1548139 to your computer and use it in GitHub Desktop.
Save alfredo/1548139 to your computer and use it in GitHub Desktop.
Installing redis from debian backports
To install redis from debian backports we need to add the backports sources.
1. Add to /etc/apt/sources.list:
deb http://backports.debian.org/debian-backports squeeze-backports main
2. Retrieve debian key
$ gpg --keyserver pgp.mit.edu --recv-keys AED4B06F473041FA
3. Import the key
$ gpg --armor --export AED4B06F473041FA | sudo apt-key add -
4. Update the sources
$ sudo apt-get update
5. Install redis
$ sudo apt-get -t squeeze-backports install redis-server
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment