geth --http --miner.etherbase 0x15E57AE0eb022a2Ce9E750dF2618441a9F47d595
lsblk
mount /dev/sda1 /mount-eth2
geth attach http://127.0.0.1:8545
var lastPercentage = 0;
var lastBlocksToGo = 0;
var timeInterval = 10000;
setInterval(function () {
var percentage = eth.syncing.currentBlock / eth.syncing.highestBlock * 100;
var percentagePerTime = percentage - lastPercentage;
var blocksToGo = eth.syncing.highestBlock - eth.syncing.currentBlock;
var bps = (lastBlocksToGo - blocksToGo) / (timeInterval / 1000);
var etas = 100 / percentagePerTime * (timeInterval / 1000);
var etaM = parseInt(etas / 60, 10);
console.log(parseInt(percentage, 10) + '% ETA: ' + etaM + ' minutes @ ' + bps + 'bps');
lastPercentage = percentage;
lastBlocksToGo = blocksToGo;
console.log("Remaining Blocks: " + (eth.syncing.highestBlock - eth.syncing.currentBlock));
}, timeInterval);
gsutil -m cp -r gs://ethereum-chaindata ./
eth.syncing.highestBlock - eth.syncing.currentBlock
ssh -i ~/.ssh/geth username@EXTERNAL_IP
htop
geth --http --miner.etherbase 0xA92f293fF7f639f9d604662d12eac76a103942DD --datadir /ethereum-chain --ipcdisable --cache 60000 --maxpeers 500
geth --http --miner.etherbase 0xA92f293fF7f639f9d604662d12eac76a103942DD --datadir /ethereum-chain --ipcdisable --cache 3000 --maxpeers 5
geth --http --miner.etherbase 0xA92f293fF7f639f9d604662d12eac76a103942DD --datadir /mount-eth2/blockchain --ipcdisable
geth --http --miner.etherbase 0xA92f293fF7f639f9d604662d12eac76a103942DD --datadir /mount-eth2/blockchain --ipcdisable --cache 30048 --maxpeers 150 --mine --miner.threads=4 --metrics
killall -HUP geth
eth.coinbase
sshfs -o default_permissions,IdentityFile=~/.ssh/geth [email protected]:/chain2/ /ethereum-chain
du -shc ./*
sudo tar -xvf geth-linux-amd64-1.8.16-477eb093.tar.gz
cd geth-linux-amd64-1.8.16-477eb093
sudo chmod +x geth
sudo cp geth /usr/local/bin/
geth version
tmux ls
ctrl + b + d
tmux attach -t 0