Advertisement
Guest User

Untitled

a guest
Feb 15th, 2019
382
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.83 KB | None | 0 0
  1. Install Ubuntu 18.04/16.04 from Windows Store
  2.  
  3. Create user/pass when prompted
  4.  
  5. Copy and paste this stuff or type it out carefully if not pasting correctly somehow
  6.  
  7. sudo apt-get update
  8.  
  9. sudo apt-get install build-essential libtool autotools-dev automake pkg-config libssl-dev libssl1.0-dev libevent-dev bsdmainutils libboost-system-dev libboost-filesystem-dev libboost-chrono-dev libboost-program-options-dev libboost-test-dev libboost-thread-dev libminiupnpc-dev miniupnpc libgmp3-dev libdb-dev libdb++-dev libgmp3-dev lzma-dev
  10.  
  11. REBOOT UBUNTU.EXE APPLICATION
  12.  
  13. git clone http://www.github.com/pepeteam/pepecoin.git
  14.  
  15. now navigate to pepecoin/src folder by doing
  16.  
  17. cd pepecoin/src
  18.  
  19. make -f makefile.unix USE_UPNP=-1
  20.  
  21. wait till done 10 mins~
  22.  
  23. you can then run pepecoind with command
  24.  
  25. ./pepecoind -daemon
  26.  
  27. you will then have to configure pepecoin.conf with some rpc user/pass info
  28.  
  29. you do that by typin
  30.  
  31. cd to go home
  32.  
  33. then
  34.  
  35. cd .pepecoin
  36.  
  37. then type nano pepecoin.conf
  38.  
  39. this will allow you to type stuff paste this
  40.  
  41. rpcallowip=127.0.0.1
  42. rpcuser=REPLACEME
  43. rpcpassword=REPLACEME
  44. rpcport=29376
  45. server=1
  46. listen=1
  47. port=29377
  48.  
  49.  
  50. click ctrl + x to save then click enter twice to exit nano text editor
  51.  
  52. then navigate back to the pepecoin/src folder and start ./pepecoind -daemon
  53.  
  54. it will then sync from 0 which you can do or use a snapshot.
  55.  
  56. to use a snapshot we are going to do it the easy way with resync.sh
  57.  
  58. step 1. be in home directory by making sure to type cd
  59.  
  60. step 2. wget http://seed2.pepecoin.co/resync.sh
  61.  
  62. step 3. type ls ( this will show that u have downloaded the file resync.sh)
  63.  
  64. step 4. lets make resync.sh work by typing
  65.  
  66. chmod +x resync.sh
  67.  
  68. step 5. ./resync.sh
  69.  
  70.  
  71. done let it run it will add snap to ur chain directory
  72.  
  73.  
  74. then u can do cd pepecoin/src
  75.  
  76. then
  77.  
  78. ./pepecoind -daemon
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement