Advertisement
gregorst

dep for qt wallets

Feb 10th, 2018
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.74 KB | None | 0 0
  1. How to compile a qt wallet on linux sys based
  2.  
  3.  
  4. sudo apt-get install libzmq3-dev libminiupnpc-dev libssl-dev libevent-dev -y
  5. sudo apt-get install build-essential libtool autotools-dev automake pkg-config -y
  6. sudo apt-get install libssl-dev libevent-dev bsdmainutils software-properties-common -y
  7. sudo apt-get install libqt5gui5 libqt5core5a libqt5dbus5 qttools5-dev qttools5-dev-tools libprotobuf-dev protobuf-compiler -y
  8. software-properties-common
  9. sudo apt-get install libboost-all-dev -y
  10. Berkley 4.8:
  11. sudo add-apt-repository ppa:bitcoin/bitcoin
  12. sudo apt-get update
  13. sudo apt-get install libdb4.8-dev libdb4.8++-dev wget -y
  14. sudo apt-get install libdb5.3++-dev -y
  15.  
  16.  
  17.  
  18. sudo apt-get install git -y
  19. git clone
  20. cd instacash
  21. bash autogen.sh
  22. sudo ./configure
  23. sudo make clean
  24. sudo make
  25. sudo make install
  26.  
  27.  
  28.  
  29.  
  30.  
  31. Do you want to install the gui? Follow this:
  32. How to install gui on linux to control vps from windows
  33.  
  34. sudo apt install xfce4 xfce4-goodies tightvncserver -y
  35.  
  36. After that we will start the service with
  37. vncserver
  38.  
  39. The first time, it will ask you for a password, choose one and type in it. (strong password)
  40.  
  41. Now, go on your windows pc and download this https://www.realvnc.com/en/connect/download/viewer/
  42.  
  43. Once downloaded, open vncviewer
  44.  
  45. Use IP:5901 to connect to your vps
  46.  
  47.  
  48. \\Raspberry Pi
  49.  
  50. sudo apt-get install autoconf libevent-dev libtool libssl-dev libboost-all-dev libminiupnpc-dev libdb-dev libdb4.8++ libdb5.3++-dev git -y
  51. wget http://download.oracle.com/berkeley-db/db-4.8.30.NC.tar.gz
  52. sudo tar -xzvf db-4.8.30.NC.tar.gz
  53. cd db-4.8.30.NC/build_unix
  54. sudo ../dist/configure --enable-cxx
  55. sudo make
  56. sudo make install
  57. export CPATH="/usr/local/BerkeleyDB.4.8/include"
  58. export LIBRARY_PATH="/usr/local/BerkeleyDB.4.8/lib"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement