Join GitHub today
GitHub is home to over 20 million developers working together to host and review code, manage projects, and build software together.
[Suggestion] "Minting on a Raspberry Pi" #22
Comments
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
Show comment Hide comment|
Have you run through the steps that you outlined here? |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
Show comment Hide comment
Lamz0rNewb
Sep 6, 2015
Contributor
Yes, but you can try yourself if you want to verify it ;)
Maybe it's necessary to underline that exporting the variables should be done close to compiling nud - I'm not sure whether the export survives a reboot or a change of context.
|
Yes, but you can try yourself if you want to verify it ;) |
CoinGame
closed this
in
c2706fd
Sep 13, 2015
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Lamz0rNewb commentedSep 6, 2015
Page Title: Minting on a Raspberry Pi
URL: https://docs.nubits.com//nu-raspberry-minting/
Update Suggested
Installing BerkeleyDB4.8 from source - in case no repository with compiled packages can be found
Adjusted dependencies for compiling nud with libdb4.8:
sudo apt-get install checkinstall subversion git git-core build-essential libssl-dev libboost-dev libboost-system-dev libboost-filesystem-dev libboost-program-options-dev libboost-thread-dev libcurl4-openssl-dev libminiupnpc-devcd ~/wget http://download.oracle.com/berkeley-db/db-4.8.30.tar.gztar xvf db-4.8.30.tar.gzcd ~/db-4.8.30/build_unix../dist/configure --enable-cxxmakesudo make installexport BDB_INCLUDE_PATH="/usr/local/BerkeleyDB.4.8/include"export BDB_LIB_PATH="/usr/local/BerkeleyDB.4.8/lib"sudo ln -s /usr/local/BerkeleyDB.4.8/lib/libdb-4.8.so /usr/lib/libdb-4.8.sosudo ln -s /usr/local/BerkeleyDB.4.8/lib/libdb_cxx-4.8.so /usr/lib/libdb_cxx-4.8.so