Author

Topic: [ANN][DASH] Dash (dash.org) | First Self-Funding Self-Governing Crypto Currency - page 1906. (Read 9723748 times)

sr. member
Activity: 409
Merit: 250
Edit2: now that everything is in its place and I try to run the ./update_dashd.sh it tells me in red:

/home/username/.dash/dash-cli not found! Exiting.

 Huh Huh

but I have dash-cli in that dash folder so im not shure whats up

getting scripts to work with everbody's different filesystem layout is challenging.

meet me in irc and we'll see if we can't figure this out.

https://webchat.freenode.net/?channels=dashpay

Personally, I keep everything self-contained in one folder.  Easier to keep track of things.

My .dash layout looks like this (same as the script creates):

Code:
lrwxrwxrwx 1 ubuntu ubuntu      18 Aug 25 17:36 dash-cli -> dash-cli-0.12.0.49
-rwxr-xr-x 1 ubuntu ubuntu 2548784 Aug 25 17:36 dash-cli-0.12.0.49
lrwxrwxrwx 1 ubuntu ubuntu      15 Aug 25 17:36 dashd -> dashd-0.12.0.49
-rwxr-xr-x 1 ubuntu ubuntu 9423200 Aug 25 17:36 dashd-0.12.0.49

Each binary is renamed by it's version, then I symlink dashd and dash-cli for consistency.
This way I always know what version I have on what machine just by looking.

Then I simply add ~/.dash to my PATH environment variable.



Thanks for your quick response, It was a easy fix, I just had to use my brain a tiny bit. Im loving your script thanks for this awesome tool  Smiley
sr. member
Activity: 263
Merit: 250
bovine quadruped, professional loafer, dash dev
I've had it in /usr/bin and usr/local/bin because keeping it there allows me to simply type dashd or dash-cli instead of ./ before it.  Also one of my servers is running two masternodes, and that way I only have to update once, because both users access the program from the same spot (but run independently)  This does require root or sudo privileges to move the programs to that location.

I don't recommend moving userland binaries into system paths simply due to maintenance.
User 'ubuntu' (creative, I know) runs them, so I keep them within that users directory space.

Rux, use symlinks if you want to 'see' your binaries in your homedir. It's just not a typical layout.
Usually people create a ~/bin folder and add that to their path.

The whole point of symlinks is to not end up with multiple copies of things.
(and to save drive space)

But, everybodys requirements are different.  My masternodes are stricly single-user (me) systems.
hero member
Activity: 671
Merit: 500
*********** v12.0.49 *************

- This fixes a couple other issues dealing with masternodes staying online/getting kicked off and syncing

https://www.dashpay.io/downloads/


Bump!
sr. member
Activity: 409
Merit: 250
Edit2: now that everything is in its place and I try to run the ./update_dashd.sh it tells me in red:

/home/username/.dash/dash-cli not found! Exiting.

 Huh Huh

but I have dash-cli in that dash folder so im not shure whats up

Do you have a directory named "/home/username" with ".dash" in it?

Its because moocowmoo's dash-cli and dashd are located in .dash (hidden) folder!

And i like it to see on root folder of user

what i did, edited code where shows .dash, just leave .

after that it worked for me Smiley

DASH_HOME="$HOME/."
DASH_CLI="$DASH_HOME/dash-cli"
DOWNLOAD_PAGE='https://www.dashpay.io/downloads/'


Thanks worked now, but instead of the "." I put in "dash" Smiley

Edit: So Just to share what worked for me:
DASH_HOME="$HOME/dash"
DASH_CLI="$DASH_HOME/dash-cli"
DOWNLOAD_PAGE='https://www.dashpay.io/downloads/'
legendary
Activity: 1120
Merit: 1000
Quote
8/5 - Turn off enforcement / network upgrade
8/7-12 - Turn on enforcement
8/24 - Hard fork to allow for super blocks
9/6 - The very first budget block will be 332320, so that's quite a ways off (about 36 days from today)

https://dashtalk.org/threads/v12-testing-thread.5484/page-105#post-61537

Can we get an update on this? How does the "hard fork" indicated in Step 2 differ from the typical "spork" that we are used to? Hopefully it's not going to be a "cross your fingers and pray" thing like RC3's (several) attempted forks? Has it already happened, or was this date pushed back when the release was pushed back? Is the first budget block still planned for 9/6?

Thanks for any information!

legendary
Activity: 1260
Merit: 1001
I've built an update script for 32/64bit linux masternode owners.
It pulls and installs directly from dashpay.io distributed tarballs.
I may support compiling at some point.

First version, but it seems reasonably well behaved.
Let me know if you run into any bugs and I'll push fixes.



https://github.com/moocowmoo/dashman

I'll add more utilities over time, this is just a starting point.



"auto update script" (MooMoo Style)
https://dashpay.atlassian.net/wiki/pages/viewpage.action?pageId=9568325

Hi I installed this pack into my dash folder and the dashman folder is not there or the update_dashd.sh .. what am i doing wrong ?

Edit: sorry did not paste the whole command thats why
"sudo apt-get install git
git clone https://github.com/moocowmoo/dashman.git"

Edit2: now that everything is in its place and I try to run the ./update_dashd.sh it tells me in red:

/home/username/.dash/dash-cli not found! Exiting.

 Huh Huh

but I have dash-cli in that dash folder so im not shure whats up

I don't know the script but your dash-cli should reside with your dashd program, wherever you keep that.  I've had it in /usr/bin and usr/local/bin because keeping it there allows me to simply type dashd or dash-cli instead of ./ before it.  Also one of my servers is running two masternodes, and that way I only have to update once, because both users access the program from the same spot (but run independently)  This does require root or sudo privileges to move the programs to that location.
sr. member
Activity: 263
Merit: 250
bovine quadruped, professional loafer, dash dev
Edit2: now that everything is in its place and I try to run the ./update_dashd.sh it tells me in red:

/home/username/.dash/dash-cli not found! Exiting.

 Huh Huh

but I have dash-cli in that dash folder so im not shure whats up

getting scripts to work with everbody's different filesystem layout is challenging.

meet me in irc and we'll see if we can't figure this out.

https://webchat.freenode.net/?channels=dashpay

Personally, I keep everything self-contained in one folder.  Easier to keep track of things.

My .dash layout looks like this (same as the script creates):

Code:
lrwxrwxrwx 1 ubuntu ubuntu      18 Aug 25 17:36 dash-cli -> dash-cli-0.12.0.49
-rwxr-xr-x 1 ubuntu ubuntu 2548784 Aug 25 17:36 dash-cli-0.12.0.49
lrwxrwxrwx 1 ubuntu ubuntu      15 Aug 25 17:36 dashd -> dashd-0.12.0.49
-rwxr-xr-x 1 ubuntu ubuntu 9423200 Aug 25 17:36 dashd-0.12.0.49

Each binary is renamed by it's version, then I symlink dashd and dash-cli for consistency.
This way I always know what version I have on what machine just by looking.

Then I simply add ~/.dash to my PATH environment variable.

member
Activity: 112
Merit: 10

Now the header on the crash dialog reads "INPAG" and the text reads "runtime error 424".

I'm trying to run it on a Win 7 32bits. Same .bat
Generic miner works fine for you?

I try the minderd from this link:

https://mega.co.nz/#!w4U3wTpZ!cLIFqbqljRqnnzogM6KIFUPWd0UfYTfrSZnhKPBWAjY

Is there other miner?
sr. member
Activity: 378
Merit: 250

Now the header on the crash dialog reads "INPAG" and the text reads "runtime error 424".

I'm trying to run it on a Win 7 32bits. Same .bat
Generic miner works fine for you?
member
Activity: 112
Merit: 10
What can I do if everytime I try to run miner it stop responding and closes?
I make sure that I use the corresponding miner for my CPU.
Thanks.
you should give more info, what os, what cpu, what miner ?   atleast
Sorry, my mistake.
Info:
OS: Windows 8
CPU: Intel Core i5-2410M - 2.30GHz
Miner: DarkCoin cpu-miner - minerd-corei7-avx.exe (v1.3)
Hope it helps.
You still haven't given us the .bat or confi settings.
Btw, put a 'pause' at end of .bat file and you stay on the window.

My .bat file:

Code:
minerd-corei7-avx.exe -a X11 -o stratum+tcp://us-east.multipool.us:3371 -u XXX.X -p X -t 1

When I start the .bat file it stop work and gives me an alert window to close the program.

This is the error window (in portuguese):


maybe because your miner is i7 and your cpu is i5 ?

i once mining with avx miner, but my cpu dont have avx function. it also err

On the README file it says to use this miner, look:

corei7-avx:
 - Optimizes for 2nd generation Intel® Core™ i7, i5 and i3 processor families and the Intel® Xeon® Processor E5 and E3 families.

then you should try the non-avx miner version.

more info
http://en.wiki.dashninja.pl/wiki/Mining_Dash

Now the header on the crash dialog reads "INPAG" and the text reads "runtime error 424".

I'm trying to run it on a Win 7 32bits. Same .bat
Rux
legendary
Activity: 1291
Merit: 1024
https://crypto.ba
Edit2: now that everything is in its place and I try to run the ./update_dashd.sh it tells me in red:

/home/username/.dash/dash-cli not found! Exiting.

 Huh Huh

but I have dash-cli in that dash folder so im not shure whats up

Do you have a directory named "/home/username" with ".dash" in it?

Its because moocowmoo's dash-cli and dashd are located in .dash (hidden) folder!

And i like it to see on root folder of user

what i did, edited code where shows .dash, just leave .

after that it worked for me Smiley

DASH_HOME="$HOME/."
DASH_CLI="$DASH_HOME/dash-cli"
DOWNLOAD_PAGE='https://www.dashpay.io/downloads/'
hero member
Activity: 671
Merit: 500
Edit2: now that everything is in its place and I try to run the ./update_dashd.sh it tells me in red:

/home/username/.dash/dash-cli not found! Exiting.

 Huh Huh

but I have dash-cli in that dash folder so im not shure whats up

Do you have a directory named "/home/username" with ".dash" in it?
sr. member
Activity: 406
Merit: 250
- Dash is PoW, so a 51-attack is very likely
- Other coins will come up with the same anonymous features

I feel obligated to reply to this nonsense.

1) The current alternative to PoW is PoS, which is vulnerable to double-spend attacks with much less than 51% (even less than 5%)
*If you are implying that PoS is more secure than PoW, you are highly mistaken (by an order of magnitude).

2) If other coins copy Dash features, that means Dash is the innovator, the leader...
*Why invest in some copycat p-n-d clone-coin instead of the coin who is doing all the research and development?
sr. member
Activity: 409
Merit: 250
I've built an update script for 32/64bit linux masternode owners.
It pulls and installs directly from dashpay.io distributed tarballs.
I may support compiling at some point.

First version, but it seems reasonably well behaved.
Let me know if you run into any bugs and I'll push fixes.



https://github.com/moocowmoo/dashman

I'll add more utilities over time, this is just a starting point.



"auto update script" (MooMoo Style)
https://dashpay.atlassian.net/wiki/pages/viewpage.action?pageId=9568325

Hi I installed this pack into my dash folder and the dashman folder is not there or the update_dashd.sh .. what am i doing wrong ?

Edit: sorry did not paste the whole command thats why
"sudo apt-get install git
git clone https://github.com/moocowmoo/dashman.git"

Edit2: now that everything is in its place and I try to run the ./update_dashd.sh it tells me in red:

/home/username/.dash/dash-cli not found! Exiting.

 Huh Huh

but I have dash-cli in that dash folder so im not shure whats up
legendary
Activity: 1372
Merit: 1005
DASH is the future of crypto payments!
btw. the service nodes and shares ones will be updated to v48 tomorrow in the afternoon, no need to local start if your nodes are active.
update for the above post.....

All Nodes, shared and serviced are updated to v49 Wink - hope this one will not freeze, crush etc - so far so good....
/back from vacations and ready for action...
member
Activity: 112
Merit: 10
What can I do if everytime I try to run miner it stop responding and closes?
I make sure that I use the corresponding miner for my CPU.
Thanks.
you should give more info, what os, what cpu, what miner ?   atleast
Sorry, my mistake.
Info:
OS: Windows 8
CPU: Intel Core i5-2410M - 2.30GHz
Miner: DarkCoin cpu-miner - minerd-corei7-avx.exe (v1.3)
Hope it helps.
You still haven't given us the .bat or confi settings.
Btw, put a 'pause' at end of .bat file and you stay on the window.

My .bat file:

Code:
minerd-corei7-avx.exe -a X11 -o stratum+tcp://us-east.multipool.us:3371 -u XXX.X -p X -t 1

When I start the .bat file it stop work and gives me an alert window to close the program.

This is the error window (in portuguese):


maybe because your miner is i7 and your cpu is i5 ?

i once mining with avx miner, but my cpu dont have avx function. it also err

On the README file it says to use this miner, look:

corei7-avx:
 - Optimizes for 2nd generation Intel® Core™ i7, i5 and i3 processor families and the Intel® Xeon® Processor E5 and E3 families.

then you should try the non-avx miner version.

more info
http://en.wiki.dashninja.pl/wiki/Mining_Dash

I downloaded the 1.2 version and it seems that work now Smiley
legendary
Activity: 1456
Merit: 1000
What can I do if everytime I try to run miner it stop responding and closes?
I make sure that I use the corresponding miner for my CPU.
Thanks.
you should give more info, what os, what cpu, what miner ?   atleast
Sorry, my mistake.
Info:
OS: Windows 8
CPU: Intel Core i5-2410M - 2.30GHz
Miner: DarkCoin cpu-miner - minerd-corei7-avx.exe (v1.3)
Hope it helps.
You still haven't given us the .bat or confi settings.
Btw, put a 'pause' at end of .bat file and you stay on the window.

My .bat file:

Code:
minerd-corei7-avx.exe -a X11 -o stratum+tcp://us-east.multipool.us:3371 -u XXX.X -p X -t 1

When I start the .bat file it stop work and gives me an alert window to close the program.

This is the error window (in portuguese):


maybe because your miner is i7 and your cpu is i5 ?

i once mining with avx miner, but my cpu dont have avx function. it also err

On the README file it says to use this miner, look:

corei7-avx:
 - Optimizes for 2nd generation Intel® Core™ i7, i5 and i3 processor families and the Intel® Xeon® Processor E5 and E3 families.

then you should try the non-avx miner version.

more info
http://en.wiki.dashninja.pl/wiki/Mining_Dash
member
Activity: 112
Merit: 10
What can I do if everytime I try to run miner it stop responding and closes?
I make sure that I use the corresponding miner for my CPU.
Thanks.
you should give more info, what os, what cpu, what miner ?   atleast
Sorry, my mistake.
Info:
OS: Windows 8
CPU: Intel Core i5-2410M - 2.30GHz
Miner: DarkCoin cpu-miner - minerd-corei7-avx.exe (v1.3)
Hope it helps.
You still haven't given us the .bat or confi settings.
Btw, put a 'pause' at end of .bat file and you stay on the window.

My .bat file:

Code:
minerd-corei7-avx.exe -a X11 -o stratum+tcp://us-east.multipool.us:3371 -u XXX.X -p X -t 1

When I start the .bat file it stop work and gives me an alert window to close the program.

This is the error window (in portuguese):


maybe because your miner is i7 and your cpu is i5 ?

i once mining with avx miner, but my cpu dont have avx function. it also err

On the README file it says to use this miner, look:

corei7-avx:
 - Optimizes for 2nd generation Intel® Core™ i7, i5 and i3 processor families and the Intel® Xeon® Processor E5 and E3 families.
legendary
Activity: 1456
Merit: 1000
What can I do if everytime I try to run miner it stop responding and closes?
I make sure that I use the corresponding miner for my CPU.
Thanks.
you should give more info, what os, what cpu, what miner ?   atleast
Sorry, my mistake.
Info:
OS: Windows 8
CPU: Intel Core i5-2410M - 2.30GHz
Miner: DarkCoin cpu-miner - minerd-corei7-avx.exe (v1.3)
Hope it helps.
You still haven't given us the .bat or confi settings.
Btw, put a 'pause' at end of .bat file and you stay on the window.

My .bat file:

Code:
minerd-corei7-avx.exe -a X11 -o stratum+tcp://us-east.multipool.us:3371 -u XXX.X -p X -t 1

When I start the .bat file it stop work and gives me an alert window to close the program.

This is the error window (in portuguese):


maybe because your miner is i7 and your cpu is i5 ?

i once mining with avx miner, but my cpu dont have avx function. it also err
member
Activity: 112
Merit: 10
What can I do if everytime I try to run miner it stop responding and closes?
I make sure that I use the corresponding miner for my CPU.
Thanks.
you should give more info, what os, what cpu, what miner ?   atleast
Sorry, my mistake.
Info:
OS: Windows 8
CPU: Intel Core i5-2410M - 2.30GHz
Miner: DarkCoin cpu-miner - minerd-corei7-avx.exe (v1.3)
Hope it helps.
You still haven't given us the .bat or confi settings.
Btw, put a 'pause' at end of .bat file and you stay on the window.

My .bat file:

Code:
minerd-corei7-avx.exe -a X11 -o stratum+tcp://us-east.multipool.us:3371 -u XXX.X -p X -t 1

When I start the .bat file it stop work and gives me an alert window to close the program.

This is the error window (in portuguese):
Jump to: