Author

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

newbie
Activity: 41
Merit: 0
Is this coin still CPU mineable?
And if it is, how do I go about it?
Many thanks  Cheesy

yes it is.

Have a look at [XMR] Monero Mining https://bitcointalksearch.org/topic/xmr-monero-mining-653467 for more info.
full member
Activity: 154
Merit: 100
Bitcoin Samurai
Is this coin still CPU mineable?
And if it is, how do I go about it?
Many thanks  Cheesy
legendary
Activity: 1260
Merit: 1008

I'm at the last step, but getting a ./minerd: command not found Huh

I'm in the same directory though, and I (thought) it was set up and ready to go...I mean I've used the same program, in the same VM before...

Any ideas?  Thanks in advance...

In all probability there was an error and it didn't finish compiling the miner. Do make again and take note of any errors.

EDIT: Or you are not inside cpuminer-multi/ directory...

Thanks for the response -

I'm receiving this error:

Code:
Makefile.am:12: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')

Any ideas what's causing this?  Or anything I can do to solve it?  I'm not too familiar with the purpose of FLAGS

did you try running it anyway?

i think i've encountered that error and it still runs.

then again, ima noobish. I wear noobilific jibbers on me jammer jobbers
hero member
Activity: 714
Merit: 500

I'm at the last step, but getting a ./minerd: command not found Huh

I'm in the same directory though, and I (thought) it was set up and ready to go...I mean I've used the same program, in the same VM before...

Any ideas?  Thanks in advance...

In all probability there was an error and it didn't finish compiling the miner. Do make again and take note of any errors.

EDIT: Or you are not inside cpuminer-multi/ directory...

Thanks for the response -

I'm receiving this error:

Code:
Makefile.am:12: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')

Any ideas what's causing this?  Or anything I can do to solve it?  I'm not too familiar with the purpose of FLAGS
hero member
Activity: 649
Merit: 500

I'm at the last step, but getting a ./minerd: command not found Huh

I'm in the same directory though, and I (thought) it was set up and ready to go...I mean I've used the same program, in the same VM before...

Any ideas?  Thanks in advance...

In all probability there was an error and it didn't finish compiling the miner. Do make again and take note of any errors.

EDIT: Or you are not inside cpuminer-multi/ directory...
sr. member
Activity: 478
Merit: 250
Smooth, you've received a solid commendation from Anonymint  Grin

Smooth is the most astute programmer in altcoins that I have had discussions with.

It seems to me that Monero has the best team of any altcoin.

Impressive!
hero member
Activity: 714
Merit: 500
Hi guys,

Does anyone know of a (up to date) walkthrough for setting up Monero mining, through a VPS?  I have two VMs (google and amazon) running Ubuntu, if that helps. I just can't find any guides that still work 100%....

I appreciate any help - thanks in advance..

(i've set up miners for other coins before, I'm just not that familiar with XMR yet)

Here are the commands to get Wolf0's CPU miner going in Ubuntu 14.X:

Code:
sudo apt-get update;sudo apt-get install screen;sudo apt-get install git;sudo apt-get install build-essential;sudo apt-get install pkg-config;sudo apt-get install libcurl4-openssl-dev;sudo apt-get install automake

wget http://curl.haxx.se/download/curl-7.34.0.tar.gz;tar -xvf curl-7.34.0.tar.gz;cd curl-7.34.0/;./configure --disable-shared --enable-static;make -j 4;sudo make install;cd ..

git clone https://github.com/wolf9466/cpuminer-multi;cd cpuminer-multi;./autogen.sh;./configure;make -j 4

The above will get the miner software installed.

Then set hugepages to 3X the number of cores, so 24 in a case of a CPU with 8 cores mining.

Code:
sudo sysctl -w vm.nr_hugepages=24;

SCREEN for allowing you to disconnect, yet leave the miner hashing:

Code:
screen -t m1n3r 

Finally, the command-line to start mining, where is yours and X = # of cores.

Code:
sudo ./minerd -a cryptonight -o stratum+tcp://[Monero_Mining_Pool_of_Choice] -u  -p x -t X

Then CTRL+A and then press 'D' to disconnect from that session, leaving the mining active.

I'm at the last step, but getting a ./minerd: command not found Huh

I'm in the same directory though, and I (thought) it was set up and ready to go...I mean I've used the same program, in the same VM before...

Any ideas?  Thanks in advance...
sr. member
Activity: 337
Merit: 250
I just let all my Twitter followers know that I now support Monero!

with #Monero and xmr.to you can pay any #bitcoin address today! #fungibility #privacy

Welcome to the fold.  Wink
legendary
Activity: 2968
Merit: 1198
sudo sysctl -w vm.nr_hugepages=24;

Bear in mind this setting won't "stick" across reboots. You'll have to redo it after every reboot or edit your config files (depends on distro but often something like /etc/sysctl.conf)
hero member
Activity: 714
Merit: 500

Here are the commands to get Wolf0's CPU miner going in Ubuntu 14.X:

Code:
sudo apt-get update;sudo apt-get install screen;sudo apt-get install git;sudo apt-get install build-essential;sudo apt-get install pkg-config;sudo apt-get install libcurl4-openssl-dev;sudo apt-get install automake

wget http://curl.haxx.se/download/curl-7.34.0.tar.gz;tar -xvf curl-7.34.0.tar.gz;cd curl-7.34.0/;./configure --disable-shared --enable-static;make -j 4;sudo make install;cd ..

git clone https://github.com/wolf9466/cpuminer-multi;cd cpuminer-multi;./autogen.sh;./configure;make -j 4

The above will get the miner software installed.

Then set hugepages to 3X the number of cores, so 24 in a case of a CPU with 8 cores mining.

Code:
sudo sysctl -w vm.nr_hugepages=24;

SCREEN for allowing you to disconnect, yet leave the miner hashing:

Code:
screen -t m1n3r 

Finally, the command-line to start mining, where is yours and X = # of cores.

Code:
sudo ./minerd -a cryptonight -o stratum+tcp://[Monero_Mining_Pool_of_Choice] -u  -p x -t X

Then CTRL+A and then press 'D' to disconnect from that session, leaving the mining active.

Thank you so much!  I'll try this out now, and let you know how it goes Grin

Again, appreciate the help!
hero member
Activity: 644
Merit: 502
Hi guys,

Does anyone know of a (up to date) walkthrough for setting up Monero mining, through a VPS?  I have two VMs (google and amazon) running Ubuntu, if that helps. I just can't find any guides that still work 100%....

I appreciate any help - thanks in advance..

(i've set up miners for other coins before, I'm just not that familiar with XMR yet)

Here are the commands to get Wolf0's CPU miner going in Ubuntu 14.X:

Code:
sudo apt-get update;sudo apt-get install screen;sudo apt-get install git;sudo apt-get install build-essential;sudo apt-get install pkg-config;sudo apt-get install libcurl4-openssl-dev;sudo apt-get install automake

wget http://curl.haxx.se/download/curl-7.34.0.tar.gz;tar -xvf curl-7.34.0.tar.gz;cd curl-7.34.0/;./configure --disable-shared --enable-static;make -j 4;sudo make install;cd ..

git clone https://github.com/wolf9466/cpuminer-multi;cd cpuminer-multi;./autogen.sh;./configure;make -j 4

The above will get the miner software installed.

Then set hugepages to 3X the number of cores, so 24 in a case of a CPU with 8 cores mining.

Code:
sudo sysctl -w vm.nr_hugepages=24;

SCREEN for allowing you to disconnect, yet leave the miner hashing:

Code:
screen -t m1n3r 

Finally, the command-line to start mining, where is yours and X = # of cores.

Code:
sudo ./minerd -a cryptonight -o stratum+tcp://[Monero_Mining_Pool_of_Choice] -u  -p x -t X

Then CTRL+A and then press 'D' to disconnect from that session, leaving the mining active.
full member
Activity: 158
Merit: 100
I just let all my Twitter followers know that I now support Monero!

with #Monero and xmr.to you can pay any #bitcoin address today! #fungibility #privacy
newbie
Activity: 22
Merit: 0
what do u guys recommend to mine with 6900 7900 and r9 series gpus ? is monero the most profitable ?
legendary
Activity: 2968
Merit: 1198
Has Monera a asset exchange or crowdfunding platform like some other crypto coins have were I can invest in Monera related projects?

It is in development as a feature of the Monero forum: http://forum.getmonero.org
hero member
Activity: 714
Merit: 500
Hi guys,

Does anyone know of a (up to date) walkthrough for setting up Monero mining, through a VPS?  I have two VMs (google and amazon) running Ubuntu, if that helps. I just can't find any guides that still work 100%....

I appreciate any help - thanks in advance..

(i've set up miners for other coins before, I'm just not that familiar with XMR yet)
legendary
Activity: 1260
Merit: 1008
Has Monera a asset exchange or crowdfunding platform like some other crypto coins have were I can invest in Monera related projects?

You can donate to core development directly.

The core devs are working on something in the getmonero.org forums along this line, where you can directly fund specific projects.

As it exists now, the getmonero.org forums have an area where people can post projects they are working on and ask for funding.
sr. member
Activity: 453
Merit: 500
hello world
Hi All,

on my macbook, yosemite, 10.10.3, with monero 0.8.8.6 after some days running it 24/7 i get:

Code:
[1431007782] libunbound[3218:0] error: can't create socket: Too many open files

maybe its allready known, maybe not, just wanted to share
tyz
legendary
Activity: 3360
Merit: 1533
Has Monera a asset exchange or crowdfunding platform like some other crypto coins have were I can invest in Monera related projects?
legendary
Activity: 2268
Merit: 1141
Smooth, you've received a solid commendation from Anonymint  Grin

Smooth is the most astute programmer in altcoins that I have had discussions with.

It seems to me that Monero has the best team of any altcoin.

The whole post is crosspost worthy in my opinion:

8. I have been a "silver bug" in a sense that I regarded it as a great investment and was overweight, in 2006-2013, then I was a Bitcoin bug for a short time, and now have been a Monero bug, because it now holds the same promise that the previous ones did earlier. (Monero is so cheap that I am not even much weighted, because the potential upside is so great.) Both silver and bitcoin are now relegated to wealth preservation roles in my thinking, both still having the potential of large upside though.

9. I have never been a gold bug but have occasionally owned some gold.

10. Neither a lender nor a borrower be. Knowledge economy does not have a place for debt (obligation to pay a fixed sum regardless of the outcome of the venture) in it. Crowdfunding in all forms is the way to go.

11. The role of financial capital is to enable the most effective use of knowledge capital, and even before Bitcoin was invented, my productivity has not much been hampered by the lack of financial capital. I am content with the amount that I have, and in the long term more is probably coming when one of my current or future long-shots matures. The excess I have keenly donated to charitable purposes, although finding worthy recipients is difficult.

12. The theses do not consider the "industrial-age" situations where pooling of massive resources under a centralized command was necessary. Some projects still have these attributes, but most of them could already be reorganized, power politics are hindering the progress.

Risto the entire post was excellent. I thought maybe we were further apart in our thinking, but on the surface of that post it seems we are close to total agreement. Perhaps you've made some changes in your thinking lately?

My quibble is going to be on the fact that silver and Bitcoin are not anonymous[1] and aren't you at all concerned about shielding wealth from socialism deathstar expropriation?

And my other quibble remains that you are not technically qualified to know whether Monero is sufficient to be the big winner. I strongly suggest you need to be more diversified in altcoins if you want to hit the jackpot. One day you are going to learn that in this area (just like you learned on the castle which I warned you was under threat from Russia), my capabilities in some cases exceed aminorex and others you may rely on for technical appraisals (and theirs exceed mine in other cases). Smooth has outsmarted me at times and to the extent he can be objective (considering his close association to Monero) then I would advise trusting his appraisals of any technical writings I make. Aminorex is very smart, but he appears to me to be more of a math guy than a programmer (although my interaction with him is minimal). Smooth is the most astute programmer in altcoins that I have had discussions with. Perhaps there are others but I haven't been able to engage them in productive discussion (e.g. fluffyponey, tacotime, etc).

However, I will admit I don't know of any other altcoins that have sufficient feature sets and ecosystem that give them a better shot than Monero, at least in the anonymity focused subset of altcoins. So in that case I would have to agree with you on the Monero bet up to this point in time. I must mea culpa that I haven't been following altcoins much lately, and I don't know whats up with latest on Nxt, jl777's work, Boolberry, Dogecoin, etc.. I don't even load the coinmarketcap any more.

I am cognizant that you may become complacent/overconfident and miss something. Well I guess it never hurt you to be late and miss the IPO. You missed it for both Monero and Bitcoin. So perhaps it isn't your role to be one of the earliest adopters. And thus I should not be focusing my energy on trying to explain any technical innovation too early in the development cycle. Ditto OROBTC and others. You all can't understand. You all come in much later after the technical experts have already jumped on board. In short, you all must be followers because you don't have the first hand technical acumen.

[1] Anonymity with Bitcoin is is riddled with potential pitfalls. IP anonymity is tricky for any crypto-coin, and Bitcoin doesn't have onchain anonymity. Upthread I already made the case that physical metals will not be anonymous.

EDIT: For whom it was not clear yet, TPTD_need_war = AnonyMint
hero member
Activity: 509
Merit: 500
Just tried the latest version of CCminer with a nvidia 980 GPU. I'm getting ~400H/s mining XMR on a pool.
Does this sound about right? Is there a spreadsheet or something online which breaks down hashing speeds?
Jump to: