Last active
August 17, 2017 16:20
-
-
Save mehmetkose/b9e7ade0f5376f2f998fa72d01e8e13f to your computer and use it in GitHub Desktop.
ethereum on armbian
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd ~ | |
apt-get update | |
apt-get upgrade | |
wget https://storage.googleapis.com/golang/go1.8.3.linux-armv6l.tar.gz | |
tar -C /usr/local -xzf ~/go1.8.3.linux-armv6l.tar.gz | |
rm ~/go1.8.3.linux-armv6l.tar.gz | |
echo 'export PATH=$PATH:/usr/local/go/bin' >> ~/.bashrc | |
source ~/.bashrc | |
go version | |
wget http://ethraspbian.com/downloads/ipfs_0.4.9-0_armhf.deb | |
sudo dpkg -i ipfs_0.4.9-0_armhf.deb | |
rm ipfs_0.4.9-0_armhf.deb | |
wget http://ethraspbian.com/downloads/geth-rasp_1.6.5-0_armhf.deb | |
dpkg -i geth-rasp_1.6.5-0_armhf.deb | |
rm geth-rasp_1.6.5-0_armhf.deb | |
sudo echo ARGS="--lightserv 25 --lightpeers 50 --cache 384" > /etc/geth/geth.conf | |
sudo systemctl restart geth | |
geth --fast --cache=312 console | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment