Created
November 16, 2017 10:12
-
-
Save royalgarter/9200f9180093883a565b9054ad2a298f to your computer and use it in GitHub Desktop.
Storj Setup for Ubuntu
This file contains hidden or 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
apt-get update | |
apt install git python build-essential --fix-missing | |
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.6/install.sh | bash | |
nvm install 6.11 | |
nvm use 6.11 | |
npm config set unsafe-perm true | |
npm install --global storjshare-daemon | |
mkdir storj | |
mkdir storj-log | |
storjshare-create --storj 0xEa0b593...b248 --storage ./storj --logdir ./storj-log --size 10GB -o storj.json | |
storjshare daemon | |
storjshare start --config /root/storj.json | |
storjshare status |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment