Author

Topic: ★[ANN] [NAV] NAV COIN - Community Fund Live!!! - page 981. (Read 2085654 times)

pgb
full member
Activity: 212
Merit: 100
I opened the wallet this morning, got a few stakes within the first hour as usual.
Then I got two orphans... and then nothing.

Its been over 7 hours with the wallet open and no stakes. I normally get a few stakes each hour.

The wallet is in the richlist, and not in the last positions, just so I can make clear there is enough in there that this thing should not be happening.
I should have gotten 20 stakes by now on a bad day.

I do get the new blocks. I see my old stakes getting buried deeper in the chain and I don't get out of sync.
Expected time to stake is two seconds!

NAV frozen in Polo. Anything happened that we don't know?
legendary
Activity: 2165
Merit: 1002
I opened the wallet this morning, got a few stakes within the first hour as usual.
Then I got two orphans... and then nothing.

Its been over 7 hours with the wallet open and no stakes. I normally get a few stakes each hour.

The wallet is in the richlist, and not in the last positions, just so I can make clear there is enough in there that this thing should not be happening.
I should have gotten 20 stakes by now on a bad day.

I do get the new blocks. I see my old stakes getting buried deeper in the chain and I don't get out of sync.
Expected time to stake is two seconds!
sr. member
Activity: 1313
Merit: 302
when you do ./navajoicoind on its own, its trying to start the daemon, i think it does nothing if already running.

if you do a ./navajocoind getinfo , you should be able to see all blockchain info including what block your wallet is on, compare with the block explorer to see if your in sync.
sr. member
Activity: 373
Merit: 250
They walk among us...
Ok, so slightly curved ball here….

I have a Raspberry pi sitting here doing nothing. I would really like to use it effectively as just the wallet for my nav but I'm pretty noob when it comes to linux. Would anyone be interested in posting an idiots guide on how to build a pi image that could do this? can i just install linux and then copy across the wallet.dat and data (block chain to save the days download etc.) I would happily pay a bounty of say 4000 nav and of course as Nav grows it might become handy for other linux / pi users.

I looked at the github, but soon got bogged down on what to include etc.

Please be gentle with me

Hi,

There are some good guides in the internet.

http://www.reddit.com/r/reddCoin/comments/2b8wqm/tutorial_compiling_and_running_the_reddcoin/

Read through it and just make it step by step. Just use the navajocoin git and also induce the readme of navajocoin.

Regards
Shahim

Thanks Shahim!

So, once i install wheezy i do

apt-get install qt5-default qt5-qmake qtbase5-dev-tools qttools5-dev-tools \
    build-essential libboost-dev libboost-system-dev \
    libboost-filesystem-dev libboost-program-options-dev libboost-thread-dev \
    libssl-dev libdb++-dev

? can't see how it links to the nav github stuff…. (I am a massive NOOB) - BTW as soon as i get i workingI will send you the nav Smiley - sorry i am so retarded Smiley

Hi,

do you want to have a GUI? I would suggest to start without GUI. It is easier to get it run ;-)

SO you install debian wheezy. after that:

1. apt-get update

2. apt-get install libdb++-dev

3. apt-get install build-essential libssl-dev libdb5.1-dev libdb5.1++-dev libboost-all-dev git

4. git clone http://www.Github.com/sherlockcoin/navajocoin

5. cd navajocoin/src

6. mkdir obj

7. chmod 755 leveldb/build_detect_platform

8. make -f makefile.unix USE_UPNP=-

That should make the navajocoind daemon. Never tried on a arm but should work.
You should have now a file called "navajocoind" in src folder. That is your wallet.

You need to create a ".summercoinv2" folder in (I guess) /root/ and put the summercoinv2.conf there. You can also try to copy the blockchain data into that folder... could work out. Just try to start. If it works you can try with your wallet.

You find all commands when you execute ./navajocoind help

regards
 

Thanks Shahim for that. it seemed to build ok (it took a while) however, how do i know if its working? when i execute ./navajocoind help that lists commands but when i execute ./navajocoind on its own it just seems to do nothing… I was kind of expecting some kind of output or is it still downloading the block chain? (its been doing that for maybe 6 hours) is there a way to add the gui? Thanks in advance
legendary
Activity: 1082
Merit: 1002
Ok, so slightly curved ball here….

I have a Raspberry pi sitting here doing nothing. I would really like to use it effectively as just the wallet for my nav but I'm pretty noob when it comes to linux. Would anyone be interested in posting an idiots guide on how to build a pi image that could do this? can i just install linux and then copy across the wallet.dat and data (block chain to save the days download etc.) I would happily pay a bounty of say 4000 nav and of course as Nav grows it might become handy for other linux / pi users.

I looked at the github, but soon got bogged down on what to include etc.

Please be gentle with me

Hi,

There are some good guides in the internet.

http://www.reddit.com/r/reddCoin/comments/2b8wqm/tutorial_compiling_and_running_the_reddcoin/

Read through it and just make it step by step. Just use the navajocoin git and also induce the readme of navajocoin.

Regards
Shahim

Thanks Shahim!

So, once i install wheezy i do

apt-get install qt5-default qt5-qmake qtbase5-dev-tools qttools5-dev-tools \
    build-essential libboost-dev libboost-system-dev \
    libboost-filesystem-dev libboost-program-options-dev libboost-thread-dev \
    libssl-dev libdb++-dev

? can't see how it links to the nav github stuff…. (I am a massive NOOB) - BTW as soon as i get i workingI will send you the nav Smiley - sorry i am so retarded Smiley

Hi,

do you want to have a GUI? I would suggest to start without GUI. It is easier to get it run ;-)

SO you install debian wheezy. after that:

1. apt-get update

2. apt-get install libdb++-dev

3. apt-get install build-essential libssl-dev libdb5.1-dev libdb5.1++-dev libboost-all-dev git

4. git clone http://www.Github.com/sherlockcoin/navajocoin

5. cd navajocoin/src

6. mkdir obj

7. chmod 755 leveldb/build_detect_platform

8. make -f makefile.unix USE_UPNP=-

That should make the navajocoind daemon. Never tried on a arm but should work.
You should have now a file called "navajocoind" in src folder. That is your wallet.

You need to create a ".summercoinv2" folder in (I guess) /root/ and put the summercoinv2.conf there. You can also try to copy the blockchain data into that folder... could work out. Just try to start. If it works you can try with your wallet.

You find all commands when you execute ./navajocoind help

regards
 
sr. member
Activity: 373
Merit: 250
They walk among us...
Ok, so slightly curved ball here….

I have a Raspberry pi sitting here doing nothing. I would really like to use it effectively as just the wallet for my nav but I'm pretty noob when it comes to linux. Would anyone be interested in posting an idiots guide on how to build a pi image that could do this? can i just install linux and then copy across the wallet.dat and data (block chain to save the days download etc.) I would happily pay a bounty of say 4000 nav and of course as Nav grows it might become handy for other linux / pi users.

I looked at the github, but soon got bogged down on what to include etc.

Please be gentle with me

Hi,

There are some good guides in the internet.

http://www.reddit.com/r/reddCoin/comments/2b8wqm/tutorial_compiling_and_running_the_reddcoin/

Read through it and just make it step by step. Just use the navajocoin git and also induce the readme of navajocoin.

Regards
Shahim

Thanks Shahim!

So, once i install wheezy i do

apt-get install qt5-default qt5-qmake qtbase5-dev-tools qttools5-dev-tools \
    build-essential libboost-dev libboost-system-dev \
    libboost-filesystem-dev libboost-program-options-dev libboost-thread-dev \
    libssl-dev libdb++-dev

? can't see how it links to the nav github stuff…. (I am a massive NOOB) - BTW as soon as i get i workingI will send you the nav Smiley - sorry i am so retarded Smiley
legendary
Activity: 1082
Merit: 1002
Ok, so slightly curved ball here….

I have a Raspberry pi sitting here doing nothing. I would really like to use it effectively as just the wallet for my nav but I'm pretty noob when it comes to linux. Would anyone be interested in posting an idiots guide on how to build a pi image that could do this? can i just install linux and then copy across the wallet.dat and data (block chain to save the days download etc.) I would happily pay a bounty of say 4000 nav and of course as Nav grows it might become handy for other linux / pi users.

I looked at the github, but soon got bogged down on what to include etc.

Please be gentle with me

Hi,

There are some good guides in the internet.

http://www.reddit.com/r/reddCoin/comments/2b8wqm/tutorial_compiling_and_running_the_reddcoin/

Read through it and just make it step by step. Just use the navajocoin git and also induce the readme of navajocoin.

Regards
Shahim
sr. member
Activity: 373
Merit: 250
They walk among us...
Ok, so slightly curved ball here….

I have a Raspberry pi sitting here doing nothing. I would really like to use it effectively as just the wallet for my nav but I'm pretty noob when it comes to linux. Would anyone be interested in posting an idiots guide on how to build a pi image that could do this? can i just install linux and then copy across the wallet.dat and data (block chain to save the days download etc.) I would happily pay a bounty of say 4000 nav and of course as Nav grows it might become handy for other linux / pi users.

I looked at the github, but soon got bogged down on what to include etc.

Please be gentle with me
hero member
Activity: 518
Merit: 500
Enjoying the ups & downs of Cryptocurrency!
It is like leveling up in a video game!  Cheesy
sr. member
Activity: 373
Merit: 250
They walk among us...
Must admit, I have been buying more since the rich list was born. Something very addictive about trying to get higher and higher lol.
full member
Activity: 225
Merit: 100
Yup officially I am now on the richlist!
Congrats Smiley

Now you can start watching yourself climbing up the rich list.
hero member
Activity: 518
Merit: 500
Enjoying the ups & downs of Cryptocurrency!
Yup officially I am now on the richlist!
legendary
Activity: 1050
Merit: 1000
@ shahim - Thanks for keeping the community informed of website move

@ fuze0000 - nice answer bro keep it up and great support in a hard question

I just wanted to expand on DarkLister question “Sorry guys I am new here but why is this coin so cheap.  Is there any problems?"

Navajocoin is a survivor. Most coins do not last for more then a month or 2. The reason the other coins die the developers of other coins dump their IPO or premine and the rest of the community is left with nothing. An ipo or premine is where the coins a pre-mined before release and kept by the coin creators. In the above scenario the coin price rises rapidly and usually is called a pump and dump coin.

Also most investors make the mistake of thinking that crytpo currency trading works like the stock market and try to day trade the coin wanting quick results.
This ultimately does not work for them. Resulting in a quick dump and loss of money.

Navajocoin is here for the long term with its developers ~Soopy452000~ - HEAD & TECH DEVELOPER - with the navajocoin development team foundation and strong community busy codeing  , designing and listening to its evolution. NavajoCoin has no premine or ipo and is fully supported by its community via donations.

Navajocoin Anonymous Technology is a mamouth task/creation which should not be underestimated for a non premine non ipo coin and ~soopy~ has taken on this challenge with full commitment.

The good news - the wait is nearly over and people are now realizing that Navajocoin is different to all the other copy and paste coins , with the constant updates and communication from the development team . Not just overnight high's and then to big dumps. So this is not a day trade coin it has a real purpose and goal. Navajocoin has Litecoin in its sites. If you think we are dreaming so be it that is up to you. It is ~soopy~ primary goal . The believers are here and fully support this long term goal! Navajocoin has been attacked and we will never forget that . Navajocoin is a survivor and we are here to stay.  

The price is now going up and investors are coming in hard and strong. The Journey has not been easy and we have had out setbacks and challenges. Our time is coming and we are the Navajocoin community. I will say it a thousand times. We are going to the stars! This is just the begining


Join the foundation and make us even stronger!

http://navajocoin.org/

Great to see the NavajoCoin Whitepaper has moved from dropbox to http://navajocoin.org/pdf/navajocoin.pdf - nice!
sr. member
Activity: 373
Merit: 250
They walk among us...
Nice to see nav staying above 300 sats for a while now Smiley
sr. member
Activity: 477
Merit: 501
wooooot I love faucets !!!
legendary
Activity: 1082
Merit: 1002
At least people think this forum is worth spamming lol.

Smiley
hero member
Activity: 518
Merit: 500
Enjoying the ups & downs of Cryptocurrency!
At least people think this forum is worth spamming lol.
hero member
Activity: 663
Merit: 500
Get your coin listed on one of the oldest and most reputable casino networks, PeerBet/Bit777, managed by Casinobitco.in!

Auction to list YOUR Altcoin on the all new PeerBet 2.0 for 3+ months! Ends 12/1!


Link: https://bitcointalk.org/index.php?topic=856291.new#new
hero member
Activity: 518
Merit: 500
Enjoying the ups & downs of Cryptocurrency!
I am also looking forward to the Navajocoin faucet for newbies as a show of good faith!
legendary
Activity: 1082
Merit: 1002
Just FYI :

I had to move the nameserver to our new location! As you perhaps know changing DNS settings and nameserver sometimes takes some time, till it reaches every corner of the internet!

RIght now I can access everything from my place and dns lookup from several internet sites are working, but it could be these new information get published at your local provider a bit later!

Site is not offline and we are here! Smiley

thank you
shahim
Jump to: