Skip to content

Instantly share code, notes, and snippets.

@tonypiazza
tonypiazza / setup-couchbase-dev.sh
Last active September 5, 2016 11:33
A BASH script to setup everything we need for a Couchbase development machine with Xubuntu Desktop. You will need a machine with at least 4348 MB of RAM and 4 cores.
#!/bin/bash
# Script written by Tony Piazza (https://gist.github.com/tonypiazza)
# Privileges check
if [ $UID != 0 ]
then
echo -e "Insufficient privileges!"
exit 1
fi