Skip to content

Instantly share code, notes, and snippets.

View manwithsteelnerves's full-sized avatar

IP manwithsteelnerves

  • www.voxelbusters.com
View GitHub Profile
@manwithsteelnerves
manwithsteelnerves / install-redis.sh
Last active July 29, 2020 06:19 — forked from clzola/install-redis.sh
Bash script for installing Redis on Ubuntu 16.04
#!/bin/bash
# Install the Build and Test Dependencies
apt-get update
apt-get install -y curl build-essential tcl
# Download and Extract the Source Code
cd /tmp
curl -O http://download.redis.io/redis-stable.tar.gz
tar xzvf redis-stable.tar.gz