Author

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

sr. member
Activity: 327
Merit: 250
Something going on with drk.mn? Two of my MN are constantly dissapearing and reappearing again.. I noticed the active duration doesn't have a value as well.



It's showing all the correct info for mine.
full member
Activity: 238
Merit: 100
nice dog ties

http://CryptoPet.com is now accepting DarkCoin as a payment option Smiley

Welcome DarkCoin community Smiley





Thanks we are glad you like it Smiley
legendary
Activity: 1734
Merit: 1015
Welcome our newest team member, Mario Müller (Aswan)

https://darkcointalk.org/threads/welcome-mario-mueller-to-the-team.3795/



welcome  Kiss


Welcome Aswan, and super congratulations, Rux!

Welcome! Aswan Smiley


Welcome Aswan!

Great news! The way this is going can you imagine the progress of Darkcoin one year from now?

Team expanding, Foundation, Ambassador Group...

Grin

Thank you all so much. Such a warm welcome Smiley

dat german name

Well Done Mario ! , yr not from Germany are you ?, if so were neighbours , good luck !


Yep, I am German Smiley




hello Aswan Cheesy glad to have you here!

as for me, you can call me MN Operator from today Cheesy

Thanks and congratulations to your MN.
One day I'll get a main net Masternode running as well.. I hope.
full member
Activity: 229
Merit: 100
CakeBet Bitcoin Casino
nice dog ties

http://CryptoPet.com is now accepting DarkCoin as a payment option Smiley

Welcome DarkCoin community Smiley


full member
Activity: 238
Merit: 100
http://CryptoPet.com is now accepting DarkCoin as a payment option Smiley

Welcome DarkCoin community Smiley

legendary
Activity: 3066
Merit: 1188

Darkcoin developer team expanded rapidly recently. I am curious how Evan finds all the money to pay these amazing folks

+1

we are all doing that on a voluntary basis.

Even more impressive. I run a masternode (well, it runs itself) and I get paid. You develop and you don't ?

I hope it becomes possible eventually to remunerate developers in some way.
legendary
Activity: 1092
Merit: 1001
How exactly can I run these commands in one line?

masternode update script: https://darkcointalk.org/threads/masternode-update-script.1640/

save the code inside a file called "update.sh"

use superputty for updating multiple masternode simultaneous

Remember to run chmod +x update.sh to make the updater executable.
You'll be able then to launch it through sh update.sh.
sr. member
Activity: 1593
Merit: 284
hero member
Activity: 768
Merit: 1000
@eahmadov "sig" I think is short for "signature"...... in case you were getting unduly excited.
hero member
Activity: 518
Merit: 505
Darkcoin developer team expanded rapidly recently. I am curious how Evan finds all the money to pay these amazing folks. Or are they working on voluntary basis? Alternative scenario is that Evan has a VC in his pocket  Wink

I wish I get paid! lol. Yes we are all doing that on a voluntary basis.

If you indeed like this coin, fill my sig with love.
hero member
Activity: 518
Merit: 505
... Most of us have got scripts for that job, such as this:

./darkcoind stop
wget https://raw.githubusercontent.com/darkcoinproject/darkcoin-binaries/master/darkcoin-0.11.0.13-linux.tar.gz
tar zxvf darkcoin-0.11.0.13-linux.tar.gz
mv darkcoin-0.11.0.13-linux/bin/64/darkcoind .
chmod +x ./darkcoind
rm .darkcoin/peers.dat
./darkcoind

...
How exactly can I run these commands in one line?

My update method:
Code:
rm -rf darkcoind-old

wget https://github.com/darkcoinproject/darkcoin-binaries/raw/master/darkcoin-0.11.0.13-linux.tar.gz

tar zfvx darkcoin-0.11.0.13-linux.tar.gz

./darkcoind stop

mv darkcoind darkcoind-old

cp darkcoin-0.11.0.13-linux/bin/64/darkcoind darkcoind

rm .darkcoin/peers.dat

chmod 777 darkcoind

./darkcoind

./darkcoind masternode list | grep -e IP1 -e IP2

rm -rf darkcoin-0.11.0.13-linux

rm darkcoin-0.11.0.13-linux.tar.gz

I update my nodes with the following magic:

Code:
pacaur -S darkcoin-git

https://www.archlinux.org/
https://aur.archlinux.org/packages/darkcoin-git/
https://wiki.archlinux.org/index.php/Arch_User_Repository
hero member
Activity: 532
Merit: 500


green today, green yesterday, green this week, green all month; can't touch this :p

1W MACD has the 4th green in a row now, momentum is upwards and you're part of the reason, hopefully we can push it even further and use this momentum with a well timed InstantX release.
legendary
Activity: 1288
Merit: 1000

How exactly can I run these commands in one line?


You can litarally just select it all in any notepad, copy it, and paste it into the terminal. Though you would want to remove the spaces in between commands, and move your 'darkcoind stop' to the top, because it takes a couple seconds to wind down. I find it easier than saving as an .sh because you are editing the lines that contain the current file name anyway Smiley

*This is applicable to Ubuntu, not sure if it applies to the putty folks.

With putty : copy your text and just right click on your putty windows.
hero member
Activity: 525
Merit: 510
masternode update script: https://darkcointalk.org/threads/masternode-update-script.1640/

save the code inside a file called "update.sh"

use superputty for updating multiple masternode simultaneous

You can litarally just select it all in any notepad, copy it, and paste it into the terminal. Though you would want to remove the spaces in between commands, and move your 'darkcoind stop' to the top, because it takes a couple seconds to wind down. I find it easier than saving as an .sh because you are editing the lines that contain the current file name anyway Smiley

*This is applicable to Ubuntu, not sure if it applies to the putty folks.

Gotta LOVE this community for the ultra fast and helpful replies! Grin Thanks guys!
sr. member
Activity: 478
Merit: 250

How exactly can I run these commands in one line?


You can litarally just select it all in any notepad, copy it, and paste it into the terminal. Though you would want to remove the spaces in between commands, and move your 'darkcoind stop' to the top, because it takes a couple seconds to wind down. I find it easier than saving as an .sh because you are editing the lines that contain the current file name anyway Smiley

*This is applicable to Ubuntu, not sure if it applies to the putty folks.
full member
Activity: 210
Merit: 100
Darkcoin developer team expanded rapidly recently. I am curious how Evan finds all the money to pay these amazing folks. Or are they working on voluntary basis? Alternative scenario is that Evan has a VC in his pocket  Wink
hero member
Activity: 525
Merit: 510
... Most of us have got scripts for that job, such as this:

./darkcoind stop
wget https://raw.githubusercontent.com/darkcoinproject/darkcoin-binaries/master/darkcoin-0.11.0.13-linux.tar.gz
tar zxvf darkcoin-0.11.0.13-linux.tar.gz
mv darkcoin-0.11.0.13-linux/bin/64/darkcoind .
chmod +x ./darkcoind
rm .darkcoin/peers.dat
./darkcoind

...
How exactly can I run these commands in one line?

My update method:
Code:
rm -rf darkcoind-old

wget https://github.com/darkcoinproject/darkcoin-binaries/raw/master/darkcoin-0.11.0.13-linux.tar.gz

tar zfvx darkcoin-0.11.0.13-linux.tar.gz

./darkcoind stop

mv darkcoind darkcoind-old

cp darkcoin-0.11.0.13-linux/bin/64/darkcoind darkcoind

rm .darkcoin/peers.dat

chmod 777 darkcoind

./darkcoind

./darkcoind masternode list | grep -e IP1 -e IP2

rm -rf darkcoin-0.11.0.13-linux

rm darkcoin-0.11.0.13-linux.tar.gz
legendary
Activity: 2156
Merit: 1014
Dash Nation Founder | CATV Host
legendary
Activity: 1288
Merit: 1000
Jump to: