Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 15 additions & 3 deletions doc/build-unix.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,23 @@ software written by Thomas Bernard.
UNIX BUILD NOTES
================

To Build
To Build on Debian or Ubuntu
--------

cd src/
make -f makefile.unix # Headless b3coin
sudo apt-get update
sudo apt-get upgrade
sudo reboot
sudo apt-get install -y git build-essential libssl-dev libdb++-dev libboost-all-dev libqrencode-dev
git clone https://github.com/B3-Coin/B3-CoinV2/
cd B3-CoinV2/src/leveldb
make clean
make libmemenv.a libleveldb.a
cd ..
make -f makefile.unix
sudo ln -s ~/B3-CoinV2/src/b3coind /usr/bin/b3coind
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Might want to include the strip b3coind command around here

b3coind

(configure ~/.B3-CoinV2/b3coin.conf and ~/.B3-CoinV2/fundamentalnode.conf if it is a fundamental node)

See readme-qt.rst for instructions on building B3-Coin QT,
the graphical b3coin.
Expand Down