Author Topic: mmcpool.com - CLOUD MINING GUIDE!  (Read 19100 times)

0 Members and 1 Guest are viewing this topic.

Offline markj113

  • Full Member
  • ***
  • Posts: 53
    • View Profile
just got it working on Digital Ocean,

sudo apt-get update
sudo apt-get install -y git make g++ build-essential libminiupnpc-dev libdb++-dev libgmp-dev libssl-dev dos2unix libboost-all-dev autoconf libcurl4-openssl-dev
git clone https://github.com/glitchman/mmcminer
cd mmcminer
./autogen.sh
CFLAGS="-O3 -march=native -mtune=native" CXXFLAGS="-O3 -march=native -mtune=native" ./configure
./configure CFLAGS="-O3"
make
./minerd --url http://work.mmcpool.com --user MBkvFREysoX9Fc8nbhHy9bSiNawhmgChB2 --threads 8

Offline Firefly

  • Newbie
  • *
  • Posts: 13
    • View Profile
[11:18:36] 8 miner threads started, using MMC Momentum Proof-of-Work algorithm.
Illegal instruction (core dumped)


with Amazon EC2 c3x2.large

I got this error at one point installing with ubuntu 13.10

make sure you get all the dependencies!

Code: [Select]
sudo apt-get install -y make gcc m4 automake libevent-dev zlibc zlib1g-dev libjansson-dev libcurl4-openssl-dev git autoconf g++

That didn't help. What instance did you choose?
« Last Edit: December 26, 2013, 12:43:44 pm by Firefly »

Offline jpeggt

  • Newbie
  • *
  • Posts: 15
    • View Profile
[11:18:36] 8 miner threads started, using MMC Momentum Proof-of-Work algorithm.
Illegal instruction (core dumped)


with Amazon EC2 c3x2.large

I got this error at one point installing with ubuntu 13.10

make sure you get all the dependencies!

Code: [Select]
sudo apt-get install -y make gcc m4 automake libevent-dev zlibc zlib1g-dev libjansson-dev libcurl4-openssl-dev git autoconf g++

Offline Firefly

  • Newbie
  • *
  • Posts: 13
    • View Profile
[11:18:36] 8 miner threads started, using MMC Momentum Proof-of-Work algorithm.
Illegal instruction (core dumped)


with Amazon EC2 c3x2.large

P.S.
~/miner/mmcminer$ ./run.sh
[11:34:58] 8 miner threads started, using MMC Momentum Proof-of-Work algorithm.
./run.sh: line 2:  5481 Illegal instruction     (core dumped) ./minerd --url http://work.mmcpool.com --user <here was my wallet address> --threads 8
« Last Edit: December 26, 2013, 11:38:05 am by Firefly »

Offline kbhutto

  • Jr. Member
  • **
  • Posts: 27
    • View Profile
Ubuntu 13.10 x64........DigitalOcean Droplet

After I pasted above code (with appropriate core values) and pressed Enter after all done, I am getting following error:

"/usr/local/mmcminer# nohup: ignoring input and appending output to ‘nohup.out’"

then it just stops there and if I press any key, it goes back to command prompt.

I am new to Linux...........help will be appreciated.

EDIT:
If I run directly run minerd........then I am getting following error:

"[05:52:45] 2 miner threads started, using MMC Momentum Proof-of-Work algorithm.
Segmentation fault (core dumped)"
« Last Edit: December 26, 2013, 10:54:46 am by kbhutto »

Offline itsik78

  • Sr. Member
  • ****
  • Posts: 297
    • View Profile
Using Digital Ocean,

tried Ubuntu 13.10 X64 and Fedora 19 X64
Ubuntu 13.10 X64 Should be fine...
No idea why you're seeing this, sorry.

Offline markj113

  • Full Member
  • ***
  • Posts: 53
    • View Profile
Using Digital Ocean,

tried Ubuntu 13.10 X64 and Fedora 19 X64

Offline itsik78

  • Sr. Member
  • ****
  • Posts: 297
    • View Profile
I get as far as -

./configure CFLAGS="-O3"

"error c compiler cannot create executables"

make

"No targets specified and no makefile found. Stop"
What's the linux version?

Offline markj113

  • Full Member
  • ***
  • Posts: 53
    • View Profile
I get as far as -

./configure CFLAGS="-O3"

"error c compiler cannot create executables"

make

"No targets specified and no makefile found. Stop"

Offline markzookerburg

  • Full Member
  • ***
  • Posts: 100
    • View Profile
It didnt work for me on aws for some strange reason

Offline itsik78

  • Sr. Member
  • ****
  • Posts: 297
    • View Profile
A clear guide, however mmcpool is not the same as xpool. Your posting stats from a different pool then you used in the urls.
Whoops!
Copy+Paste error :)
Thanks for noticing.
Edited

Offline arcke

  • Full Member
  • ***
  • Posts: 115
    • View Profile
    • Diaspora
A clear guide, however mmcpool is not the same as xpool. Your posting stats from a different pool then you used in the urls.
OpenPGP: 0x22d7e9cc35375665
PTS - PawnbhoiXhmkrKJEPAsCiwkpP81nRXJGTD
Diaspora profile - https://pod.orkz.net/u/arcke

Offline itsik78

  • Sr. Member
  • ****
  • Posts: 297
    • View Profile
Digital Ocean:
https://www.digitalocean.com/?refcode=be0ca471004c
(Please use my ref code - it won't hurt your earnings :)  Thanks)

1. Create a droplet with as many cores as you want
2. Run this:
Code: [Select]
apt-get update
apt-get install -y make gcc m4 automake libevent-dev zlibc zlib1g-dev libjansson-dev libcurl4-openssl-dev git autoconf g++
cd /usr/local/
git clone https://github.com/glitchman/mmcminer
cd mmcminer
./autogen.sh
./configure CFLAGS="-O3"
make
echo '#! /bin/bash' > run.sh
echo 'while true; do ./minerd --url http://work.mmcpool.com --user MQdsjzu6KMgqzMAZ7xhmiRbyzTukGcrDPN --threads 32; sleep 1; done' >> run.sh
chmod +x run.sh
nohup ./run.sh &

(Change the wallet address and --threads to the number of cores the machine has).

AMAZON EC2:
1. Choose Ubuntu 13.10 and choose your server (note the number of CPUs)
2. Under Advanced Details -> User Data (leave "As text" marked)
Code: [Select]
#! /bin/bash
apt-get install -y make gcc m4 automake libevent-dev zlibc zlib1g-dev libjansson-dev libcurl4-openssl-dev git autoconf g++
cd /usr/local/
git clone https://github.com/glitchman/mmcminer
cd mmcminer
./autogen.sh
./configure CFLAGS="-O3"
make
echo '#! /bin/bash' > run.sh
echo 'while true; do ./minerd --url http://work.mmcpool.com --user MQdsjzu6KMgqzMAZ7xhmiRbyzTukGcrDPN --threads 32; sleep 1; done' >> run.sh
chmod +x run.sh
nohup ./run.sh &
[/code]

(Change the wallet address and --threads to the number of cores the machine has).

That's it!
You're all set to go.

If I helped, feel free to tip me:
MMC: MQdsjzu6KMgqzMAZ7xhmiRbyzTukGcrDPN


Want to see that it actually works? Here's the link for my account on mmcpool:
http://mmcpool.com/user?wallet=MQdsjzu6KMgqzMAZ7xhmiRbyzTukGcrDPN
Have fun
« Last Edit: January 24, 2014, 10:56:26 am by itsik78 »