Author

Topic: [XMR] Monero - A secure, private, untraceable cryptocurrency - page 2040. (Read 4671920 times)

newbie
Activity: 28
Merit: 0
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.
legendary
Activity: 2968
Merit: 1198
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.
sr. member
Activity: 294
Merit: 250
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.
newbie
Activity: 37
Merit: 0
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!!
sr. member
Activity: 560
Merit: 250
"Trading Platform of The Future!"
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
newbie
Activity: 37
Merit: 0
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
full member
Activity: 210
Merit: 100
Crypto Currency Supporter
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
member
Activity: 93
Merit: 10
It would be good to place this how to for ubuntu 13.10 in OP   https://bitcointalksearch.org/topic/m.6392978

On the website is an working tutorial for debian-based linux distributions. It's a command line, which downloads and executes a script.
newbie
Activity: 37
Merit: 0
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
legendary
Activity: 2968
Merit: 1198
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
sr. member
Activity: 560
Merit: 250
"Trading Platform of The Future!"
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
newbie
Activity: 37
Merit: 0
It would be good to place this how to for ubuntu 13.10 in OP   https://bitcointalksearch.org/topic/m.6392978

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
sr. member
Activity: 450
Merit: 250
It would be good to place this how to for ubuntu 13.10 in OP   https://bitcointalksearch.org/topic/m.6392978

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
hero member
Activity: 543
Merit: 500
It would be good to place this how to for ubuntu 13.10 in OP   https://bitcointalksearch.org/topic/m.6392978
full member
Activity: 144
Merit: 100
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.
newbie
Activity: 37
Merit: 0
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
legendary
Activity: 1484
Merit: 1005
How use threads with simpleminer ?

I took a quick look at the code I think you just need to run multiple copies. Run it as many times as you want threads. Unless I missed something.



Yeah, multithreading is on the TODO list, but we also hope to have a proper cpuminer fork out soon too.
Jump to: