-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPieCoin Linux Install Guide.txt
62 lines (35 loc) · 1.58 KB
/
PieCoin Linux Install Guide.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
Pie Coin Install
est time to install: 60 - 90 minutes
Get VPS:
http://www.vultr.com/?ref=7185024
25 G
Ubuntu 14.04
make user:
adduser <newUsername>
usermod -aG sudo <newUsername>
*** Now that you have created your user and added them to the sudoers group there is no reason to be root
*** log out of putty or your vultr console and log back in as <newUsername>
make room:
sudo dd if=/dev/zero of=/var/swap.img bs=1024k count=1000;sudo mkswap /var/swap.img;sudo swapon /var/swap.img;sudo chmod 0600 /var/swap.img;sudo chown root:root /var/swap.img;sudo nano /etc/fstab
(A nano editor will open up, append this to the last line and save)
/var/swap.img none swap sw 0 0
install dependencies:
sudo apt-get update && sudo apt-get install automake && sudo apt-get install git && sudo apt-get install build-essential && sudo apt-get install libssl-dev && sudo apt-get install libdb++-dev && sudo apt-get install libboost-all-dev && sudo apt-get install libqrencode-dev
install source:
cd ~ && git clone https://github.com/PieCoinTech/PIE
** The make command can take upwards of an hour to run **
cd ~/PIE/src && make -f makefile.unix USE_UPNP=
strip PieCoind
sudo cp ~/PIE/src/PieCoind /usr/local/bin/
##This is a Sample of what should be in PieConf.conf#####
rpcuser=PieCoinlbc
rpcpassword=2yZHiaeYLdgRvs3X7UVLSiKkBQc7dtD7T66YexTgb24gSV
addnode=195.74.52.227
##########################################################
mkdir ~/.PieCoin/ && nano PieCoin.conf
<paste node stuff in here>
then ctrl x
y
enter
PieCoind --daemon
#youll most likely have to ctrl +c outta here... not sure why