Author

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

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.
legendary
Activity: 2968
Merit: 1198
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.

full member
Activity: 126
Merit: 101
For those who prefer to MM MRO with FCN udated binaries are available at bitmonero.org
Inability of donor network coins transferring was fixed.
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?
Jump to: