Author

Topic: [ANN][PIVX] - PRIVATE INSTANT VERIFIED TRANSACTION - PROOF OF STAKE - ZEROCOIN - page 395. (Read 782375 times)

legendary
Activity: 1078
Merit: 1011
Can't get it to work on linux distro ..
Can we get some more information as to what you can't get working? what distro, Wallet or Daemon??

Tried this from the op

If you are running Debian/Ubuntu/Mint etc. You can install the binaries/Daemons using Apt as well;

sudo apt-add-repository ppa:shaun-mcbride/darknet
sudo apt-get update
sudo apt-get install darknet-qt
sudo apt-get install darknet-cli
sudo apt-get install darknetd
sudo apt-get install darknet-tx

Running Ubuntu 16.04 LTS

"can't locate darknet-cli" is where the first error message came in.. I take it there is more than the above mentioned 6 steps?
I want to just mine enough to set up a masternode .. thats about it

PM: Just switched OS from windows 10 to Ubuntu ~ so i'm not exactly what you would call veteran in this

Ok, so earlier I was chatting with our guy who runs the Launchpad stuff, the darknet-cli/darknet-tx daemon files is not yet available, so for the time being, that means is only good for the Qt wallet. if you want to use the daemon files for a master node. you have 2 choices, you can compile them yourself (if you are using 16.04) or you can download the precompiled binaries I provided in the OP that were compiled for 14.04. The launchpad should be fixed up shortly, I apologize for the hassles there. if you want to compile them, if you look back a few pages, someone posted the instructions for compiling the linux binaries. Honestly, you don't really even need the darknet-tx daemon file.
legendary
Activity: 1078
Merit: 1011
Can't get it to work on linux distro ..
Can we get some more information as to what you can't get working? what distro, Wallet or Daemon??
legendary
Activity: 1078
Merit: 1011
Wow.. You don't like my OP heh.. Tongue

Haha. I accidently deleted my conf files and need to copy the node list from the OP.
I couldn't copy as it's not in text format. So it was a pain typing them up myself. Tongue

You don't need but the first 3 addnodes on that list, they are run by us.
legendary
Activity: 1638
Merit: 1011
jakiman is back!
Wow.. You don't like my OP heh.. Tongue

Haha. I accidently deleted my conf files and need to copy the node list from the OP.
I couldn't copy as it's not in text format. So it was a pain typing them up myself. Tongue
legendary
Activity: 1078
Merit: 1011
Bittrex is updating their wallet right now, just went into Maintenance mode. should only take a little while to update and resync
legendary
Activity: 1078
Merit: 1011
Can we have a more simplified OP with less images and more text? e.g. Transfercoin's OP.
e.g. the node list, PoS breakdown, masternode instruction, proposal instructions ec.
I personally hate having so much text put into the image itself as it can't be copied as text and is harder to read.

Also, maybe the header images could be made smaller and more compact?
But yeah, this isn't as important as above. Smiley

e.g.

From this


To this (or even smaller maybe)


Wow.. You don't like my OP heh.. Tongue
full member
Activity: 165
Merit: 100
I just updated my masternodes...  given that this one is a bit more complicated because the the blockchain needs to be resynced and some database files need to be deleted I made some notes to speed up the process for myself, the someone here surely will find them helpful.

Read through everything before starting to copy paste... this works for me, your setup may differ.

Build the latest version ... I assume you already have an old version in git

Your configuration options or paths may differ.

Probably also a good time to
Code:
apt-get update
and
Code:
apt-get upgrade
and
Code:
reboot
so I haven't mentioned stopping your currently running masternode daemons.

Code:
$ cd git/Darknet/
$ ./autogen.sh
$ ./configure
$ make clean
$ make -j4
$ cd src/
$ tar zcvf ~/dnet.tar.gz darknet-tx darknet-cli darknetd

Copy the
Code:
dnet.tar.gz
to the machine(s) running your masternode(s) and unpack it over your current executables

Preparation... on a working node running the latest dnet (you need to at least delete some files in the .darknet dir ... and start a dnet nodes with the latest version) Stop the node before tarring!!

Code:
$ darknet-cli stop
$ tar zcvf  dnet_base70200.tar.gz .darknet/blocks/ .darknet/peers.dat .darknet/chainstate/ .darknet/budget.dat  .darknet/mncache.dat

copy this file  to each machine that has masternodes to be updated:

Updating a masternode:

Code:
$ cd .darknet
$ rm -r fee_estimates.dat mncache.dat mnpayments.dat budget.dat chainstate blocks peers.dat
$ cd ..
$ tar zxvf /tmp/dnet_base70200.tar.gz
$ darknetd
$ watch darknet-cli masternode status

When your masternode is waiting for activation run the following on the masternode controller...

Code:
$ darknet-cli  masternode start-alias abc123

Check that your masternode is
Code:
"status" : "Masternode successfully started"
and move on to the next one...

If you found this helpful and you are so inclined, a small gift to this address will go towards my next masternode or beer (in which case it will be traded to BTC which will be used to pay for beer.)

D8zVCiBSRehy2xR4tfaapjz75BYAyg2tAH
legendary
Activity: 1638
Merit: 1011
jakiman is back!
Can we have a more simplified OP with less images and more text? e.g. Transfercoin's OP.
e.g. the node list, PoS breakdown, masternode instruction, proposal instructions ec.
I personally hate having so much text put into the image itself as it can't be copied as text and is harder to read.

Also, maybe the header images could be made smaller and more compact?
But yeah, this isn't as important as above. Smiley

e.g.

From this


To this (or even smaller maybe)
legendary
Activity: 1078
Merit: 1011
Pretty nice looking project... How will the Bittrex trading in wallet work? when is it expected to come out? I just joined mining and setup one masternode and v2 worked fine with me ( following s3v3nh4cks tips )

We are looking at incorporating something like the inwallet trading that is presently in Transfercoin's wallet. Infernoman did a great job


Thank you i will have a look, when is expected to be released?

Honestly, it is on our Bounty page so other who are interested in getting involved can do some coding. Our next project we will be working on mainly is the Anon Transaction. so it may still be awhile before we get to it.
full member
Activity: 140
Merit: 100
Entrepreneur and blockchain enthusiast
Pretty nice looking project... How will the Bittrex trading in wallet work? when is it expected to come out? I just joined mining and setup one masternode and v2 worked fine with me ( following s3v3nh4cks tips )

We are looking at incorporating something like the inwallet trading that is presently in Transfercoin's wallet. Infernoman did a great job


Thank you i will have a look, when is expected to be released?
legendary
Activity: 1078
Merit: 1011
Pretty nice looking project... How will the Bittrex trading in wallet work? when is it expected to come out? I just joined mining and setup one masternode and v2 worked fine with me ( following s3v3nh4cks tips )

We are looking at incorporating something like the inwallet trading that is presently in Transfercoin's wallet. Infernoman did a great job
full member
Activity: 140
Merit: 100
Entrepreneur and blockchain enthusiast
Pretty nice looking project... How will the Bittrex trading in wallet work? when is it expected to come out? I just joined mining and setup one masternode and v2 worked fine with me ( following s3v3nh4cks tips )
legendary
Activity: 1078
Merit: 1011
OK, so I realize that every time we have this type of update/fork that people get stressed  as nothing seams to go smoothly. and we are at the roughest part right now.

Presently the network is fighting for contention from the old chain to the new chain, so everyone who hasn't yet updated needs to do so ASAP. we need to get to 85% ASAP. if you find that a transaction doesn't show up, as just happened with me, then you may need to resync your chain again. I know it sucks, but going from PoW to PoS requires this. It only takes about 30 minutes to resync, so not a big deal. you will still get you masternode rewards as long as you do one node at a time and they are back online within 45-60 minutes.
hero member
Activity: 728
Merit: 500

Thats the one I have been using.  I think I might have sorted it out.  How can I check the masternode is running away from the wallet?  Does it take a while to register?

maternode list-conf in debug window. will say enabled if it is.
sr. member
Activity: 448
Merit: 250

Thats the one I have been using.  I think I might have sorted it out.  How can I check the masternode is running away from the wallet?  Does it take a while to register?
sr. member
Activity: 448
Merit: 250
Just voted.  Smiley Waiting for MP Hosting to fire up my node so I can set it up.  Smiley

Doing the orders now

Thanks
Paul


ticket #990726 to plz Smiley

I am a bit stuck, is there a tutorial on setting up a node using your service?
legendary
Activity: 1778
Merit: 1003
NodeMasters
Just voted.  Smiley Waiting for MP Hosting to fire up my node so I can set it up.  Smiley

Doing the orders now

Thanks
Paul


ticket #990726 to plz Smiley
done
please use my support thread not this one

thanks
Paul
hero member
Activity: 728
Merit: 500
Just voted.  Smiley Waiting for MP Hosting to fire up my node so I can set it up.  Smiley

Doing the orders now

Thanks
Paul


ticket #990726 to plz Smiley
legendary
Activity: 1778
Merit: 1003
NodeMasters
Just voted.  Smiley Waiting for MP Hosting to fire up my node so I can set it up.  Smiley

Doing the orders now

Thanks
Paul
Jump to: