Skip to content

Commit

Permalink
ubuntu install script
Browse files Browse the repository at this point in the history
  • Loading branch information
dskvr committed May 4, 2018
1 parent 2ece59c commit f02c7d7
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions install_ubuntu.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
#!/bin/bash

#Install parity
bash <(curl https://get.parity.io -Lk) -r stable

#Install Node
sudo apt-get update
curl -sL https://deb.nodesource.com/setup_8.x | bash -
apt-get install -y nodejs
nodejs -v

#Install MySQl
sudo apt-get install mysql-server
mysql_secure_installation
systemctl status mysql.service

#Get Genesis Script
cd /home/
git clone https://github.com/EOSIO/genesis.git
cd genesis
npm install
cp config.default.js config.js
nano config.js

0 comments on commit f02c7d7

Please sign in to comment.