Idk, tried extracting it somewhere else? I know it overwrites the directory so maybe there's something in there with permissions changed but never had any issue before here :/
yes i tried. same outcome.
i usually just switch dashd and dash-cli, but that shouldnt cause an issue, right?
Not as far as I know, I used to do the same but usually just extract it and let it overwrite the existing folder since about when v12 came in. Tried moo on dashtalk? Think he's on at the mo.
no, not yet. its late and i will have to try further tomorrow. let me know if you had any issues.
what udjinm6 said.
First, check your binaries:
$ ./dashd --version
Dash Core Daemon version v0.12.0.55-c30a0aa
Copyright (C) 2009-2015 The Bitcoin Core Developers
Copyright (C) 2014-2015 The Dash Core Developers
This is experimental software.
Distributed under the MIT software license, see the accompanying file COPYING
or .
This product includes software developed by the OpenSSL Project for use in the
OpenSSL Toolkit and cryptographic software written
by Eric Young and UPnP software written by Thomas Bernard.
$ ./dash-cli --version
Dash Core RPC client version v0.12.0.55-c30a0aa
Next, scan your harddrive for any lingering old versions:
(you could combine these, but is easier to follow if you do one at a time)
scan for all the dash-cli's
(first line will be the path to the executable
next line will be that executable's version)
$ find / -name dash-cli -print -exec {} --version \; 2>/dev/null
/home/ubuntu/.dash/dash-cli
Dash Core RPC client version v0.12.0.55-c30a0aa
scan for all the dashd's
$ find / -name dashd -print -exec {} --version \; 2>/dev/null
/home/ubuntu/.dash/dashd
Dash Core Daemon version v0.12.0.55-c30a0aa
Copyright (C) 2009-2015 The Bitcoin Core Developers
Copyright (C) 2014-2015 The Dash Core Developers
This is experimental software.
Distributed under the MIT software license, see the accompanying file COPYING
or .
This product includes software developed by the OpenSSL Project for use in the
OpenSSL Toolkit and cryptographic software written
by Eric Young and UPnP software written by Thomas Bernard.
(remove any old versions you find)
Third, stop/kill the running process that is the old version (now that you've made sure that all the old versions are no longer on disk.)
$ dash-cli stop ; sleep 10 ; killall -9 dashd dash-shutoff
Finally, start up your newest version.
$ ./dashd
shameless plug:
I highly recommend using my utility
dashman, it'll save you lots of time and headaches.
Just put your dashd and dash-cli in your .dash folder then do:
$ git clone https://github.com/moocowmoo/dashman.git
$ cd dashman
$ ./dashman update
(you only have to do the clone once)
Then you'll see something like this: (old screencap, but you get the point)
Once you've placed dashd and dash-cli in ~/.dash, run this command
once to allow you to type 'dash-cli' from any folder:
echo 'export PATH=~/.dash:$PATH' >> ~/.bashrc
(logout/login for the above to take effect)
HTH!