Author

Topic: [ANN] CRAVE 1st POS Masternodes | Dark Assets | I2P | Market =Embrace The Dark= - page 135. (Read 826733 times)

hero member
Activity: 546
Merit: 500
So now when i put in the command "make" i get the message "-bash: make: command not found". What am i doing wrong now?
sudo apt-get install make
?
That did help thanks, I have run into another problem but i will do some more research before posting in here again. Smiley
legendary
Activity: 938
Merit: 1000

or you can setup some copy folders and do infinite wallets. I have 11 running on one windows machine. 1 is normal, with normal data directory, the rest are masternodes with a custom directory I even renamed them all so i know which is acting up in task manager if any need reboots.


For those wondering,  its the same basic method on linux too.  (copy the folders and use -datadir=  )
legendary
Activity: 1610
Merit: 1008
Forget-about-it
So now when i put in the command "make" i get the message "-bash: make: command not found". What am i doing wrong now?
sudo apt-get install make
?
hero member
Activity: 546
Merit: 500
So now when i put in the command "make" i get the message "-bash: make: command not found". What am i doing wrong now?
legendary
Activity: 1610
Merit: 1008
Forget-about-it
edited to add logtimestamps=1 derrr****
but i must have another wallet in another pc, or it can be the same wallet were is the node, but i must create another address write?
and this coins will stake?
your masternode wallet is not set for staking so basically yes you will need another wallet/pc to be able to do that, other someone else has some other idea how to do it?

do you have your node running or are those the coins you want to stake? I could have sworn I saw people saying they had multiple wallets on one machine,

if you are using just 1 wallet 500 coins you can make that a masternode

or you can run 1 wallet however many coins and stake

or you can setup some copy folders and do infinite wallets. I have 11 running on one windows machine. 1 is normal, with normal data directory, the rest are masternodes with a custom directory I even renamed them all so i know which is acting up in task manager if any need reboots.

heres how:
A GUIDE TO MULTIPLE NODES ON ONE *Windows* COMPUTER  Shocked

create and open a new folder anywhere
make a copy of crave-qt.exe into new folder
create another new folder inside and name it "data"
create a new text document and type
crave-qt -datadir=data
save as or rename to "crave launch.bat"
make sure the extension changes from .txt to .bat
open start menu and type %appdata% into search it will open up a folder
find crave folder
copy (do not cut&paste) contents of this folder into the new folder you named "data"
**make backup of primary wallet if you wish
delete from the new data folder the wallet.dat
open your copied crave.conf or create a new one to include these fields:
Quote
maxconnections=25
rpcuser=solo1
rpcpassword=user1
rpcport=9988
rpcallowip=127.0.0.1
gen=0
server=1
daemon=1
listen=1
staking=0
reservebalance=9999999
port=9998
logtimestamps=1
#masternodeaddr=YOUR_IP:9998
#masternode=1
#masternodeprivkey=KEY GENERATED BY COMMAND
save this in the new data directory as crave.conf *do input your external ip address and change user/password
now launch this 2nd wallet by clicking launchcrave.bat
go to the debug > console type "masternode genkey" and copy/paste results to "KEY GENERATED BY COMMAND" in the crave.conf
remove the hashtag pound symbols # from the last 3 lines of crave.conf and save
also type in debug > console "getaccountaddress 0" and note the address
exit debug > console in the wallet and now is a good time to encrypt the wallet.
meanwhile from your main running wallet send exactly 500 coins from 1 input to the address that comes up from the "getaccountaddress 0" command
restart the masternode wallet and wait until those coins have 15 confirms. (20-25 minutes)
in the debug > console type "masternode start "


if you want another master node, copy these steps or just copy the folder you created as its basically self contained and change the crave.conf ports down by 1, rpcport = 9987, port = 9997, masternodeip = ip:9997. you'll need to create a new wallet.dat (just delete the one that comes over in the copy *keep backups) and need to get a new masternode genkey & getaccountaddress 0 then send 500 wait 15 and start it up

Tips:
on copied folders i # the last 3 lines about the masternode before running then edit the info as i create the key.
you can rename crave-qt.exe to crave-qt1.exe, crave-qt2.exe, etc so you know which ones missing if you restart. just change the "crave launch.bat" text to say "crave-qt1 -datadir=data" or "crave2-qt -datadir=data" etc as needed.

you may pm me with questions.

feel free to join the slack group https://cravecoin-slack.herokuapp.com/ use a dummy email if you have a tin hat.

I am not responsible for any lost coins, this procedure worked well for me on a standard windows 7 pc, depending on your skill it may have mixed results. if you are not confident team members have created a service to set these up remotely for users for a small fee.

extra tips: send them to industrialcoinmagic
Quote
Developer Donation Address:
CRAVE:  C2RCch4SvRfg4ZiiYkiEfNetXgyrLjeR68
legendary
Activity: 3038
Merit: 1166
Leading Crypto Sports Betting & Casino Platform
legendary
Activity: 938
Merit: 1000
There, I fixed the instructions.

Code:
#Get dependencies
sudo apt-get install git
sudo apt-get install automake autoconf
sudo apt-get install qt5-default qt5-qmake qtbase5-dev-tools qttools5-dev-tools \
    build-essential libboost-dev libboost-system-dev \
    libboost-filesystem-dev libboost-program-options-dev libboost-thread-dev \
    libssl-dev libdb++-dev libminiupnpc-dev
#First compile libsecp256k1
cd ~
git clone https://github.com/bitcoin/secp256k1
cd secp256k1
git reset a0d3b8
git add .
git reset --hard
./autogen.sh
./configure
make
sudo make install
cd ..
sudo ldconfig

#Next compile crave-qt
git clone https://github.com/industrialcoinmagic/crave.git

cd ~/crave
mkdir src/obj/crypto

qmake "USE_UPNP=-"
make

One last note:
If you get an error like .. make: *** [obj/crypto/hmac_sha256.o] Error 1
make sure you did this step:
mkdir src/obj/crypto

Then re-compile,  should work!



hero member
Activity: 546
Merit: 500
Many issues it seems with this Coin
so helpful you are
This is not an issue with the coin, it is more of an issue with me not being very skilled in Linux lol. Thank you to the people that are being helpful, I will try what has just been suggested. Smiley
legendary
Activity: 1610
Merit: 1008
Forget-about-it
member
Activity: 81
Merit: 10
It would be great if a compiled version of the Linux wallet could be uploaded. Not everyone has the ability to compile a binary from source code, myself included lol. Smiley
Its basically just a couple commands for debian based...

Code:
#First compile libsecp256k1
sudo apt-get install git
cd ~
git clone https://github.com/bitcoin/secp256k1
cd secp256k1
git reset a0d3b8
git add .
git reset --hard
./autogen.sh
./configure
make
sudo make install
cd ..
sudo ldconfig

#Next compile crave-qt
git clone https://github.com/industrialcoinmagic/crave.git

sudo apt-get install qt5-default qt5-qmake qtbase5-dev-tools qttools5-dev-tools \
    build-essential libboost-dev libboost-system-dev \
    libboost-filesystem-dev libboost-program-options-dev libboost-thread-dev \
    libssl-dev libdb++-dev libminiupnpc-dev

cd ~/crave

qmake "USE_UPNP=-"
make
I will try it again with these codes, thanks.
One last note:
If you get an error like .. make: *** [obj/crypto/hmac_sha256.o] Error 1
Then do this:
mkdir obj/crypto

Then re-compile,  should work!
I get the message "./autogen.sh: 3: ./autogen.sh: autoreconf: not found". after the "./autogen.sh" command.



Many issues it seems with this Coin
this is not the coin you need autotool.
try sudo apt-get install autoconf
hero member
Activity: 672
Merit: 500
It would be great if a compiled version of the Linux wallet could be uploaded. Not everyone has the ability to compile a binary from source code, myself included lol. Smiley
Its basically just a couple commands for debian based...

Code:
#First compile libsecp256k1
sudo apt-get install git
cd ~
git clone https://github.com/bitcoin/secp256k1
cd secp256k1
git reset a0d3b8
git add .
git reset --hard
./autogen.sh
./configure
make
sudo make install
cd ..
sudo ldconfig

#Next compile crave-qt
git clone https://github.com/industrialcoinmagic/crave.git

sudo apt-get install qt5-default qt5-qmake qtbase5-dev-tools qttools5-dev-tools \
    build-essential libboost-dev libboost-system-dev \
    libboost-filesystem-dev libboost-program-options-dev libboost-thread-dev \
    libssl-dev libdb++-dev libminiupnpc-dev

cd ~/crave

qmake "USE_UPNP=-"
make
I will try it again with these codes, thanks.
One last note:
If you get an error like .. make: *** [obj/crypto/hmac_sha256.o] Error 1
Then do this:
mkdir obj/crypto

Then re-compile,  should work!
I get the message "./autogen.sh: 3: ./autogen.sh: autoreconf: not found". after the "./autogen.sh" command.



Many issues it seems with this Coin
hero member
Activity: 546
Merit: 500
It would be great if a compiled version of the Linux wallet could be uploaded. Not everyone has the ability to compile a binary from source code, myself included lol. Smiley
Its basically just a couple commands for debian based...

Code:
#First compile libsecp256k1
sudo apt-get install git
cd ~
git clone https://github.com/bitcoin/secp256k1
cd secp256k1
git reset a0d3b8
git add .
git reset --hard
./autogen.sh
./configure
make
sudo make install
cd ..
sudo ldconfig

#Next compile crave-qt
git clone https://github.com/industrialcoinmagic/crave.git

sudo apt-get install qt5-default qt5-qmake qtbase5-dev-tools qttools5-dev-tools \
    build-essential libboost-dev libboost-system-dev \
    libboost-filesystem-dev libboost-program-options-dev libboost-thread-dev \
    libssl-dev libdb++-dev libminiupnpc-dev

cd ~/crave

qmake "USE_UPNP=-"
make
I will try it again with these codes, thanks.
One last note:
If you get an error like .. make: *** [obj/crypto/hmac_sha256.o] Error 1
Then do this:
mkdir obj/crypto

Then re-compile,  should work!
I get the message "./autogen.sh: 3: ./autogen.sh: autoreconf: not found". after the "./autogen.sh" command.
hero member
Activity: 715
Merit: 500
 Yes, next update Surge Protector multi-sig escrow management will be a significant event!
legendary
Activity: 1190
Merit: 1000
Kaspa
lol I only found 3 blocks all day yesterday... Ha but 4 already today  Cool

most of the coins seem to be in stronger hands now... slow and steady

don't forget to tweet once and a while or mention crave in troll boxes... while people are losing money on new crap coins and ICO's they should have been buying crave,  with all ICM has delivered already his next upgrade should get people looking at it twice  Shocked
hero member
Activity: 715
Merit: 500
vol still falling, what do you think?
the main thing that the price is kept at the same level. The volume can be large and the price to fall
legendary
Activity: 938
Merit: 1000
vol still falling, what do you think?

Pump and dump trolls are gone,  and people are mainly waiting to see what comes next in this project

full member
Activity: 171
Merit: 100
vol still falling, what do you think?
member
Activity: 79
Merit: 10
ok thanks I have writte to him  Smiley
sr. member
Activity: 364
Merit: 250
but i must have another wallet in another pc, or it can be the same wallet were is the node, but i must create another address write?
and this coins will stake?
your masternode wallet is not set for staking so basically yes you will need another wallet/pc to be able to do that, other someone else has some other idea how to do it?

do you have your node running or are those the coins you want to stake? I could have sworn I saw people saying they had multiple wallets on one machine,

I have 4 wallets running on 1 VPS, so its possible. Don't ask me how though, Sologap set it up for me. Shoot him a PM!
member
Activity: 79
Merit: 10
i have my node running, and i buy more crave, and i want to stake the news coins
Jump to: