Skip to content

Instantly share code, notes, and snippets.

@aalvesjr
Created February 25, 2013 21:09
Show Gist options
  • Save aalvesjr/5033339 to your computer and use it in GitHub Desktop.
Save aalvesjr/5033339 to your computer and use it in GitHub Desktop.
Instalando REDIS no Ubuntu 12.04
# Execute
# Remove a versão 8.4 do Tcl
sudo apt-get remove tk8.4 tcl8.4
# Instala a versão 8.5
sudo apt-get install tk8.5 tcl8.5
# Baixa o .tar do REDIS
wget http://download.redis.io/redis-stable.tar.gz
# Descompacta
tar xvzf redis-stable.tar.gz
# entra no diretorio
cd redis-stable
# instala
make
# Recomendado depois entrar na pasta srs
cd src
# e executar
make test
# a instalação estara completa se aparecer:
\o/ All tests passed without errors!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment