Skip to content

Instantly share code, notes, and snippets.

@dzaporozhets
Forked from alfredo/gist:1548139
Created May 3, 2013 21:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dzaporozhets/5514226 to your computer and use it in GitHub Desktop.
Save dzaporozhets/5514226 to your computer and use it in GitHub Desktop.
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