Guide For Setting Up And Mining Bitcoin BTC On FreeBSD

iwanse1212

Newbie
Joined
Aug 31, 2024
Messages
1
Reaction score
1
Bitcoin (BTC) is a cryptocurrency, a virtual currency designed to act as money and a form of payment outside the control of a single person, group, or entity, thereby eliminating the need for third-party involvement in financial transactions. It is awarded to blockchain miners for work done to verify transactions and can be purchased on some exchanges.

root@router2:~ # pkg update
root@router2:~ # pkg upgrade -y

root@router2:~ # pkg install autoconf automake boost-libs git libevent libtool pkgconf
root@router2:~ # pkg install libzmq4 miniupnpc norm openpgm python39 sqlite3 db5 gmake

root@router2:~ # adduser

root@router2:~ # cd /usr/local/etc
root@router2:/usr/local/etc/bitcoin # git clone https://github.com/bitcoin/bitcoin.git
root@router2:/usr/local/etc/bitcoin # cd bitcoin
root@router2:/usr/local/etc/bitcoin # ./autogen.sh
root@router2:/usr/local/etc/bitcoin # ./configure --disable-hardening MAKE="gmake" CFLAGS="-I/usr/local/include" CXXFLAGS="-I/usr/local/include -I/usr/local/include/db5" LDFLAGS="-L/usr/local/lib -L/usr/local/lib/db5"
root@router2:/usr/local/etc/bitcoin # gmake
root@router2:/usr/local/etc/bitcoin # gmake check
root@router2:/usr/local/etc/bitcoin # gmake install
 
I don't know what you're writing but this is the wrong section buddy.
 
Back
Top