Pages:
Author

Topic: [ANN] [ARO] | Arionum | CPU+GPU+Masternode | PHP Based |Decentralized Revolution - page 68. (Read 71651 times)

newbie
Activity: 76
Merit: 0
when will your token be listed on exchanges?

At the moment we are currently looking at the possibility of getting ARO listed on an exchange, we hope to have more information for you soon.
https://icqbase.com/page/voting.  

@wenjiannin -- just to confirm, this voting is for Arionum or is it for the MUT rebrand "Arion" -- also, they had previously agreed to use ARION instead of ARO as their ticker, to avoid this confusion, does this indicate that they have backed out of that agreement?

Basically, Arionum != Arion. Arion is a rebrand of MUT; Arionum is a new blockchain with no relationship to prior projects.
Yes, you are right. This exchange has closed down.
jr. member
Activity: 114
Merit: 2
Quote
One of the main advantages of Arionum is that it was fully written from scratch in PHP
  Shocked

Quote
ECDSA's secp256k1 curve
Sure? Why are Arionum so long then?
newbie
Activity: 29
Merit: 1
when will your token be listed on exchanges?

At the moment we are currently looking at the possibility of getting ARO listed on an exchange, we hope to have more information for you soon.
https://icqbase.com/page/voting.  

@wenjiannin -- just to confirm, this voting is for Arionum or is it for the MUT rebrand "Arion" -- also, they had previously agreed to use ARION instead of ARO as their ticker, to avoid this confusion, does this indicate that they have backed out of that agreement?

Basically, Arionum != Arion. Arion is a rebrand of MUT; Arionum is a new blockchain with no relationship to prior projects.
jr. member
Activity: 33
Merit: 2

Thank you. i feel like that kid that finally figured out why x is 2 if x+2=4 Grin By the way PIVX was one of the first coin i bought back in July, 2017 and am stilling holding it. Great coin too.

lol...don't feel bad, all honest all this cloud mining thing is new to me too, wish I figured it out 2 years ago when I first got into crypto lol...I been mining the old gpu/asic way since day one but this seems to boost on coins like this one pretty well.

I actually started professionally with marketing on PIVX, I used to run their social pages in the early days, left to pursue a few projects I had cooking right before you got in there I believe last year lol....think it was around June of 2017 when I moved on but I always been still apart of it just not so full time. Actually just went back over there, kind of inside the team waiting on some work with them. Great coin and team, Arionum too, kind of reminds me of the old days in crypto to do it without ICO's and all that junk, feels right here to me, fits what I used to love about crypto a lot
newbie
Activity: 76
Merit: 0
when will your token be listed on exchanges?

At the moment we are currently looking at the possibility of getting ARO listed on an exchange, we hope to have more information for you soon.
https://icqbase.com/page/voting.   
newbie
Activity: 83
Merit: 0

I will be lying if i said am still not confused.  I would really appreciate it, if someone could give me a detailed direction on how to switch to tmux. i understand that i have to restart putty and log back into my server. but i could plz use a detailed direction on how i switch to tmux. I apologize but i lack the technical flair, i was able to set up the current miner cos sflaherty gave me a really detailed instruction

Hey buddy, I just tried this out, I think its running lol...not completely sure but what I did was this. As soon as I got into my powershell, aka Putty for you which makes no difference. When your in the main area of your droplet, this is after you sign in with your password. Put the following that AltScope wrote earlier but I will break it a down a little for you:

sudo apt get install tmux
tmux

Now start your miner
 cd /arionum-java/arionum-miner
./run.sh

Use ctrl-b to exit out but it should still run
Then enter d
then you can close ssh and it'll keep running

To check on it
Login with your ssh root@ info and password
Then type in tmux attach

That seemed to keep mine running when i checked it, so it should work for you with Putty. I forgot to mention to you, on Discord I go by Frenchfry but I just changed my user name to sflaherty aka frenchfry if you need to DM me or ask questions. I work with PIVX actually and been stuck with the nickname frenchfry for a long time and totally forgot to change my username on discord till today. So you should be able to find me in there as sflaherty if you have issues or need help. Not a big deal, I am kind of learning this cpu mining with cloud services as I go as well

Thank you. i feel like that kid that finally figured out why x is 2 if x+2=4 Grin By the way PIVX was one of the first coin i bought back in July, 2017 and am stilling holding it. Great coin too.
jr. member
Activity: 230
Merit: 5
when will your token be listed on exchanges?

At the moment we are currently looking at the possibility of getting ARO listed on an exchange, we hope to have more information for you soon.
newbie
Activity: 5
Merit: 0
Also, you can use this setup script on a fresh VM:

Code:
sudo apt-get update && sudo apt-get install openjdk-8-jdk maven git htop gcc make build-essential -y && git clone git://github.com/Programmerdan/arionum-java && cd arionum-java/arionum-miner && mvn clean package && chmod +x build-argon.sh && ./build-argon.sh && ./run.sh

To really make it pro you could put your config.cfg somewhere on the interbutts and get that and put it in ~/arionum-java/arionum-miner folder before running ./run.sh or the command in my last post. Then you could just paste one command in and walk away Cheesy

Something like this:

Code:
wget  -P ~/arionum-java/arionum-miner/  "http://pathtoyourconfigfile.com/config.cfg"

All together now:

Code:
sudo apt-get update && sudo apt-get install openjdk-8-jdk maven git htop gcc make build-essential -y && git clone git://github.com/Programmerdan/arionum-java && cd arionum-java/arionum-miner && mvn clean package && chmod +x build-argon.sh && ./build-argon.sh && wget  -P ~/arionum-java/arionum-miner/  "http://pathtoyourconfigfile.com/config.cfg" && screen -S miner -d -m bash -c "cd ~/arionum-java/arionum-miner && ./run.sh"




newbie
Activity: 5
Merit: 0
Alternatively, to run launch your miners to the background, you can use screen, which should by default already be there on Ubuntu 16.04.

I usually launch this code, then run htop and watch my CPU cores fire up.

You are safe to close the terminal and your miners will continue running in the background.

Code:
screen -S miner -d -m bash -c "cd ~/arionum-java/arionum-miner && ./run.sh"
jr. member
Activity: 33
Merit: 2

I will be lying if i said am still not confused.  I would really appreciate it, if someone could give me a detailed direction on how to switch to tmux. i understand that i have to restart putty and log back into my server. but i could plz use a detailed direction on how i switch to tmux. I apologize but i lack the technical flair, i was able to set up the current miner cos sflaherty gave me a really detailed instruction

Hey buddy, I just tried this out, I think its running lol...not completely sure but what I did was this. As soon as I got into my powershell, aka Putty for you which makes no difference. When your in the main area of your droplet, this is after you sign in with your password. Put the following that AltScope wrote earlier but I will break it a down a little for you:

sudo apt get install tmux
tmux

Now start your miner
 cd /arionum-java/arionum-miner
./run.sh

Use ctrl-b to exit out but it should still run
Then enter d
then you can close ssh and it'll keep running

To check on it
Login with your ssh root@ info and password
Then type in tmux attach

That seemed to keep mine running when i checked it, so it should work for you with Putty. I forgot to mention to you, on Discord I go by Frenchfry but I just changed my user name to sflaherty aka frenchfry if you need to DM me or ask questions. I work with PIVX actually and been stuck with the nickname frenchfry for a long time and totally forgot to change my username on discord till today. So you should be able to find me in there as sflaherty if you have issues or need help. Not a big deal, I am kind of learning this cpu mining with cloud services as I go as well
newbie
Activity: 76
Merit: 0
GOOD NEWS!!!
Coin Voting https://icqbase.com/page/voting
We're always looking to add new markets for the best altcoins, and to help us with this we'd like to ask you, our users to vote on what you'd like to see offered at ICQBASE.

Below is a list of coins that we're considering adding, ordered by the most voted. Please vote for your chosen coin below, due to the recent abuse of the system by bots, only registered users with a trade history are permitted to vote for coins. Every user is limited to 5 (five) votes per hour.

We're also accepting payment votes! We've put a lot of time and capital in to making the exchange, and we believe it's only right to let users show their confidence in new coins by allowing them to use their wallets. Each 0.00010000 BTC received will count for 1 vote. All payment votes will be publicly visible, as you can see by clicking the addresses below, and will go directly to improving ICQBASE's infrastructure. Payment votes are automatically credited every 15 minutes after 1 network confirm.

Although the majority of new markets will come from the voting system, we reserve the right to add new markets outside of the system where we feel necessary. Have a new coin that isn't on the list? Please contact us at info
  • icqbase.com and we'll get the coin added.
newbie
Activity: 83
Merit: 0
...

Putty does have to be running, and yes, when you log back onto your server, you will have to -

cd /arionum-java/arionum-miner
./run.sh

Cheers


no it doesnt read my post i use ssh all the time

My apologies, I didn't see your post about tmux, ignore me Smiley

I will be lying if i said am still not confused.  I would really appreciate it, if someone could give me a detailed direction on how to switch to tmux. i understand that i have to restart putty and log back into my server. but i could plz use a detailed direction on how i switch to tmux. I apologize but i lack the technical flair, i was able to set up the current miner cos sflaherty gave me a really detailed instruction
jr. member
Activity: 230
Merit: 5
...

Putty does have to be running, and yes, when you log back onto your server, you will have to -

cd /arionum-java/arionum-miner
./run.sh

Cheers


no it doesnt read my post i use ssh all the time

My apologies, I didn't see your post about tmux, ignore me Smiley
sr. member
Activity: 714
Merit: 252
...

Putty does have to be running, and yes, when you log back onto your server, you will have to -

cd /arionum-java/arionum-miner
./run.sh

Cheers


no it doesnt read my post i use ssh all the time
jr. member
Activity: 230
Merit: 5

Thanks for that great direction. you made it really easy. anyway, i have everything running and am wondering if i can shut putty down or does it need to stay open in other for the miner to keep working.  i use the ref cod but also send me your ripple address if you have one and i will send you a few coins for helping me out. Thanks

Not really sure with PUTTY if its okay to shut down, I use Powershell but I have to leave mine up in order for it to keep mining. I might test with PUTTY soon but if you find out let me know, curious myself if maybe putty is a better option.

Its no problem helping out, I know I had to google like crazy on this stuff when I found this coin so I am glad to pass the info to you. Honestly the referral is plenty, leave it up to you about the Ripple. My address is rPdZTgARsdSji7PvVVSiQZMSztn5hiTmp but its really not necessary, only if your rich lol...just kidding.

You have any issues let me know, I am also on the discord a lot and the guys over there been really helpful, great little team on this coin.

i asked on discord, so i will let you know when i get an answer. by the way, if i accidentally shut down putty and it's need to be up for th coin to continue mining. do i just log back  into my server and type ./run.sh. i guess you cn sub putty with powershell, just wondering what you have to type to restart mining if you accidentally shut down powershell

Putty does have to be running, and yes, when you log back onto your server, you will have to -

cd /arionum-java/arionum-miner
./run.sh

Cheers
sr. member
Activity: 714
Merit: 252

Thanks for that great direction. you made it really easy. anyway, i have everything running and am wondering if i can shut putty down or does it need to stay open in other for the miner to keep working.  i use the ref cod but also send me your ripple address if you have one and i will send you a few coins for helping me out. Thanks

Not really sure with PUTTY if its okay to shut down, I use Powershell but I have to leave mine up in order for it to keep mining. I might test with PUTTY soon but if you find out let me know, curious myself if maybe putty is a better option.

Its no problem helping out, I know I had to google like crazy on this stuff when I found this coin so I am glad to pass the info to you. Honestly the referral is plenty, leave it up to you about the Ripple. My address is rPdZTgARsdSji7PvVVSiQZMSztn5hiTmp but its really not necessary, only if your rich lol...just kidding.

You have any issues let me know, I am also on the discord a lot and the guys over there been really helpful, great little team on this coin.

i asked on discord, so i will let you know when i get an answer. by the way, if i accidentally shut down putty and it's need to be up for th coin to continue mining. do i just log back  into my server and type ./run.sh. i guess you cn sub putty with powershell, just wondering what you have to type to restart mining if you accidentally shut down powershell

use tmux guys

ubuntu:

sudo apt get install tmux
tmux
run you're program
ctrl-b
d
then you can close ssh and it'll keep running
check on it by logging in and using:
tmux attach
newbie
Activity: 83
Merit: 0

Thanks for that great direction. you made it really easy. anyway, i have everything running and am wondering if i can shut putty down or does it need to stay open in other for the miner to keep working.  i use the ref cod but also send me your ripple address if you have one and i will send you a few coins for helping me out. Thanks

Not really sure with PUTTY if its okay to shut down, I use Powershell but I have to leave mine up in order for it to keep mining. I might test with PUTTY soon but if you find out let me know, curious myself if maybe putty is a better option.

Its no problem helping out, I know I had to google like crazy on this stuff when I found this coin so I am glad to pass the info to you. Honestly the referral is plenty, leave it up to you about the Ripple. My address is rPdZTgARsdSji7PvVVSiQZMSztn5hiTmp but its really not necessary, only if your rich lol...just kidding.

You have any issues let me know, I am also on the discord a lot and the guys over there been really helpful, great little team on this coin.

i asked on discord, so i will let you know when i get an answer. by the way, if i accidentally shut down putty and it's need to be up for th coin to continue mining. do i just log back  into my server and type ./run.sh. i guess you cn sub putty with powershell, just wondering what you have to type to restart mining if you accidentally shut down powershell
jr. member
Activity: 33
Merit: 2

Thanks for that great direction. you made it really easy. anyway, i have everything running and am wondering if i can shut putty down or does it need to stay open in other for the miner to keep working.  i use the ref cod but also send me your ripple address if you have one and i will send you a few coins for helping me out. Thanks

Not really sure with PUTTY if its okay to shut down, I use Powershell but I have to leave mine up in order for it to keep mining. I might test with PUTTY soon but if you find out let me know, curious myself if maybe putty is a better option.

Its no problem helping out, I know I had to google like crazy on this stuff when I found this coin so I am glad to pass the info to you. Honestly the referral is plenty, leave it up to you about the Ripple. My address is rPdZTgARsdSji7PvVVSiQZMSztn5hiTmp but its really not necessary, only if your rich lol...just kidding.

You have any issues let me know, I am also on the discord a lot and the guys over there been really helpful, great little team on this coin.
newbie
Activity: 83
Merit: 0
Thank you, i will use your ref code when i sign up. I have one more question, how does the miner know what address to deposit the coin? am looking at th direction and it doesn't state that

I really appreciate you using the code, I plan to keep sticking on this coin so that will help a lot.

After you install all that I put in the guide and you hit that run code ./run.sh at the end, it will prompt you with a few questions of how many threads, that being 4 and if it will be on pool/solo....pool of course and then ask for your wallet address. That is the final step and then it will begin to mine and show you your hashes running

Thanks for that great direction. you made it really easy. anyway, i have everything running and am wondering if i can shut putty down or does it need to stay open in other for the miner to keep working.  i use the ref cod but also send me your ripple address if you have one and i will send you a few coins for helping me out. Thanks
jr. member
Activity: 33
Merit: 2
Thank you, i will use your ref code when i sign up. I have one more question, how does the miner know what address to deposit the coin? am looking at th direction and it doesn't state that

I really appreciate you using the code, I plan to keep sticking on this coin so that will help a lot.

After you install all that I put in the guide and you hit that run code ./run.sh at the end, it will prompt you with a few questions of how many threads, that being 4 and if it will be on pool/solo....pool of course and then ask for your wallet address. That is the final step and then it will begin to mine and show you your hashes running
Pages:
Jump to: