Skip to content

Instantly share code, notes, and snippets.

@tgerring
tgerring / geth.conf
Last active August 29, 2015 14:18
Geth Upstart script
description "geth bootnode"
start on runlevel [2345]
stop on shutdown
respawn
respawn limit 10 5
setuid ubuntu
setgid ubuntu
@tgerring
tgerring / geth-develop.sh
Last active August 18, 2021 07:55
Geth installation Ubuntu
#!/bin/bash
#######################################################################
# Install base dependencies (required)
sudo apt-get update && sudo apt-get upgrade -y
sudo apt-get install -y git build-essential
# Install Go binaries
GOVERSION="1.7.3"