benthach
Legendary
Offline
Activity: 1764
Merit: 1000
|
|
April 13, 2015, 02:05:54 PM |
|
reason trolls post here is simple
THEY SMELL MONEY (fucking bottom feeders)
it's simple to see you dumb morons bagholder cry. you morons allow this scam to happen, rinse and repeat over again and again. someone just came out of a rat hole took away hundred and hundred of btcs and disappeared, easy and simple.
|
reddit btcwriter1 - twitter kingpininvestor
|
|
|
hepilord
|
|
April 13, 2015, 02:07:19 PM |
|
i still get this error when i want to start mn: not capable masternode: Unknown. Check debug.log for more information. I do according to this: How do I set up a Master Node??
in linux http://www.cravecoin.info/master-node-guide/Here are instructions on how to set up a masternode in Windows environment:Start up and sync your wallet. Open debug console, type: masternode genkey Copy output key into a text file to be used later Then, in debug console type: getaccountaddress 0 Copy output address into a text file to be used later Send 500 CRAVE to address output above, no more, no less. Exactly 500. Close Wallet Create/Edit crave.conf: maxconnections=100 rpcuser=solo rpcpassword=user rpcport=9999 gen=0 server=1 daemon=1 reservebalance=9999999 masternodeaddr=YOUR_IP:9999 masternode=1 masternodeprivkey=KEY GENERATED BY COMMAND rpcallowip=127.0.0.1 Save Wait 15 blocks (see confirmations from wallet you sent 500 CRAVE) To start masternode wallet, open debug console and type: masternode start First of all, that Linux guide is a disaster. Doesn't show where a command to install dependents begins and where one ends. There's no section showing how to actually compile a qt wallet, and the section where you set up TOR's confusing. The Windows instructions are very easy. Good luck with the Linux part is all I can say. can enyone help? i working on windows
|
|
|
|
Hyperjacked
Legendary
Offline
Activity: 1610
Merit: 1119
It's all mathematics...!
|
|
April 13, 2015, 02:13:03 PM |
|
@Trolls Thanks for keeping Crave bumped to the top! +1 morning Cravers ! No update yet? Dev said it's coming and still not here. this dev just came out of a rat hole and he will soon go back in a rat hole with no string attached, simple as that. Really? And what Rat hole did you come out of? Spoken like a true Rat Shill! Imo! Date Registered: December 02, 2013, 03:31:49 PM industrialcoinmagic Date Registered: March 17, 2015, 06:25:57 PM, i'm sure he have 10 other legit users and coins. Are you really hanging your hat on that sr member line of reasoning....Wow lol! I guess we should respect all the high ranked shill members right? wrong!!! Get real dude...you are talking with a Hero Legendary member right now and your arrogance blinds you to the truth! Now go back to Evan and give him a big old member status hug! I'm really very civil...consider yourself served!
|
@Hyperjacked1 Twitter
|
|
|
rocoro
Legendary
Offline
Activity: 938
Merit: 1000
|
|
April 13, 2015, 02:13:25 PM |
|
i still get this error when i want to start mn: not capable masternode: Unknown. Check debug.log for more information.
can enyone help? i working on windows
Did you make sure your ports are opened in router etc.. ?
|
|
|
|
|
YourMother
Legendary
Offline
Activity: 1281
Merit: 1046
|
|
April 13, 2015, 02:15:23 PM |
|
reason trolls post here is simple
THEY SMELL MONEY (fucking bottom feeders)
it's simple to see you dumb morons bagholder cry. you morons allow this scam to happen, rinse and repeat over again and again. someone just came out of a rat hole took away hundred and hundred of btcs and disappeared, easy and simple. The saddest shit is that they never admit defeat. Some of them will still be active on this thread in 2016, 2017. Look at Crypt, Cloak, Stealth and the other shitcoins that are laying in the crypto cemetery. You see delusional cry babies everywhere you go in the altcoin section. Disgusting aborted rats that are clinging to a hope that one day a magic bull whale will come and pump their bags to Jupiter.
|
The absolute worst people in history, ranked by the wisdom of the crowd: "Vlad the Impaler", "Mihnea the Evil", "Ivan the Terrible" and "Evan the Instaminer".
|
|
|
hepilord
|
|
April 13, 2015, 02:16:21 PM |
|
i still get this error when i want to start mn: not capable masternode: Unknown. Check debug.log for more information.
can enyone help? i working on windows
Did you make sure your ports are opened in router etc.. ? yes port 9999 is open
|
|
|
|
abel1337
Legendary
Offline
Activity: 2492
Merit: 1145
Enterapp Pre-Sale Live - bit.ly/3UrMCWI
|
|
April 13, 2015, 02:18:21 PM |
|
I keep posting this image because I feel like this is one of those tree fiddy reddit posts except this is crypto and a forum thread. Im just waiting fo the dev to come out and ask us for something. What would he ask for?
|
|
|
|
allyouracid
Legendary
Offline
Activity: 2321
Merit: 1292
Encrypted Money, Baby!
|
|
April 13, 2015, 02:22:30 PM |
|
./craved & [2] 29601 [1] Exit 127 ./craved root@vultr:~# ./craved: symbol lookup error: ./craved: undefined symbol: secp256k1_start Help someone what I'm doing wrong? Why do I get this message on the server? sudo apt-get install build-essential libtool autotools-dev autoconf pkg-config libssl-dev libboost-all-dev automake libdb++-dev libssl-dev git sudo aptitude install libminiupnpc-dev git clone https://github.com/bitcoin/secp256k1 cd secp256k1 ./autogen.sh ./configure make sudo make install cd .. ldconfig wget http://104.207.135.209/craved chmod 777 craved STOP! Don't do that!!Just for the sake of completeness, there are two things you should definitely avoid (for that reason, it's generally a bad idea to just copypaste code from some random web board and use it without knowing what it actually does): - Never mix apt-get and aptitude/synaptic/… (or, generally, don't mix the use of different package managers). The reason is simple: each has its own dependency management system, and each does it differently. You can easily end up with a broken system that way, because one package manager might not know what another one did to resolve dependencies.
Instead, use "sudo apt-get install libminiupnpc-dev" for the second installation command. - chmod 777 for a daemon software, especially on a server (!!!) is totally unnecessary and - in case of dubious software - definitely dangerous. Instead, go for "chmod u+rwo craved", which ensures that your user can read, write and execute the daemon, or, yet better, "chmod 744 craved". This way, you give the user (first number) read, write, execute (read = 4, write = 2, execute = 1) rights, as 4+2+1=7, and the group (second number) plus others (third number, which you definitely don't want to have having read, write and execute rights because this means that literally anyone can read, write and execute this file!) only read access (4).
If that does not work because your group is required to execute it, try 774, but definitely not 777.
Posts like the quoted ones are the reason for all those insecure machines on the web which pose a big danger to their "administrators" and the general public, because they help sending annoying spam mails when they got hacked, again. But on the other hand, they give me and the company I'm working for a job.
|
|
|
|
VeritasSapere
|
|
April 13, 2015, 02:22:40 PM |
|
We should request that ICM fixes the github and gives proper credit to the prior contributors of the code base. Could you do this for the community industrialcoinmagic?
This would be a good chance to prove yourself as being a good and competent developer that is responsive to the community. I would personally buy the rest that i need for a masternode if you did this, since it would greatly increase my confidence in CRAVE and i am sure many others would feel the same way. The way the github looks now is just unprofessional and does not inspire confidence, please fix the github dev and give proper credit to the prior contributors of the code base, it is the right thing to do.
|
|
|
|
waffles99
|
|
April 13, 2015, 02:23:08 PM |
|
What would he ask for?
'Didn't feel like it today please wait longer'
|
|
|
|
rocoro
Legendary
Offline
Activity: 938
Merit: 1000
|
|
April 13, 2015, 02:25:05 PM |
|
i still get this error when i want to start mn: not capable masternode: Unknown. Check debug.log for more information.
can enyone help? i working on windows
Did you make sure your ports are opened in router etc.. ? yes port 9999 is open I would try with a separate daemon listening, I don't have much luck with those windows instructions the way its written. When I set up a separate daemon, it works.
|
|
|
|
abel1337
Legendary
Offline
Activity: 2492
Merit: 1145
Enterapp Pre-Sale Live - bit.ly/3UrMCWI
|
|
April 13, 2015, 02:34:04 PM |
|
What would he ask for?
'Didn't feel like it today please wait longer' It was about that time, I realized the dev was 8 stories tall and a crustacean from the Paleozoic Era. And I said "God damnit Monstah! I aint givin you no tree fiddy!"
|
|
|
|
gnargnar
Legendary
Offline
Activity: 1111
Merit: 1000
crypto-enthusiast since 2012
|
|
April 13, 2015, 02:34:40 PM |
|
..... Testing new Crave Signature !!!!
|
|
|
|
Blazin8888
|
|
April 13, 2015, 02:35:28 PM |
|
We should request that ICM fixes the github and gives proper credit to the prior contributors of the code base. Could you do this for the community industrialcoinmagic?
This would be a good chance to prove yourself as being a good and competent developer that is responsive to the community. I would personally buy the rest that i need for a masternode if you did this, since it would greatly increase my confidence in CRAVE and i am sure many others would feel the same way. The way the github looks now is just unprofessional and does not inspire confidence, please fix the github dev and give proper credit to the prior contributors of the code base, it is the right thing to do. Seems he has disapeared and he broke promise of giving an update today to go watch movies.
|
|
|
|
Hyperjacked
Legendary
Offline
Activity: 1610
Merit: 1119
It's all mathematics...!
|
|
April 13, 2015, 02:36:11 PM |
|
We should request that ICM fixes the github and gives proper credit to the prior contributors of the code base. Could you do this for the community industrialcoinmagic?
This would be a good chance to prove yourself as being a good and competent developer that is responsive to the community. I would personally buy the rest that i need for a masternode if you did this, since it would greatly increase my confidence in CRAVE and i am sure many others would feel the same way. The way the github looks now is just unprofessional and does not inspire confidence, please fix the github dev and give proper credit to the prior contributors of the code base, it is the right thing to do. Let me get this straight...giving credit to the prior contributors of the code base? What? Lol! You mean the talented Devs that got manipulated by the upper management of the coin formally known as Dark and received peanuts in return...Played and used by the crypto elite...really? Who do you think is behind this coin sir? Great men have always stood on the shoulders of other great men...ICM is a class act and you should read his posts before your look like a fool!
|
@Hyperjacked1 Twitter
|
|
|
sologap
|
|
April 13, 2015, 02:36:16 PM |
|
./craved & [2] 29601 [1] Exit 127 ./craved root@vultr:~# ./craved: symbol lookup error: ./craved: undefined symbol: secp256k1_start Help someone what I'm doing wrong? Why do I get this message on the server? sudo apt-get install build-essential libtool autotools-dev autoconf pkg-config libssl-dev libboost-all-dev automake libdb++-dev libssl-dev git sudo aptitude install libminiupnpc-dev git clone https://github.com/bitcoin/secp256k1 cd secp256k1 ./autogen.sh ./configure make sudo make install cd .. ldconfig wget http://104.207.135.209/craved chmod 777 craved STOP! Don't do that!!Just for the sake of completeness, there are two things you should definitely avoid (for that reason, it's generally a bad idea to just copypaste code from some random web board and use it without knowing what it actually does): - Never mix apt-get and aptitude/synaptic/… (or, generally, don't mix the use of different package managers). The reason is simple: each has its own dependency management system, and each does it differently. You can easily end up with a broken system that way, because one package manager might not know what another one did to resolve dependencies.
Instead, use "sudo apt-get install libminiupnpc-dev" for the second installation command. - chmod 777 for a daemon software, especially on a server (!!!) is totally unnecessary and - in case of dubious software - definitely dangerous. Instead, go for "chmod u+rwo craved", which ensures that your user can read, write and execute the daemon, or, yet better, "chmod 744 craved". This way, you give the user (first number) read, write, execute (read = 4, write = 2, execute = 1) rights, as 4+2+1=7, and the group (second number) plus others (third number, which you definitely don't want to have having read, write and execute rights because this means that literally anyone can read, write and execute this file!) only read access (4).
If that does not work because your group is required to execute it, try 774, but definitely not 777.
Posts like the quoted ones are the reason for all those insecure machines on the web which pose a big danger to their "administrators" and the general public, because they help sending annoying spam mails when they got hacked, again. But on the other hand, they give me and the company I'm working for a job. this is for COLD wallets, and the reason to choose aptitude is to work around because that dep is not available. chmod 777 for a daemon is also not a big deal (COLD WALLET) , also 99% of nodes are on empty VPS's that have nothing important. Thanks for info tho.
|
◥◣◥◣◥◣ ☠ CRAVE ☠ Embraces the privacy movement ☠ ◥◣◥◣◥◣◥◣◥◣◥◣ Your Market. Your Blockchain Business. Your Profit. ◥◣◥◣◥◣
|
|
|
abel1337
Legendary
Offline
Activity: 2492
Merit: 1145
Enterapp Pre-Sale Live - bit.ly/3UrMCWI
|
|
April 13, 2015, 02:41:13 PM |
|
Wait for it... Wait for it... wait... and it was about that time that..
|
|
|
|
goblynn
|
|
April 13, 2015, 02:42:31 PM |
|
check out crave sig!!
|
|
|
|
Blazin8888
|
|
April 13, 2015, 02:45:53 PM |
|
This thing is gonna blow up so hard. Wish I could see the look on all the trolls faces when that happens. Too bad many people will miss this boat because of skepticism....that's just the way of the world chico
|
|
|
|
|