Author

Topic: Bullion (CBX) 'the Digital Precious Metal' | 2019 Roadmap published - page 141. (Read 359541 times)

member
Activity: 92
Merit: 13
Thanks to both of you, I already get past the

sudo apt-get install libdb-dev libdb++-dev

Is it alright to proceed with libdb 4.8? Or do I have to get rid of the previous installation first?
You don't especially have to uninstall it because as I said in my document, when you do the "make" command you will specify the path of libdb4.8, so there can't be a mistake from compiler.

Down to the last step but got this

root@19313:~/CryptoBullion-CBX/src# make -f makefile.unix BDB_INCLUDE_PATH="/usr/local/BerkeleyDB.4.8/include" BDB_LIB_PATH="/usr/local/BerkeleyDB.4.
8/lib"
g++ -c -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -I/root/CryptoBullion-CBX/src -I/root
/CryptoBullion-CBX/src/obj -I/usr/local/BerkeleyDB.4.8/include -DUSE_UPNP=0 -DUSE_IPV6=1 -I/root/CryptoBullion-CBX/src/leveldb/include -DUSE_LEVELDB
-I/root/CryptoBullion-CBX/src/leveldb/helpers -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -msse2 -MMD -MF obj/a
lert.d -o obj/alert.o alert.cpp                                                                                                                     
alert.cpp:5:29: fatal error: boost/foreach.hpp: No such file or directory                                                                           
 #include


Tried google but was unable to find a workaround. It looks like I need to edit something here, just don't know what. Thanks in advance.

Was able to get past the previous step, some missing stuff still in my debian that's why it didn't work.
This one though is the new problem

collect2: error: ld returned 1 exit status                                                                                                           
makefile.unix:190: recipe for target 'cryptobulliond' failed                                                                                         
make: *** [cryptobulliond] Error 1

tried the all three below
make -f makefile.unix "USE_UPNP=-"                                                                               
make -f makefile.unix   
make -f makefile.unix BDB_INCLUDE_PATH="/usr/local/BerkeleyDB.4.8/include" BDB_LIB_PATH="/usr/local/BerkeleyDB.4.8/lib"

What did I miss this time?

Thanks in advance
Please send me the complete error by PM
member
Activity: 92
Merit: 13
Thanks to both of you, I already get past the

sudo apt-get install libdb-dev libdb++-dev

Is it alright to proceed with libdb 4.8? Or do I have to get rid of the previous installation first?
You don't especially have to uninstall it because as I said in my document, when you do the "make" command you will specify the path of libdb4.8, so there can't be a mistake from compiler.

Down to the last step but got this

root@19313:~/CryptoBullion-CBX/src# make -f makefile.unix BDB_INCLUDE_PATH="/usr/local/BerkeleyDB.4.8/include" BDB_LIB_PATH="/usr/local/BerkeleyDB.4.
8/lib"
g++ -c -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -I/root/CryptoBullion-CBX/src -I/root
/CryptoBullion-CBX/src/obj -I/usr/local/BerkeleyDB.4.8/include -DUSE_UPNP=0 -DUSE_IPV6=1 -I/root/CryptoBullion-CBX/src/leveldb/include -DUSE_LEVELDB
-I/root/CryptoBullion-CBX/src/leveldb/helpers -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -msse2 -MMD -MF obj/a
lert.d -o obj/alert.o alert.cpp                                                                                                                     
alert.cpp:5:29: fatal error: boost/foreach.hpp: No such file or directory                                                                           
 #include


Tried google but was unable to find a workaround. It looks like I need to edit something here, just don't know what. Thanks in advance.
You don't have the required library since last time you tried to install it doesn't work cause of libdb, just run that:
Code:
sudo apt-get install build-essential libtool autotools-dev autoconf pkg-config libssl-dev libevent-dev libboost-all-dev
Then compile
hero member
Activity: 728
Merit: 500
Thanks to both of you, I already get past the

sudo apt-get install libdb-dev libdb++-dev

Is it alright to proceed with libdb 4.8? Or do I have to get rid of the previous installation first?
You don't especially have to uninstall it because as I said in my document, when you do the "make" command you will specify the path of libdb4.8, so there can't be a mistake from compiler.

Down to the last step but got this

root@19313:~/CryptoBullion-CBX/src# make -f makefile.unix BDB_INCLUDE_PATH="/usr/local/BerkeleyDB.4.8/include" BDB_LIB_PATH="/usr/local/BerkeleyDB.4.
8/lib"
g++ -c -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -I/root/CryptoBullion-CBX/src -I/root
/CryptoBullion-CBX/src/obj -I/usr/local/BerkeleyDB.4.8/include -DUSE_UPNP=0 -DUSE_IPV6=1 -I/root/CryptoBullion-CBX/src/leveldb/include -DUSE_LEVELDB
-I/root/CryptoBullion-CBX/src/leveldb/helpers -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -msse2 -MMD -MF obj/a
lert.d -o obj/alert.o alert.cpp                                                                                                                     
alert.cpp:5:29: fatal error: boost/foreach.hpp: No such file or directory                                                                           
 #include


Tried google but was unable to find a workaround. It looks like I need to edit something here, just don't know what. Thanks in advance.

Was able to get past the previous step, some missing stuff still in my debian that's why it didn't work.
This one though is the new problem

collect2: error: ld returned 1 exit status                                                                                                           
makefile.unix:190: recipe for target 'cryptobulliond' failed                                                                                         
make: *** [cryptobulliond] Error 1

tried the all three below
make -f makefile.unix "USE_UPNP=-"                                                                               
make -f makefile.unix   
make -f makefile.unix BDB_INCLUDE_PATH="/usr/local/BerkeleyDB.4.8/include" BDB_LIB_PATH="/usr/local/BerkeleyDB.4.8/lib"

What did I miss this time?

Thanks in advance
sr. member
Activity: 434
Merit: 250
★YoBit.Net★ 350+ Coins Exchange & Dice
We're 33 in Ccex ranking, slowly we're climbing. Will send 1 or 2 votes tonight as well.
legendary
Activity: 2100
Merit: 1167
MY RED TRUST LEFT BY SCUMBAGS - READ MY SIG
Quote
I would like to know why posp is better than pos3 (black)  if this could clearly be explained I think cgb will get a lot more attention.

I have asked many people this question many times and yet have not had a clear cut answer. I have quite a bit of cgb from ages back and have always like this coin a lot.

Are you (elambert) the creator of posp? can posp work with full POS and not just POS+POW?  I wonder already why more coins are not switching to this posp and are all using pos3?


Hi cryptohunter. I do not know much about blackcoin and their pos3 but I do hear that it is similar. I would have to study it to learn the nuances but I don't know. Being a higher ranked market cap coin allows blackcoin to be visible to a far larger audience than CBX so they would be more likely to be cloned. Their implementation of PoS was the first (per my understanding) to do away with coinage. We improved on the removal of coinage design by implementing a static reward so as to only reward those staking their coins and securing the network while inactive coin owners forfeited their stake to the active stakers.

I wrote the white paper on PoSP and came up with the concept but Alex4J implemented it into CBX. PoSP is full PoS, there is no PoW in use. When we implemented PoSP, we did away with PoW altogether.

We have tried but we are still battling to let people know about PoSP. The majority doesnt know we have it and a good portion of those who know we have it, dont understand what it is. So.... I think a short video would be instrumental in not only educating current CBX owners, but also the rest of the world.


Thanks for the reply. I am still looking into them both POSP and pos3 look like the best POS variations by far.
sr. member
Activity: 434
Merit: 250
★YoBit.Net★ 350+ Coins Exchange & Dice
Can someone shoot me a PM explaining the wallbusters promo.
Looking to invest here, like what I see.

here are the informations about the WBIP

https://bitcointalksearch.org/topic/m.14234456

Thanks for that. The wall at 0.0006 is not really there anymore so not sure if this is still in play.

Sure, this program (WBIP) continues until we bust through .0006 - which indeed appears much easier to do, now that some sellers lost patience and dumped Wink
is that means that we are near to move forward mate? as you mention that many dumpers already dump their coin so which means your project is now moving up and how long we need to wait to make it to the point where you can say it was a success to our community? just curios question mate. thanks.

Morning, Golftech. It's hard to say when the WBIP will be 'finished'; but it's working! If you look at the buy-sell order books and the recent trading data, you'll see great volume, a much tighter buy-sell spread -- less than 5% at this second -- and fewer sell-orders hanging over our head. Please feel free to wade in and do a little trading yourself: a currency gotta have volume!

Mark

Yes, we only need a couple of BTC to get past that price plus we're getting some volumes as well despite Lisk being a hot coin right now.
I think there's no funds support or reserve to control the volume of the market.. i saw the price if cbx right now in cryptopia and i think cbx campaign is has a bad result but if you are paying it in bitcoin people joined in campaign they can not dump their cbx.. because they are receiving it in bitcoin..
I am one of the supporters of cbx but i notice after starting a campaign paying with cbx daily more people are dumping in cryptopia..

Paying it in CBX though even when dumped into the exchange still creates popularity into the coin and the campaign to 60k is also lower than before. I guess, Vonspass is hoping that those who are collecting from the campaign can use their CBX to jumpstart their holdings. I guess, not all of them are selling them in exchange, some are saving them for staking use. Also, having the payment in CBX allows more installation of vaults compared to if those are being paid in BTC.
legendary
Activity: 1960
Merit: 1010
m33
legendary
Activity: 1064
Merit: 1000
Never invest with borrowed coins
Hello guys has the signature campaign ended?
hero member
Activity: 1302
Merit: 540
if helping to gain popularity doing the campaign helps the awareness but you are correct getting cbx for free would be easy for dumpers to dump right away and the price won't go up, I think limiting participants and re create the plan of that campaign would be needed I'm just new here and I keep checking this promising coin.
legendary
Activity: 3472
Merit: 3217
Happy New year 🤗
Can someone shoot me a PM explaining the wallbusters promo.
Looking to invest here, like what I see.

here are the informations about the WBIP

https://bitcointalksearch.org/topic/m.14234456

Thanks for that. The wall at 0.0006 is not really there anymore so not sure if this is still in play.

Sure, this program (WBIP) continues until we bust through .0006 - which indeed appears much easier to do, now that some sellers lost patience and dumped Wink
is that means that we are near to move forward mate? as you mention that many dumpers already dump their coin so which means your project is now moving up and how long we need to wait to make it to the point where you can say it was a success to our community? just curios question mate. thanks.

Morning, Golftech. It's hard to say when the WBIP will be 'finished'; but it's working! If you look at the buy-sell order books and the recent trading data, you'll see great volume, a much tighter buy-sell spread -- less than 5% at this second -- and fewer sell-orders hanging over our head. Please feel free to wade in and do a little trading yourself: a currency gotta have volume!

Mark

Yes, we only need a couple of BTC to get past that price plus we're getting some volumes as well despite Lisk being a hot coin right now.
I think there's no funds support or reserve to control the volume of the market.. i saw the price if cbx right now in cryptopia and i think cbx campaign is has a bad result but if you are paying it in bitcoin people joined in campaign they can not dump their cbx.. because they are receiving it in bitcoin..
I am one of the supporters of cbx but i notice after starting a campaign paying with cbx daily more people are dumping in cryptopia..
sr. member
Activity: 434
Merit: 250
★YoBit.Net★ 350+ Coins Exchange & Dice
Can someone shoot me a PM explaining the wallbusters promo.
Looking to invest here, like what I see.

here are the informations about the WBIP

https://bitcointalksearch.org/topic/m.14234456

Thanks for that. The wall at 0.0006 is not really there anymore so not sure if this is still in play.

Sure, this program (WBIP) continues until we bust through .0006 - which indeed appears much easier to do, now that some sellers lost patience and dumped Wink
is that means that we are near to move forward mate? as you mention that many dumpers already dump their coin so which means your project is now moving up and how long we need to wait to make it to the point where you can say it was a success to our community? just curios question mate. thanks.

Morning, Golftech. It's hard to say when the WBIP will be 'finished'; but it's working! If you look at the buy-sell order books and the recent trading data, you'll see great volume, a much tighter buy-sell spread -- less than 5% at this second -- and fewer sell-orders hanging over our head. Please feel free to wade in and do a little trading yourself: a currency gotta have volume!

Mark

Yes, we only need a couple of BTC to get past that price plus we're getting some volumes as well despite Lisk being a hot coin right now.
IMZ
legendary
Activity: 1498
Merit: 1000
Can someone shoot me a PM explaining the wallbusters promo.
Looking to invest here, like what I see.

here are the informations about the WBIP

https://bitcointalksearch.org/topic/m.14234456

Thanks for that. The wall at 0.0006 is not really there anymore so not sure if this is still in play.

Sure, this program (WBIP) continues until we bust through .0006 - which indeed appears much easier to do, now that some sellers lost patience and dumped Wink
is that means that we are near to move forward mate? as you mention that many dumpers already dump their coin so which means your project is now moving up and how long we need to wait to make it to the point where you can say it was a success to our community? just curios question mate. thanks.

Morning, Golftech. It's hard to say when the WBIP will be 'finished'; but it's working! If you look at the buy-sell order books and the recent trading data, you'll see great volume, a much tighter buy-sell spread -- less than 5% at this second -- and fewer sell-orders hanging over our head. Please feel free to wade in and do a little trading yourself: a currency gotta have volume!

Mark
hero member
Activity: 728
Merit: 500
Thanks to both of you, I already get past the

sudo apt-get install libdb-dev libdb++-dev

Is it alright to proceed with libdb 4.8? Or do I have to get rid of the previous installation first?
You don't especially have to uninstall it because as I said in my document, when you do the "make" command you will specify the path of libdb4.8, so there can't be a mistake from compiler.

Down to the last step but got this

root@19313:~/CryptoBullion-CBX/src# make -f makefile.unix BDB_INCLUDE_PATH="/usr/local/BerkeleyDB.4.8/include" BDB_LIB_PATH="/usr/local/BerkeleyDB.4.
8/lib"
g++ -c -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -I/root/CryptoBullion-CBX/src -I/root
/CryptoBullion-CBX/src/obj -I/usr/local/BerkeleyDB.4.8/include -DUSE_UPNP=0 -DUSE_IPV6=1 -I/root/CryptoBullion-CBX/src/leveldb/include -DUSE_LEVELDB
-I/root/CryptoBullion-CBX/src/leveldb/helpers -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -msse2 -MMD -MF obj/a
lert.d -o obj/alert.o alert.cpp                                                                                                                     
alert.cpp:5:29: fatal error: boost/foreach.hpp: No such file or directory                                                                           
 #include


Tried google but was unable to find a workaround. It looks like I need to edit something here, just don't know what. Thanks in advance.
legendary
Activity: 3416
Merit: 1225
Enjoy 500% bonus + 70 FS
Just cast my vote on CCEX I am the 43th voter it's still a long way to go i think it will take a few more weeks to get  there we need CCCEX for this there are traders who prefer this trading flat form and they seldom go out of other flat forms ..

Thanks, once we get close enough many others will help in sending their vote to CBX direction.

But we need to remember once we get listed there we should have an active trading there CCEX are delisting coins that has very low trading volume,i have voted coins that was delisted because of very low trading volume
sr. member
Activity: 434
Merit: 250
★YoBit.Net★ 350+ Coins Exchange & Dice
Just cast my vote on CCEX I am the 43th voter it's still a long way to go i think it will take a few more weeks to get  there we need CCCEX for this there are traders who prefer this trading flat form and they seldom go out of other flat forms ..

Thanks, once we get close enough many others will help in sending their vote to CBX direction.
legendary
Activity: 3416
Merit: 1225
Enjoy 500% bonus + 70 FS
Just cast my vote on CCEX I am the 43th voter it's still a long way to go i think it will take a few more weeks to get  there we need CCCEX for this there are traders who prefer this trading flat form and they seldom go out of other flat forms ..
member
Activity: 92
Merit: 13
Thanks to both of you, I already get past the

sudo apt-get install libdb-dev libdb++-dev

Is it alright to proceed with libdb 4.8? Or do I have to get rid of the previous installation first?
You don't especially have to uninstall it because as I said in my document, when you do the "make" command you will specify the path of libdb4.8, so there can't be a mistake from compiler.
hero member
Activity: 728
Merit: 500
Thanks to both of you, I already get past the

sudo apt-get install libdb-dev libdb++-dev

Is it alright to proceed with libdb 4.8? Or do I have to get rid of the previous installation first?
legendary
Activity: 2646
Merit: 1722
https://youtu.be/DsAVx0u9Cw4 ... Dr. WHO < KLF
@Alex4J

OK fair enough.

However, please update the repository doc with the above information, as adding ppa:bitcoin/bitcoin and trying to apt-get install libdb4.8-dev libdb4.8++-dev is obviously going to cause some confusion for Debian/Ubuntu-like Linux distribution users.

- https://github.com/cryptogenicbonds/CryptoBullion-CBX/blob/master/doc/build-unix.md

...

To clarify why Alex4J is stating that using a berkeley-db version other than 4.8 is possibly a bad idea - I will quote a Litecoin team member from 2013 ...

"Upstream Bitcoin considers db-4.8 to be the only supported version. 5.1 is known to work, buts databases are incompatible with official builds created with db-4.8."

"5.1 works. It is just incompatible with the official binaries so your wallet.dat will forever be different, needing your own builds."

It remains that - libdb4.8++-dev has no installation candidate. So, something for all Linux users to be made aware of.

Smiley
member
Activity: 92
Merit: 13
Anybody here recently installed cbx in linux (no GUI)?

I'm following this one,
https://github.com/cryptogenicbonds/CryptoBullion-CBX/blob/master/doc/build-unix.md

But encountered an error in getting the libdb4.8

Installing this one
sudo apt-get install build-essential libtool autotools-dev autoconf pkg-config libssl-dev libevent-dev libboost-all-dev libdb4.8-dev libdb4.8++-dev

Presented me with this
Package libdb4.8++-dev is not available, but is referred to by another package.                                                                     
This may mean that the package is missing, has been obsoleted, or                                                                                   
is only available from another source                                                                                                               
                                                                                                                                                     
Package libdb4.8-dev is not available, but is referred to by another package.                                                                       
This may mean that the package is missing, has been obsoleted, or                                                                                   
is only available from another source                                                                                                               
                                                                                                                                                     
E: Package 'libdb4.8-dev' has no installation candidate                                                                                             
E: Package 'libdb4.8++-dev' has no installation candidate   


Any known fix?
Thanks in advance.

You are trying to install 'old' package versions against an already updated repository for your distro. which I'm guessing is Ubuntu or Debian based.

The 'fix' is to not specify any version number for libdb so that the current release will be pulled from the repo. and not cause any conflicts. Thus,

Code:
sudo apt-get install libdb-dev libdb++-dev

or

sudo apt-get install build-essential libtool autotools-dev autoconf pkg-config libssl-dev libevent-dev libboost-all-dev libdb-dev libdb++-dev

sudo apt-get autoremove

sudo apt-get autoclean

The wallet (daemon) should compile OK after that if you don't see any other package conflicts.

Cheers!
Very bad idea and suggestion, do not do that

Thanks, was able to get past that part. I'm using Debian 8, a newly installed one.

Do I still need to follow these steps?

Build leveldb:
cd src/leveldb/ && make libleveldb.a libmemenv.a && cd ..
Build miniupnpc (option, if you don't build it just use make "USE_UPNP=-" in the next step)
cd src/miniupnpc && make && cd ..
Build CrytpoBullion daemon:
make -f makefile.unix

from https://github.com/cryptogenicbonds/CryptoBullion-CBX/blob/master/doc/build-unix.md?

Because those folders are not being created.


Thanks in advance.
If you are on debian, like me, you should compile libdb 4.8 by your self:
Code:
wget 'http://download.oracle.com/berkeley-db/db-4.8.30.NC.tar.gz'
tar -xzvf db-4.8.30.NC.tar.gz
cd db-4.8.30.NC/build_unix/
../dist/configure --enable-cxx --disable-shared --with-pic --prefix=$BDB_PREFIX
sudo make install

For the folder, I would expect a typical Linux user to do it before trying to go in src:
Code:
git clone https://github.com/cryptogenicbonds/CryptoBullion-CBX.git
cd CryptoBullion-CBX
cd src/leveldb/ && make libleveldb.a libmemenv.a && cd ..
Build miniupnpc (option, if you don't build it just use make "USE_UPNP=-" in the next step)
Code:
cd src/miniupnpc && make && cd ..
Build CrytpoBullion daemon:
Code:
make -f makefile.unix BDB_INCLUDE_PATH="/usr/local/BerkeleyDB.4.8/include" BDB_LIB_PATH="/usr/local/BerkeleyDB.4.8/lib"
Because we have compile libdb ourself and install ourself we must specify the path where it's stored.
Jump to: