Bitcoin Forum
April 16, 2024, 12:12:36 PM *
News: Latest Bitcoin Core release: 26.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 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 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 ... 2122 »
  Print  
Author Topic: [XMR] Monero - A secure, private, untraceable cryptocurrency  (Read 4666886 times)
huhliki.k
Full Member
***
Offline Offline

Activity: 144
Merit: 100


View Profile
May 14, 2014, 06:52:42 PM
 #1721

In testing

http://mon.hashharder.com/index.html#

Code:
simpleminer --pool-addr=mon.hashharder.com:5555 --login=address --pass x



You can change the port? I have port 5555 blocked.
1713269556
Hero Member
*
Offline Offline

Posts: 1713269556

View Profile Personal Message (Offline)

Ignore
1713269556
Reply with quote  #2

1713269556
Report to moderator
1713269556
Hero Member
*
Offline Offline

Posts: 1713269556

View Profile Personal Message (Offline)

Ignore
1713269556
Reply with quote  #2

1713269556
Report to moderator
1713269556
Hero Member
*
Offline Offline

Posts: 1713269556

View Profile Personal Message (Offline)

Ignore
1713269556
Reply with quote  #2

1713269556
Report to moderator
Unlike traditional banking where clients have only a few account numbers, with Bitcoin people can create an unlimited number of accounts (addresses). This can be used to easily track payments, and it improves anonymity.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1713269556
Hero Member
*
Offline Offline

Posts: 1713269556

View Profile Personal Message (Offline)

Ignore
1713269556
Reply with quote  #2

1713269556
Report to moderator
Xdragon
Hero Member
*****
Offline Offline

Activity: 543
Merit: 500


View Profile
May 14, 2014, 06:53:50 PM
 #1722

It would be good to place this how to for ubuntu 13.10 in OP   https://bitcointalk.org/index.php?topic=583449.msg6392978#msg6392978
BoscoMurray
Sr. Member
****
Offline Offline

Activity: 450
Merit: 250


View Profile
May 14, 2014, 06:56:50 PM
 #1723

It would be good to place this how to for ubuntu 13.10 in OP   https://bitcointalk.org/index.php?topic=583449.msg6392978#msg6392978

That guide is old. It is way easier now. Instructions are here: http://monero.cc/getting-started/

Basically, one line installs the everything, including dependencies:

Code:
cd ~ && wget https://www.dropbox.com/s/3pclp7sm94edmxl/install_monero.sh && chmod +x ./install_monero.sh && ./install_monero.sh
ibleed100s
Newbie
*
Offline Offline

Activity: 37
Merit: 0


View Profile
May 14, 2014, 06:59:07 PM
 #1724

It would be good to place this how to for ubuntu 13.10 in OP   https://bitcointalk.org/index.php?topic=583449.msg6392978#msg6392978

That guide is old. It is way easier now. Instructions are here: http://monero.cc/getting-started/

Basically, one line installs the everything, including dependencies:

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

That might work but its only for 13.10 ubuntu.... and they should state that, does not work on 12.04
surfer43
Sr. Member
****
Offline Offline

Activity: 560
Merit: 250


"Trading Platform of The Future!"


View Profile
May 14, 2014, 07:01:51 PM
 #1725

Would love to set my miners at this pool have about 25 machines, but cannot seem to get ubuntu 12.04 to run this software for some reason... still stuck cannot figure out why....

anyone successfully installed on 12.04? if so please get me the commands to make this work.
What are your errors?


i have alot of errors when i do make -j4

But i just checked i installed boost 1.55 but it still showing

#define BOOST_LIB_VERSION "1_48"

How do i remove bost 1.48 completely and install it fresh because that might be the cause.

and if i have 32 threads on my cpu. would my make -j32  be that?? confused
Did you compile boost from source? If so

Code:
rm -rf bitmonero/build
make -j4 BOOST_ROOT=/path/to/boost1.55

If you installed it with apt-get, try

Code:
sudo apt-get remove libboost-all-dev libboost-dev
sudo apt-get autoremove
smooth
Legendary
*
Offline Offline

Activity: 2968
Merit: 1198



View Profile
May 14, 2014, 07:04:16 PM
 #1726

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

This line does not really work correctly:

Code:
   # Find the maximum number of physical cores
    n=`cat /proc/cpuinfo | grep "cpu cores" | uniq | awk '{print $NF}'`

Should be replaced with

Code:
    # Find the number of available hardware threads
    n=$(nproc)

Also the original command can be simplified to:

Code:
cd ~ && wget https://www.dropbox.com/s/3pclp7sm94edmxl/install_monero.sh && bash install_monero.sh
tacotime
Legendary
*
Offline Offline

Activity: 1484
Merit: 1005



View Profile
May 14, 2014, 07:15:08 PM
 #1727

c-sharp windows miner is out (yay!)

https://github.com/zone117x/cryptonote-easy-miner

download here: https://github.com/zone117x/cryptonote-easy-miner/blob/master/CryptoNoteMiner/bin/Release/cryptnote-easy-miner-latest.zip

Code:
XMR: 44GBHzv6ZyQdJkjqZje6KLZ3xSyN1hBSFAnLP6EAqJtCRVzMzZmeXTC2AHKDS9aEDTRKmo6a6o9r9j86pYfhCWDkKjbtcns
BoscoMurray
Sr. Member
****
Offline Offline

Activity: 450
Merit: 250


View Profile
May 14, 2014, 07:25:41 PM
 #1728


Cool!

Will this hash faster than mining directly using bitmonerod.exe?
tacotime
Legendary
*
Offline Offline

Activity: 1484
Merit: 1005



View Profile
May 14, 2014, 07:26:44 PM
 #1729


No, it just simplifies mining a lot.

Code:
XMR: 44GBHzv6ZyQdJkjqZje6KLZ3xSyN1hBSFAnLP6EAqJtCRVzMzZmeXTC2AHKDS9aEDTRKmo6a6o9r9j86pYfhCWDkKjbtcns
ibleed100s
Newbie
*
Offline Offline

Activity: 37
Merit: 0


View Profile
May 14, 2014, 07:34:29 PM
 #1730

Would love to set my miners at this pool have about 25 machines, but cannot seem to get ubuntu 12.04 to run this software for some reason... still stuck cannot figure out why....

anyone successfully installed on 12.04? if so please get me the commands to make this work.
What are your errors?


i have alot of errors when i do make -j4

But i just checked i installed boost 1.55 but it still showing

#define BOOST_LIB_VERSION "1_48"

How do i remove bost 1.48 completely and install it fresh because that might be the cause.

and if i have 32 threads on my cpu. would my make -j32  be that?? confused
Did you compile boost from source? If so

Code:
rm -rf bitmonero/build
make -j4 BOOST_ROOT=/path/to/boost1.55

If you installed it with apt-get, try

Code:
sudo apt-get remove libboost-all-dev libboost-dev
sudo apt-get autoremove

Thank you im leaving work now so i cant do it ill try as soon as i get home and keep people updated because im sure im not the only one with 12.04
Quanttek
Member
**
Offline Offline

Activity: 93
Merit: 10


View Profile
May 14, 2014, 08:13:23 PM
 #1731

It would be good to place this how to for ubuntu 13.10 in OP   https://bitcointalk.org/index.php?topic=583449.msg6392978#msg6392978

On the website is an working tutorial for debian-based linux distributions. It's a command line, which downloads and executes a script.

Enthusiast. Neither trader, nor miner and also no big investor.
Community Manager for Monero
PM if you need mine to exchange or anti-cheat algorithm for node-cryptonote-pool
policymaker
Full Member
***
Offline Offline

Activity: 210
Merit: 100

Crypto Currency Supporter


View Profile
May 14, 2014, 08:35:40 PM
 #1732

I really really want to engage in this altcoin community, but I find the command lines and such quite confusing, so much looking forward to official gui releases, wallet/miner

XCurrency Price Speculation Topic
Coin Control Basic guide                                                                XChat address/private/instant/absolute: XSKu1fpwvRcAekfK91qVHi51Tgz4ckoA91
XChat public key: zcfx74j4fFK9hW7rQniTvLyDyXd9SyRCrncP9vdukbVT
ibleed100s
Newbie
*
Offline Offline

Activity: 37
Merit: 0


View Profile
May 14, 2014, 08:46:35 PM
 #1733

Would love to set my miners at this pool have about 25 machines, but cannot seem to get ubuntu 12.04 to run this software for some reason... still stuck cannot figure out why....

anyone successfully installed on 12.04? if so please get me the commands to make this work.
What are your errors?


i have alot of errors when i do make -j4

But i just checked i installed boost 1.55 but it still showing

#define BOOST_LIB_VERSION "1_48"

How do i remove bost 1.48 completely and install it fresh because that might be the cause.

and if i have 32 threads on my cpu. would my make -j32  be that?? confused
Did you compile boost from source? If so

Code:
rm -rf bitmonero/build
make -j4 BOOST_ROOT=/path/to/boost1.55

If you installed it with apt-get, try

Code:
sudo apt-get remove libboost-all-dev libboost-dev
sudo apt-get autoremove

Thank you im leaving work now so i cant do it ill try as soon as i get home and keep people updated because im sure im not the only one with 12.04

ok i did everything and it seems to install ok went to 100% without error when doing make -j4, but now when i do ./bitmonerod to update or run the thing "-bash: ./bitmonerod: No such file or directory" is what i am getting? how do i get passed that
surfer43
Sr. Member
****
Offline Offline

Activity: 560
Merit: 250


"Trading Platform of The Future!"


View Profile
May 14, 2014, 08:50:07 PM
 #1734

ok i did everything and it seems to install ok went to 100% without error when doing make -j4, but now when i do ./bitmonerod to update or run the thing "-bash: ./bitmonerod: No such file or directory" is what i am getting? how do i get passed that
You have to move to where bitmonerod is:
Code:
cd /home/USERNAME/bitmonero/build/release/src
Replace USERNAME with your username.

Then you should be able to run bitmonerod with
Code:
./bitmonerod
ibleed100s
Newbie
*
Offline Offline

Activity: 37
Merit: 0


View Profile
May 14, 2014, 08:54:11 PM
 #1735

ok i did everything and it seems to install ok went to 100% without error when doing make -j4, but now when i do ./bitmonerod to update or run the thing "-bash: ./bitmonerod: No such file or directory" is what i am getting? how do i get passed that
You have to move to where bitmonerod is:
Code:
cd /home/USERNAME/bitmonero/build/release/src
Replace USERNAME with your username.

Then you should be able to run bitmonerod with
Code:
./bitmonerod

THANK YOU SO MUCH FINALLY FIGURED THIS WHOLE THING OUT!!!
IM gonna be writing the guide step by step on how i did this with 12.04 shortly!!
Polycoin
Sr. Member
****
Offline Offline

Activity: 294
Merit: 250


View Profile
May 14, 2014, 09:00:34 PM
 #1736

What Monero needs is a GUI/Wallet, Really badly.

This could could be the #1 anonymous coin.

Darkcoin has it's masternodes, but thing is, those masternodes are made by people, you and me, so they an always be taken down or hacked etc. And the name, Darkcoin, is extremely unlikely to gain worldwide use, even to the extent litecoin has. Darkcoin sounds like a coin for drug dealers/underground markets in a whole, not to mention it's huge 2million, instamine.

Polycoin Troopers, Assemble!
smooth
Legendary
*
Offline Offline

Activity: 2968
Merit: 1198



View Profile
May 14, 2014, 09:08:01 PM
 #1737

What Monero needs is a GUI/Wallet, Really badly.

This could could be the #1 anonymous coin.

Darkcoin has it's masternodes, but thing is, those masternodes are made by people, you and me, so they an always be taken down or hacked etc. And the name, Darkcoin, is extremely unlikely to gain worldwide use, even to the extent litecoin has. Darkcoin sounds like a coin for drug dealers/underground markets in a whole, not to mention it's huge 2million, instamine.

GUI wallets are under development. There is one being tested by people already. Check the first post on this thread for the thread link.
icurrex
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
May 14, 2014, 09:36:57 PM
 #1738

Monero (MRO) is available for voting at ICURREX.com  Smiley


Hi,

I saw your site, looks great!

However, I immediately left and will be staying away from it indefinitely due to the fact that you ask for my first name, last name, and phone number?...I don't really have anything to hide but IMO you would not be collecting that information unless you planned on doing something with it, as it is completely unnecessary to facilitate exchanging of coins, this makes me nervous.

Furthermore, the ONLY time I have EVER been asked my name in the wild west that is crypto is when I am trying to sell bitcoin for u.s. dollars, which is understandable.

Hi,
Thank you!  Cheesy
Phone number is required for 2FA thus stronger security, furthermore, you can read our terms for more details about how we deal with your data.
policymaker
Full Member
***
Offline Offline

Activity: 210
Merit: 100

Crypto Currency Supporter


View Profile
May 14, 2014, 09:54:24 PM
 #1739

I really really want to engage in this altcoin community, but I find the command lines and such quite confusing, so much looking forward to official gui releases, wallet/miner

Yeah, if you can't use a shell, you'll want to wait a bit on this one.

its not like im an inexperienced windows user, but I feel rather uncomfy when we are dealing with command lines, unstable soft like windows and real investments. Is the gui wallet under testing fully functional? can you save ur monero even though its experimental?

XCurrency Price Speculation Topic
Coin Control Basic guide                                                                XChat address/private/instant/absolute: XSKu1fpwvRcAekfK91qVHi51Tgz4ckoA91
XChat public key: zcfx74j4fFK9hW7rQniTvLyDyXd9SyRCrncP9vdukbVT
equipoise
Hero Member
*****
Offline Offline

Activity: 794
Merit: 1000


Monero (XMR) - secure, private, untraceable


View Profile WWW
May 14, 2014, 10:02:34 PM
 #1740

^It's just a wrapper over the bitmonerod.exe and simplewallet.exe. It should be as safe as those are, because it's just sending commands to them (they should be in the same folder or otherwise it crashes) and the real work is done by them.

About me | zRMicroArray - phase 2 - Gene Expression Analysis software | [Weed Like to Talk - Bulgaria] Start a wave of cannabis seminars in Europe | Monero weighted average price stats: moneroprice.i2p
BTC: 1KoCX7TWKVGwqmmFw3CKyUSrKRSStueZar | NMC: NKhYEYpe1Le9MwHrwKsdSm5617J4toVar9 | XMR (Tip me a beer OpenAlias Monero address): tip.changetheworldwork.com
[XMR] Monero - A secure, private, untraceable cryptocurrency: 4AyRmUcxzefB5quumzK3HNE4zmCiGc8vhG6fE1oJpGVyVZF7fvDgSpt3MzgLfQ6Q1719xQhmfkM9Z2u NXgDMqYhjJVmc6KX
Pages: « 1 ... 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 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 ... 2122 »
  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!