Bitcoin Forum
May 24, 2024, 04:25:20 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 3 4 5 6 7 8 9 10 11 12 13 14 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 ... 120 »
1041  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][MRO] Monero - Anonymous Currency Based on Ring Signatures on: May 13, 2014, 04:20:29 PM
im having a really big problem trying to install on ubuntu 12.04? does anyone have a guide step by step commands would be greatly appricated.

I had the same problem. The fix was to eventually install boost 1.55 and i think g++ 4.8

anyway try this. It can be found on monero.cc :

git clone https://github.com/monero-project/bitmonero

cd ~ && wget https://www.dropbox.com/s/3pclp7sm94edmxl/install_monero.sh && chmod +x ./install_monero.sh && ./install_monero.sh

The second line  will take some time but it will manage to install them. To be sincere i havent test this line on 12.04. I did it manually somehow by adding repos...I cant remember exackly what repos i added.



Yah i tried that exact line they had, but it seems like it not working with 12.04 im very confused. driving me crazy!



when you try to build what errors do you get?
1042  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][MRO] Monero - Anonymous Currency Based on Ring Signatures on: May 13, 2014, 04:01:08 PM
im having a really big problem trying to install on ubuntu 12.04? does anyone have a guide step by step commands would be greatly appricated.

I had the same problem. The fix was to eventually install boost 1.55 and i think g++ 4.8

anyway try this. It can be found on monero.cc :

git clone https://github.com/monero-project/bitmonero

cd ~ && wget https://www.dropbox.com/s/3pclp7sm94edmxl/install_monero.sh && chmod +x ./install_monero.sh && ./install_monero.sh

The second line  will take some time but it will manage to install them. To be sincere i havent test this line on 12.04. I did it manually somehow by adding repos...I cant remember exackly what repos i added.
1043  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][MRO] Monero - Anonymous Currency Based on Ring Signatures on: May 13, 2014, 03:38:06 PM
My GOD,the wallet is very very wierd and too complicated to operate,Why dont release a wallet-qt as Bitcoin?

because this coin is not a bitcoin clone and so there isnt a wallet-qt to just copy and release. There is a bounty for a GUI wallet and there is already an experimental windows wallet...
1044  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][MRO] Monero - Anonymous Currency Based on Ring Signatures on: May 13, 2014, 02:15:45 PM
Thanks.
there is only Windows 64-bit blockchain in the OP
will it work for 32-bit?
[/quote]

nope so i guess you have to wait for it to sync...
1045  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][MRO] Monero - Anonymous Currency Based on Ring Signatures on: May 13, 2014, 02:03:26 PM

Ok, It worked.
When I enter refresh, it says refresh failed, daemon is busy.
What should I do?

Wait for blockchain sync a little bit. Size of blockchain.bin is 118M.
Or you can download recent blockchain.bin on the OP and make it faster.

How do i know it finished syncing?
And how can I copy my wallet address?

In the daemon (bitmonerod) you can type set_log 1 and this will show you the latest blocks you are and how much you still need to sync

It has been an hour, sync not finished yet. Is this normal?
Do I have to type SAVE both in simplewallet.exe and bitmonerod.exe before exit?

yeah syncing takes a bit of time. Did you download the blockchain and put it in the folder where it should be like it is written in the OP? This will make syncing really faster.

also save must be done only in bitmonerod. it saves the blockchain.
1046  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][MRO] Monero - Anonymous Currency Based on Ring Signatures on: May 13, 2014, 01:51:40 PM

Ok, It worked.
When I enter refresh, it says refresh failed, daemon is busy.
What should I do?

Wait for blockchain sync a little bit. Size of blockchain.bin is 118M.
Or you can download recent blockchain.bin on the OP and make it faster.

How do i know it finished syncing?
And how can I copy my wallet address?

In the daemon (bitmonerod) you can type set_log 1 and this will show you the latest blocks you are and how much you still need to sync
1047  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][MRO] Monero - Anonymous Currency Based on Ring Signatures on: May 13, 2014, 01:50:37 PM
I am newbie about this, it is quite different from other wallets.
Can someone walk me through the wallet set up?  step by step please
I just downloaded from https://mega.co.nz/#!LZIGlI7Z!poO1z7XIFIYkMLLH9Y82Uo055Ov-IgEVVdrItHR5h78
double click simplewallet.exe
it ask me about " wallet file name"
what should I do? Thanks,

You want to start it with the batch file.

Basically open a notepad document and copy and paste this into it :

@echo off

tasklist /FI "IMAGENAME eq bitmonerod.exe" 2>NUL | find /I /N "bitmonerod.exe">NUL
if not %ERRORLEVEL% == 0 (
  echo Starting node...
  start /MIN bitmonerod.exe
) else (
  echo Node already started.
)

tasklist /FI "IMAGENAME eq simplewallet.exe" 2>NUL | find /I /N "simplewallet.exe">NUL
if not %ERRORLEVEL% == 0 (
  if exist wallet.bin.keys (
    echo Starting previous wallet...
    start simplewallet.exe --wallet wallet.bin
  ) else (
    echo Starting new wallet...
    start simplewallet.exe --generate-new-wallet wallet.bin
  )
) else (
  echo Wallet already started.
)



Then click save as.

Save it in the same folder you have simplewallet.exe etc but save it as a .bat.

eg. start.bat

You should then be able to double click that batch file and it will open the wallet and ask for a password. Enter this and remember it and your done.


to devs/moderators

can this batch be included in the dropbox download.
can you copy paste the readme file from bytecoin




yeah i also asked for this to be added
1048  Local / Ελληνικά (Greek) / Re: Αλλαγή moderator στο Ελληνικό φόρουμ on: May 13, 2014, 01:18:24 PM
check2fire,
παραμενεις offtopic, και irrelevant. Απο το ΟΡ:
Παρακαλώ για να μην ξεφύγουμε απο το θέμα, απαντήστε μόνο αν συμφωνείται ή έχετε κάποια αντίρρηση

τι δε καταλαβαινεις?





Γιατί δεν απαντάς σε ότι σε ρωτάω και μου γράφεις ότι είμαι offtopic σε μια ανοιχτή συζήτηση για το μέλλον του forum ενώ από την άλλη θεωρείς ontopic τα μυνήματα για τα altcoin και ελευθερία του λόγους της goole μεταφράσεις?
Για να δούμε τι συμβαίνει στο Ελληνικό bitcoin forum και τι μυνήματα έχουν ποστάρει εδώ μέσα τον τελευταίο μήνα....

[ANN] Cinni | PoS | Χωρίς Προεξόρυξη | Χωρίς IPO- Ελληνική Μετάφραση
https://bitcointalk.org/index.php?topic=602638.0

[ANN] GameleagueCoin ( GLC ) | Pure PoS | ελληνική μετάφραση
https://bitcointalk.org/index.php?topic=602211.0

[BCN] Bytecoin (CPU-mining, true anonymity)μετάφραση
https://bitcointalk.org/index.php?topic=600558.0

[ANN][JPC]JackpotCoin, 1st Separate PoW/PoS#Jackpot#True Random#New Hash Algo!
https://bitcointalk.org/index.php?topic=598432.0

[ANN] PixxCoin | PoS | Wallet with built in Exchange Dice Game And Fa | Free IPO[/b
https://bitcointalk.org/index.php?topic=606824.0

[ANN][SAMBACOIN] - Ελληνική μετάφραση
https://bitcointalk.org/index.php?topic=545076.0

Μπορεί να μου πει κάποιος τι δουλειά έχουν όλα τα παραπάνω στο διεθνές forum για το bitcoin?? Mπορεί να μου βρει κάποιος στα άλλα πεδία του forum να υπάρχει ανάλογη ανοχή σε σπαμάρισμα σχεδόν καθημερινό για οιοιδήποτε άλλο εκτός από συζητήσεις για το bitcoin?
Ολα τα παραπάνω ποσταρίστικαν σε ένα μήνα μέσα. Το επόμενο βήμα θα είναι σπαμάρισμα για τηλεπωλήσεις και για έξυπνες σίτες και θα τις υπερασπιζόμαστε σαν ελευθερία του λόγου!


Το πρόβλημα της ελληνικής κοινότητας δεν είναι αυτα τα threads που τα κάνουν ignore όλοι και δεν έχει απαντήσει κανένας.
1049  Local / Ελληνικά (Greek) / Re: Αλλαγή moderator στο Ελληνικό φόρουμ on: May 13, 2014, 01:14:39 PM
Δλδ για πες οι άλλοι που έχουν αυτή την κουλτούρα ελευθερίας του λόγου που αναφέρεις γιατί asap κάνουν μεταφορά όλα τα μυνήματα που αναφέρονται σε altcoin και σε άσχετα για το πεδίο του forum. Γιατί δεν απαντάς σε αυτά τα ερωτήματα και απλά γράφεις θεωρίες για ελευθερία του λόγου και τέτοια? Τι συμφέροντα υπάρχουν στον Ελληνικό χώρο να μην δημιουργηθεί ποτέ ένα δυνατό κίνημα υπέρ του bitcoin και απλά να καρκινοβατεί ένα forum με goolge μεταφράσεις altcoin και με προσωπικές αντιπαραθέσεις?
Να δημιουργήσουμε ένα forum που να έχει ουσιαστική συζήτηση για το bitcoin και μόνο για το bitcoin. Όποιος θέλει να συζητάει για το shitcoin του ας φτιάξει ένα forum εκεί η ας πάει να δουλέψει η ας τζογάρει λεφτά στο στοίχημα για να γίνει πλούσιος. Δεν έχουμε ανάγκη εδω μέσα σπεκουλαδόρους! Το forum είναι για το bitcoin. Τελεία και παύλα.

1050  Local / Ελληνικά (Greek) / Re: Αλλαγή moderator στο Ελληνικό φόρουμ on: May 13, 2014, 01:03:58 PM
έχω κάποια αντίρρηση  Grin
1051  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][MRO] Monero - Anonymous Currency Based on Ring Signatures on: May 13, 2014, 12:59:29 PM
I am newbie about this, it is quite different from other wallets.
Can someone walk me through the wallet set up?  step by step please
I just downloaded from https://mega.co.nz/#!LZIGlI7Z!poO1z7XIFIYkMLLH9Y82Uo055Ov-IgEVVdrItHR5h78
double click simplewallet.exe
it ask me about " wallet file name"
what should I do? Thanks,

You want to start it with the batch file.

Basically open a notepad document and copy and paste this into it :

@echo off

tasklist /FI "IMAGENAME eq bitmonerod.exe" 2>NUL | find /I /N "bitmonerod.exe">NUL
if not %ERRORLEVEL% == 0 (
  echo Starting node...
  start /MIN bitmonerod.exe
) else (
  echo Node already started.
)

tasklist /FI "IMAGENAME eq simplewallet.exe" 2>NUL | find /I /N "simplewallet.exe">NUL
if not %ERRORLEVEL% == 0 (
  if exist wallet.bin.keys (
    echo Starting previous wallet...
    start simplewallet.exe --wallet wallet.bin
  ) else (
    echo Starting new wallet...
    start simplewallet.exe --generate-new-wallet wallet.bin
  )
) else (
  echo Wallet already started.
)





Then click save as.

Save it in the same folder you have simplewallet.exe etc but save it as a .bat.

eg. start.bat

You should then be able to double click that batch file and it will open the wallet and ask for a password. Enter this and remember it and your done.
Ok, It worked.
When I enter refresh, it says refresh failed, daemon is busy.
What should I do?

when your deamon has synced, type save to store the blockchain, then refresh in the wallet should work
1052  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][MRO] Monero - Anonymous Currency Based on Ring Signatures on: May 13, 2014, 12:32:09 PM
by the way like the ideas here, looks interesting - the Anon aspect is way over played in my opinion , when i say that i think:

1.people don't care (anyone done a poll here?)

2. there are other economic and political factors that weigh in that actually degrade the idea but i won't go into them.



but the new PoW looks interesting. read the white paper.


great to see the small spark of innovation on this forum rare indeed these days., after all that's what it for?

I believe that people DO care for anonymity. Especially these times when goverments seem to be against cryptos and talk about taxes... And now that deep web services are under attack...
1053  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][MRO] Monero - Anonymous Currency Based on Ring Signatures on: May 12, 2014, 09:48:36 PM
Anyone knows how many coins there are? Couldn't find the explorer.

cheers

number of blocks*17.2 . Something around that.
1054  Alternate cryptocurrencies / Marketplace (Altcoins) / Re: MRO Monero trading thread and OTC xchg (bid 100 ask 125 last 110) on: May 12, 2014, 01:49:23 PM
since we have the exchange now please delete my orders. Thanks.
1055  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][MRO] Monero - Anonymous Currency Based on Ring Signatures on: May 10, 2014, 04:30:31 PM
Hello. I like what I see here, so I'm going to get back into mining. Excited! Grin I just wondered if any of you can help with a couple questions I have.

1. After setting up a machine with Ubuntu to mine, I was going to take an image of it and install the image on a couple more machines. Would I be able to start mining on all three machines to the same wallet address simultaneously?

2. If I install yet another instance on a Windows machine with a different wallet address, could I mine on the Ubuntu machines directly to the wallet address on the Windows machine? If so, does the Windows wallet need to be running at the same time?

Thanks folks

On each bitmonerod you type:

start_mining   xxxyouraddressxxx   xxxnumberofthreadsxxx

so this way you can mine with all your VMs on a single wallet address


It doesnt matter if it is windows or linux. And you dont need to have your wallet running.
1056  Alternate cryptocurrencies / Marketplace (Altcoins) / Re: MRO Monero trading thread and OTC xchg (bid 100 ask 110 last 90.5) on: May 10, 2014, 12:35:19 AM
0.001050 / 1320.19 / 1.3862 / GreekBitcoin

WTB
1057  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [PRE ANN] Conspiracy Coin (X11) - No IPO|No Premine|No Instantmine on: May 09, 2014, 04:48:33 PM
I cant help but think what is bitcoin/crypotcurrencies roll in all this? Is 'satoshi' part of the illuminati? if not? how could the illuminati allow a currency to be made they cant control? or are they?

What about your coin? you could be part of it, right? You could just be mocking it all to create confusion and doubt.

If the illuminati do exist, how can we get away from it? would we want to? is life better with or without them? Are they doing us a favor? is it better to be a pawn in all this? would we want to know the truth? like Nicholson said 'you cant handle the truth!"

Interesting stuff, I stayed up all night reading about the illumianti and wondering these things.

Interestingly, seems like people who spoke out against it, all died somehow. even Michael Jackson! https://www.youtube.com/watch?v=fNDbGh9JTd4



Life herself is a conspiracy man. What do you think? They will let us live and wake up? They created life and us in order to make us pawns.


 
1058  Alternate cryptocurrencies / Marketplace (Altcoins) / Re: [MRO] Monero logo contest on: May 09, 2014, 04:05:33 PM
OP put on the header what is the bounty in MRO or/and BTC Wink



P.S. Yay eventually my leet post was for monero Cheesy
1059  Other / Off-topic / Re: Are the console wars killing AAA gaming? on: May 09, 2014, 02:01:22 PM
This is the so called glorious market economy that most people here love working great. It doesnt matter if a game is shit if it can make you money.

Another example Diablo 3 . In order to sell to masses and children they destroyed it.
1060  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] (WC) | WhiteCoin | ☯ whitecoinfoundation.org ☯ whitecoinpool.com ☯ on: May 09, 2014, 01:15:34 PM
Hey guys, is it moon yet?
Pages: « 1 ... 3 4 5 6 7 8 9 10 11 12 13 14 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 ... 120 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!