Advertisement
defango

linolinux

Apr 18th, 2019
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. #Install Ubuntu
  2.  
  3. #Open the terminal then type or paste each of these commands in one by one.
  4.  
  5. #This updates the system
  6. sudo su
  7. apt-get update
  8. apt-get upgrade
  9.  
  10. #This downloads wget and makes it in one command
  11. apt-get install wget make
  12.  
  13. #This using wget to download Golang. Then unpacks and installs
  14. wget https://dl.google.com/go/go1.11.linux-amd64.tar.gz
  15. tar -xvf go1.11.linux-amd64.tar.gz
  16. mv go /usr/local
  17.  
  18. #This is how you set the go path.
  19. cd $HOME
  20. export GOROOT=/usr/local/go
  21. export GOPATH=$HOME/go
  22. export PATH=$GOPATH/bin:$GOROOT/bin:$PATH
  23.  
  24. #Download GIT
  25. apt-get git
  26.  
  27. #Then after git is installed you can download the lino core and install it using the follow commands.
  28. mkdir -p $GOPATH/src/github.com/lino-network/
  29. cd $GOPATH/src/github.com/lino-network/
  30. git clone https://github.com/lino-network/lino
  31. cd lino
  32. git checkout v0.2.9
  33. make get_tools && make install
  34.  
  35. #From here it should be ready to start
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement