Bitcoin Forum
May 03, 2024, 05:43:02 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 [65] 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 ... 152 »
  Print  
Author Topic: [ANN]INNOVA - We strive for innovation and adoption! | Hybrid Tribus coin  (Read 154372 times)
TheCryptoPope
Newbie
*
Offline Offline

Activity: 46
Merit: 0


View Profile
November 05, 2017, 11:20:48 PM
 #1281

Here is how I setup Masternode on Ubuntu VPS. Hope it is helpful

# For Ubuntu 14.04 64-bit VPS. Assumes you have all the latest dependencies installed.
# fyi, I followed vivo linux guide to install dependencies

# download latest code from git
cd ~
git clone https://github.com/innovacoin/innova.git

# Install files
cd ~/innova/
./autogen.sh
./configure --without-gui
make
sudo make install

# start the daemon and let the wallet sync - this may take few minutes. periodically run 'getinfo' command and check 'blocks' parameter.
# That number should be increasing. You can find the current blockcount from block explorer link on page 1
innovad --daemon
innova-cli getinfo

# Get wallet address and masternode private key. Save both keys in a text file for future use
innova-cli getaccountaddress 0
innova-cli masternode genkey
              
# Stop the daemon and edit the .conf file
innova-cli stop
nano ~/.innovacore/innova.conf

# Add the following lines to innova.conf file
masternode=1
masternodeprivkey=<Your Masternode Private Key>

# Restat the daemon. Send exactly 1000 Innova to the wallet address that you saved in the previous step.
# Wait for 15 confirmations. This may take few mintues. Periodically check with 'listtransactions'.
# From 'listtransactions', also find the 'txid' and save it for future use
innovad --daemon
innova-cli getinfo
innova-cli listtransactions

# After 15+ confirmations
innova-cli masternode start

# To confirm if the Masternode is running. Masternode status may show PRE-ENABLED for a short period and then should say ENABLED
innova-cli masternode list | grep <Your txid>

# other commands for status
innova-cli masternode status
innova-cli getwalletinfo



Hi,

I'm getting an error when executing ./autogen.sh;
It's responding this: ./autogen.sh: 9: ./autogen.sh: autoreconf: not found

If anyone can help it's much appreciated

EDIT: solved by executing apt-get dh-autoreconf
1714714982
Hero Member
*
Offline Offline

Posts: 1714714982

View Profile Personal Message (Offline)

Ignore
1714714982
Reply with quote  #2

1714714982
Report to moderator
1714714982
Hero Member
*
Offline Offline

Posts: 1714714982

View Profile Personal Message (Offline)

Ignore
1714714982
Reply with quote  #2

1714714982
Report to moderator
1714714982
Hero Member
*
Offline Offline

Posts: 1714714982

View Profile Personal Message (Offline)

Ignore
1714714982
Reply with quote  #2

1714714982
Report to moderator
There are several different types of Bitcoin clients. The most secure are full nodes like Bitcoin Core, which will follow the rules of the network no matter what miners do. Even if every miner decided to create 1000 bitcoins per block, full nodes would stick to the rules and reject those blocks.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714714982
Hero Member
*
Offline Offline

Posts: 1714714982

View Profile Personal Message (Offline)

Ignore
1714714982
Reply with quote  #2

1714714982
Report to moderator
1714714982
Hero Member
*
Offline Offline

Posts: 1714714982

View Profile Personal Message (Offline)

Ignore
1714714982
Reply with quote  #2

1714714982
Report to moderator
langongbachieu
Newbie
*
Offline Offline

Activity: 54
Merit: 0


View Profile
November 06, 2017, 04:08:35 AM
 #1282

Hi devs,
Do you have plans for signature campaigns and airdrops for INNOVA community? Thank you very much in advance!
foxy
Sr. Member
****
Offline Offline

Activity: 476
Merit: 250



View Profile
November 06, 2017, 09:19:03 AM
 #1283

Hi devs,
Do you have plans for signature campaigns and airdrops for INNOVA community? Thank you very much in advance!

According to information in the first post, they are searching for a campaign manager, so I think they will soon be starting those campaign.


█▀█ █ █▄▀ █▀█ █▀ ░ █▀▀ ▄▀█ █▀ █░█
█▄█ █ █░█ █▄█ ▄█ ▄ █▄▄ █▀█ ▄█ █▀█



DeFi on Tron
and trustless token exchange
█████











█████

██████████████████████████████████████████████████████

JOIN OIKOS

██████████████████████████████████████████████████████

█████
    █
    █
    █
    █
    █
    █
    █
    █
    █
    █
    █
█████
goldy007
Newbie
*
Offline Offline

Activity: 75
Merit: 0


View Profile
November 06, 2017, 12:12:50 PM
 #1284

When add more exchanges?
wendelllee
Sr. Member
****
Offline Offline

Activity: 672
Merit: 250


DeepOnion


View Profile
November 06, 2017, 02:07:16 PM
 #1285

I want to buy more INN but the price is so high those days. I will just wait and hope I can have the opportunity to buy 1000 more.
coinhunter_mt2
Newbie
*
Offline Offline

Activity: 56
Merit: 0


View Profile
November 06, 2017, 02:16:50 PM
 #1286

Will signature campaign be opened soon?
mattaero
Jr. Member
*
Offline Offline

Activity: 178
Merit: 2


View Profile
November 06, 2017, 02:20:58 PM
Last edit: November 06, 2017, 03:10:35 PM by mattaero
 #1287

Here is how I setup Masternode on Ubuntu VPS. Hope it is helpful

# For Ubuntu 14.04 64-bit VPS. Assumes you have all the latest dependencies installed.
# fyi, I followed vivo linux guide to install dependencies

# download latest code from git
cd ~
git clone https://github.com/innovacoin/innova.git

# Install files
cd ~/innova/
./autogen.sh
./configure --without-gui
make
sudo make install

# start the daemon and let the wallet sync - this may take few minutes. periodically run 'getinfo' command and check 'blocks' parameter.
# That number should be increasing. You can find the current blockcount from block explorer link on page 1
innovad --daemon
innova-cli getinfo

# Get wallet address and masternode private key. Save both keys in a text file for future use
innova-cli getaccountaddress 0
innova-cli masternode genkey
              
# Stop the daemon and edit the .conf file
innova-cli stop
nano ~/.innovacore/innova.conf

# Add the following lines to innova.conf file
masternode=1
masternodeprivkey=<Your Masternode Private Key>

# Restat the daemon. Send exactly 1000 Innova to the wallet address that you saved in the previous step.
# Wait for 15 confirmations. This may take few mintues. Periodically check with 'listtransactions'.
# From 'listtransactions', also find the 'txid' and save it for future use
innovad --daemon
innova-cli getinfo
innova-cli listtransactions

# After 15+ confirmations
innova-cli masternode start

# To confirm if the Masternode is running. Masternode status may show PRE-ENABLED for a short period and then should say ENABLED
innova-cli masternode list | grep <Your txid>

# other commands for status
innova-cli masternode status
innova-cli getwalletinfo



Think you could help me out?  I installed all the dependencies, but when I type ./autogen.sh it says

"No such file or directory at /usr/share/autoconf/autom4te/fileUtils.pm line 326
Autoreconf: failed to run aclocal: no such file or directory

Am I doing something wrong?

EDIT:  as noted above, someone else had the same issue and used "apt-get dh-autoreconf" but when I type that it says: "invalid operation autoreconf"

Any help is greatly appreciated
bitfawkes
Sr. Member
****
Offline Offline

Activity: 336
Merit: 250

Would you be willing to buy a sealed bonnet car?


View Profile
November 06, 2017, 02:39:06 PM
 #1288

Hello INNOVA team,

I'm happy to announce that your coin has been listed to ItalYiiMP 2.0 for mining,

to get paid in INN just set c=INN as password in your configuration.

visit italyiimp.com.

best regards.

bitfawkes

Sometimes people who no one imagined could do certain things, those who do things that no one can imagine.
coco23
Hero Member
*****
Offline Offline

Activity: 1974
Merit: 856


View Profile
November 06, 2017, 05:50:47 PM
 #1289

"No such file or directory at /usr/share/autoconf/autom4te/fileUtils.pm line 326
Autoreconf: failed to run aclocal: no such file or directory

Am I doing something wrong?

EDIT:  as noted above, someone else had the same issue and used "apt-get dh-autoreconf" but when I type that it says: "invalid operation autoreconf"

Any help is greatly appreciated
Have you tried: http://ask.xmodulo.com/fix-failed-to-run-aclocal.html
If I remember correctly I had the same error and it was fixed by installing a missing package.
BitcoinStuff (OP)
Sr. Member
****
Offline Offline

Activity: 333
Merit: 250



View Profile
November 06, 2017, 06:01:50 PM
 #1290

Here is how I setup Masternode on Ubuntu VPS. Hope it is helpful

# For Ubuntu 14.04 64-bit VPS. Assumes you have all the latest dependencies installed.
# fyi, I followed vivo linux guide to install dependencies

# download latest code from git
cd ~
git clone https://github.com/innovacoin/innova.git

# Install files
cd ~/innova/
./autogen.sh
./configure --without-gui
make
sudo make install

# start the daemon and let the wallet sync - this may take few minutes. periodically run 'getinfo' command and check 'blocks' parameter.
# That number should be increasing. You can find the current blockcount from block explorer link on page 1
innovad --daemon
innova-cli getinfo

# Get wallet address and masternode private key. Save both keys in a text file for future use
innova-cli getaccountaddress 0
innova-cli masternode genkey
              
# Stop the daemon and edit the .conf file
innova-cli stop
nano ~/.innovacore/innova.conf

# Add the following lines to innova.conf file
masternode=1
masternodeprivkey=<Your Masternode Private Key>

# Restat the daemon. Send exactly 1000 Innova to the wallet address that you saved in the previous step.
# Wait for 15 confirmations. This may take few mintues. Periodically check with 'listtransactions'.
# From 'listtransactions', also find the 'txid' and save it for future use
innovad --daemon
innova-cli getinfo
innova-cli listtransactions

# After 15+ confirmations
innova-cli masternode start

# To confirm if the Masternode is running. Masternode status may show PRE-ENABLED for a short period and then should say ENABLED
innova-cli masternode list | grep <Your txid>

# other commands for status
innova-cli masternode status
innova-cli getwalletinfo



Hi,

I'm getting an error when executing ./autogen.sh;
It's responding this: ./autogen.sh: 9: ./autogen.sh: autoreconf: not found

If anyone can help it's much appreciated

EDIT: solved by executing apt-get dh-autoreconf

Hello. You have to install the dependencies. https://github.com/innovacoin/innova/blob/master/doc/build-unix.md#dependency-build-instructions-ubuntu--debian

kalunomics
Full Member
***
Offline Offline

Activity: 630
Merit: 103



View Profile WWW
November 06, 2017, 06:22:47 PM
 #1291

Been stuck here for 2 days now. Anybody got other new nodes?

mattaero
Jr. Member
*
Offline Offline

Activity: 178
Merit: 2


View Profile
November 06, 2017, 06:36:22 PM
 #1292

Here is how I setup Masternode on Ubuntu VPS. Hope it is helpful

# For Ubuntu 14.04 64-bit VPS. Assumes you have all the latest dependencies installed.
# fyi, I followed vivo linux guide to install dependencies

# download latest code from git
cd ~
git clone https://github.com/innovacoin/innova.git

# Install files
cd ~/innova/
./autogen.sh
./configure --without-gui
make
sudo make install

# start the daemon and let the wallet sync - this may take few minutes. periodically run 'getinfo' command and check 'blocks' parameter.
# That number should be increasing. You can find the current blockcount from block explorer link on page 1
innovad --daemon
innova-cli getinfo

# Get wallet address and masternode private key. Save both keys in a text file for future use
innova-cli getaccountaddress 0
innova-cli masternode genkey
              
# Stop the daemon and edit the .conf file
innova-cli stop
nano ~/.innovacore/innova.conf

# Add the following lines to innova.conf file
masternode=1
masternodeprivkey=<Your Masternode Private Key>

# Restat the daemon. Send exactly 1000 Innova to the wallet address that you saved in the previous step.
# Wait for 15 confirmations. This may take few mintues. Periodically check with 'listtransactions'.
# From 'listtransactions', also find the 'txid' and save it for future use
innovad --daemon
innova-cli getinfo
innova-cli listtransactions

# After 15+ confirmations
innova-cli masternode start

# To confirm if the Masternode is running. Masternode status may show PRE-ENABLED for a short period and then should say ENABLED
innova-cli masternode list | grep <Your txid>

# other commands for status
innova-cli masternode status
innova-cli getwalletinfo



Hi,

I'm getting an error when executing ./autogen.sh;
It's responding this: ./autogen.sh: 9: ./autogen.sh: autoreconf: not found

If anyone can help it's much appreciated

EDIT: solved by executing apt-get dh-autoreconf

Hello. You have to install the dependencies. https://github.com/innovacoin/innova/blob/master/doc/build-unix.md#dependency-build-instructions-ubuntu--debian

Thanks, that got me past that part, but now when I get to this part:  

# Install files
cd ~/innova/
./autogen.sh
./configure --without-gui
make
sudo make install

after I do the ./configure --without-gui everything is fine but then when i  execute "sudo make install" it says "No rule to make target 'install'. Stop."
Clearly I am not super familiar with linux and its probably another dependency, so all the help is certainly appreciated!

EDIT: also, at the end of the ./configure command it says this: "configure: Error: pkg-config not found."  

If that is helpful
hamza987
Full Member
***
Offline Offline

Activity: 448
Merit: 104



View Profile
November 06, 2017, 10:57:30 PM
 #1293

If you are interested in Urdu translation plz tell me as so many members from Pakistan want Urdu translation to be there as well for Ann thread.
finthebar
Full Member
***
Offline Offline

Activity: 210
Merit: 100



View Profile
November 06, 2017, 11:24:55 PM
 #1294

Any updates on Coinmarketcap or Cryptopia. I think the 2 of those would be very helpful at this stage. Most of the other milestones seem to be doing great.
Littledragons
Full Member
***
Offline Offline

Activity: 294
Merit: 102



View Profile
November 07, 2017, 12:56:36 AM
 #1295

I want to buy more INN but the price is so high those days. I will just wait and hope I can have the opportunity to buy 1000 more.

Honestly, I think its not going to go any lower - Seriously on a rocket upwards right now - may want to get on that

T r a x i o n                              TRADE AND EARN DURING PRE-ICO
TRANSITIONS YOU TO A CRYPTO-READY SOCIETY        Pre-Sale starts April 15, 2018
GITHUB     TELEGRAM     MEDIUM     FACEBOOK     TWITTER     REDDIT     YOUTUBE
Brucelats
Sr. Member
****
Offline Offline

Activity: 326
Merit: 250



View Profile
November 07, 2017, 01:43:45 AM
 #1296

Any updates on Coinmarketcap or Cryptopia. I think the 2 of those would be very helpful at this stage. Most of the other milestones seem to be doing great.

I heard they paid fee but that was like a week ago.

Dev, when will we get added? Contact support or ask them on IRC or Discord channel, give us  some info Smiley

niG1y
Newbie
*
Offline Offline

Activity: 28
Merit: 1


View Profile
November 07, 2017, 01:45:35 AM
 #1297

Can any one tell me plz how many coins have been already locked by masternodes at this moment?
BluRixX
Newbie
*
Offline Offline

Activity: 40
Merit: 0


View Profile
November 07, 2017, 01:57:16 AM
 #1298

Can any one tell me plz how many coins have been already locked by masternodes at this moment?

According to mnrank.com right now it's 19.83%
niG1y
Newbie
*
Offline Offline

Activity: 28
Merit: 1


View Profile
November 07, 2017, 02:00:26 AM
 #1299

Can any one tell me plz how many coins have been already locked by masternodes at this moment?

According to mnrank.com right now it's 19.83%

i see, thx, didn't know that site, have marked.
Stripple
Full Member
***
Offline Offline

Activity: 308
Merit: 100


View Profile
November 07, 2017, 09:02:05 AM
 #1300

Any updates on Coinmarketcap or Cryptopia. I think the 2 of those would be very helpful at this stage. Most of the other milestones seem to be doing great.

I heard they paid fee but that was like a week ago.

Dev, when will we get added? Contact support or ask them on IRC or Discord channel, give us  some info Smiley
Ah I keep checking in blockfolio and coinmarketcap, but didn't know the price was so good up until now. Coins are doing pretty well already on the markets that are in the ANN, so it should be getting miles better when it's actually visible on coinmarketcap Smiley

★ ★ ★ ★ ★   DeepOnion    Anonymous and Untraceable Cryptocurrency    TOR INTEGRATED & SECURED   ★ ★ ★ ★ ★
› › › › ›  JOIN THE NEW AIRDROP ✈️        VERIFIED WITH DEEPVAULT  ‹ ‹ ‹ ‹ ‹
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬   ANN  WHITEPAPER  FACEBOOK  TWITTER  YOUTUBE  FORUM   ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
Pages: « 1 ... 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 [65] 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 ... 152 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!