Skip to content

Instantly share code, notes, and snippets.

View bugra-derre's full-sized avatar

Bugra bugra-derre

View GitHub Profile
@bugra-derre
bugra-derre / install_riak
Created August 5, 2013 14:53
Installing Riak on Debian and Ubuntu
#!/bin/bash -ex
# Riak install and config script snippets
# For Ubuntu
# http://docs.basho.com/riak/latest/tutorials/installation/Installing-on-Debian-and-Ubuntu/
# 1. First you must get the signing key.
curl http://apt.basho.com/gpg/basho.apt.key | sudo apt-key add -
# 2. Then add the Basho repository to your apt sources list (and update them).
@bugra-derre
bugra-derre / install_erlang
Last active December 20, 2015 15:39
Installing Erlang on Linux
#!/bin/bash -ex
#Update repositories
sudo apt-get update
#Use this command to install the required dependency packages:
sudo apt-get install build-essential libncurses5-dev openssl libssl-dev fop xsltproc unixodbc-dev
#To install packages for graphics support, use this command:
sudo apt-get install libwxbase2.8 libwxgtk2.8-dev libqt4-opengl-dev