Author

Topic: [ANN] [XMG] MAGI | CPU mining | mPoW | mPoS | [MagiPay] - page 892. (Read 2375939 times)

hero member
Activity: 714
Merit: 500



Whoa whoa whoa...what's this?!  I never set this transaction up!  Did I strike gold Magi?
newbie
Activity: 7
Merit: 0
Remember guys: If you are registered in the Special Proof of Mining pool keep your hashrate below 250 khs. Thank you in advance!


Am I too late to the party? I am mining in http://pom.m-hash.com currently. Can I join now?

barnacle

I thought the 'pom' in 'http://pom.m-hash.com' meant proof of mining...so you're saying there's an even MORE special pool out there?!

I was referring to this https://bitcointalksearch.org/topic/ann2nd-proof-of-mining-campaign-coin-magi-pos-ii-pomunique-blk-reward-1028548
Please see Participation & Rules

barnacle
hero member
Activity: 714
Merit: 500
Remember guys: If you are registered in the Special Proof of Mining pool keep your hashrate below 250 khs. Thank you in advance!


Am I too late to the party? I am mining in http://pom.m-hash.com currently. Can I join now?

barnacle

I thought the 'pom' in 'http://pom.m-hash.com' meant proof of mining...so you're saying there's an even MORE special pool out there?!
newbie
Activity: 7
Merit: 0
Hi

My first post here

Just posting some setup instructions for anyone new to Magi mining. This is what I usually do to get miners up and running on Linux (Tested on Ubuntu 14.10)

1. Install prerequisites

Code:
sudo apt-get -qy install build-essential tmux git
sudo apt-get -qy install libgmp-dev autotools-dev automake
sudo apt-get -qy install pkg-config libcurl4-openssl-dev
sudo apt-get -qy install libcurl4-gnutls-dev

2. Clone the miner repository

Code:
git clone https://github.com/noncepool/m7m-cpuminer.git
#You can also try https://github.com/wolf9466/wolf-m7m-cpuminer

3. Build the miner

Code:
cd m7m-cpuminer
./autogen.sh
./configure CFLAGS="-O3"
make

4. Run the miner

Code:
./minerd -a m7mhash -o stratum+tcp://"yourpool" -u "username".2 -p "password" -t 4

The number after -t should be the number of cores of the processor that you have.

Additional Info

If make was successful and you can not run ./minerd, do
Code:
chmod a+x  minerd

If you are running this on another computer, for eg: a cloud VM or a VPS, you can use tmux to run ./minerd in a separate session so that it won't close when you close SSH session

Type tmux into a Terminal
Type
Code:
./minerd -a m7mhash -o stratum+tcp://"yourpool" -u "username".2 -p "password" -t 4
and press ENTER

Press
Code:
Ctrl+b
and then type
Code:
:detach
to come out of tmux

Code:
tmux ls
lists out your tmux sessions
Code:
tmux attach
connects to your default session

barnacle

 

Thanks Barnacle and welcome in our Magical Magi community!

Thanks 111magic Smiley Happy to be part of this excellent community!
newbie
Activity: 7
Merit: 0
Remember guys: If you are registered in the Special Proof of Mining pool keep your hashrate below 250 khs. Thank you in advance!


Am I too late to the party? I am mining in http://pom.m-hash.com currently. Can I join now?

barnacle
hero member
Activity: 714
Merit: 500
I have an account but never verify it! And it works!



By golly, you're right!  Another vote for Magi, CHA-CHING!!!

On an unrelated note, what's everyone up to?  I'm trying to wrap my head around arbitrage right now - it simply does not compute   Angry I should have studied harder in math class  Cry Such is life with ADD...I'll hop on wikipedia to read a 'Sinbad the Sailor' page; suddenly its six hours later, my Internet history has 1,000 wikipedia entries and I realize I'm reading about T-62 tanks...

Brain, why can't you focus that energy towards number crunching?  Last I checked, Jeopardy DID NOT INVITE US TO BE GUESTS, NO ONE CARES ABOUT THE OCEANIC POLE OF INACCESSIBILITY.

So, about arbitrage...anyone offer a simple explanation?  With examples, possibly...?  I'm trying to wrap my head around the benefits of three-way arbitrage, specifically.  A kind member here walked me through a 3-way order last night, but I still can't figure out what the hell I did!  Besides break even Wink

 Kiss

legendary
Activity: 1750
Merit: 1005
Thanks community for placing value in Magi and thanks specifically people for placing value in my Magi tip jar!  I appreciate it - nice magical rain.  Smiley

You are very welcome Lightsplasher!  Wink

https://www.cryptsy.com/coinvotes

Still going upwards!!  Grin

Ugh...went to vote, but didn't realize I need to give my personal info to verify my registration...I mean I'll probably end up doing so, but hell I didn't need my driver's license to buy BTC in the first place! A bank account, yeah...so I guess it's the same really...I'll see myself out... Embarrassed

I have an account but never verify it! And it works!
hero member
Activity: 714
Merit: 500
Thanks community for placing value in Magi and thanks specifically people for placing value in my Magi tip jar!  I appreciate it - nice magical rain.  Smiley

You are very welcome Lightsplasher!  Wink

https://www.cryptsy.com/coinvotes

Still going upwards!!  Grin

Ugh...went to vote, but didn't realize I need to give my personal info to verify my registration...I mean I'll probably end up doing so, but hell I didn't need my driver's license to buy BTC in the first place! A bank account, yeah...so I guess it's the same really...I'll see myself out... Embarrassed
hero member
Activity: 714
Merit: 500
Hi

My first post here

Just posting some setup instructions for anyone new to Magi mining. This is what I usually do to get miners up and running on Linux (Tested on Ubuntu 14.10)

1. Install prerequisites

Code:
sudo apt-get -qy install build-essential tmux git
sudo apt-get -qy install libgmp-dev autotools-dev automake
sudo apt-get -qy install pkg-config libcurl4-openssl-dev
sudo apt-get -qy install libcurl4-gnutls-dev

2. Clone the miner repository

Code:
git clone https://github.com/noncepool/m7m-cpuminer.git
#You can also try https://github.com/wolf9466/wolf-m7m-cpuminer

3. Build the miner

Code:
cd m7m-cpuminer
./autogen.sh
./configure CFLAGS="-O3"
make

4. Run the miner

Code:
./minerd -a m7mhash -o stratum+tcp://"yourpool" -u "username".2 -p "password" -t 4

The number after -t should be the number of cores of the processor that you have.

Additional Info

If make was successful and you can not run ./minerd, do
Code:
chmod a+x  minerd

If you are running this on another computer, for eg: a cloud VM or a VPS, you can use tmux to run ./minerd in a separate session so that it won't close when you close SSH session

Type tmux into a Terminal
Type
Code:
./minerd -a m7mhash -o stratum+tcp://"yourpool" -u "username".2 -p "password" -t 4
and press ENTER

Press
Code:
Ctrl+b
and then type
Code:
:detach
to come out of tmux

Code:
tmux ls
lists out your tmux sessions
Code:
tmux attach
connects to your default session

barnacle

 

Thanks for this!  I have an old Debian laptop lying around, I'll have to try this out tonight and see how (if) it works!
legendary
Activity: 1750
Merit: 1005
Thanks community for placing value in Magi and thanks specifically people for placing value in my Magi tip jar!  I appreciate it - nice magical rain.  Smiley

You are very welcome Lightsplasher!  Wink

https://www.cryptsy.com/coinvotes

Still going upwards!!  Grin
sr. member
Activity: 371
Merit: 250
Thanks community for placing value in Magi and thanks specifically people for placing value in my Magi tip jar!  I appreciate it - nice magical rain.  Smiley
legendary
Activity: 1080
Merit: 1000
BTC - 14ZVqS5UGqhY77d5u9aUSW24ipRJ2g9wmm
legendary
Activity: 1568
Merit: 1000
Twitter @Acimirov
Really nice faucet! Just won 3 XMGs Smiley Thanks!
legendary
Activity: 1750
Merit: 1005
sr. member
Activity: 312
Merit: 250
Hi

My first post here

Just posting some setup instructions for anyone new to Magi mining. This is what I usually do to get miners up and running on Linux (Tested on Ubuntu 14.10)

Quote
...

barnacle

 

It's a nice refresh of the guide, but I have some things to add that are easier in the long run.

1. Dependencies - these are enough if you going to compile miner from git

Code:
sudo apt-get install git screen automake build-essential autotools-dev automake m4 libcurl4-openssl-dev libgmp-dev libssl-dev

2. Use screen instead tmux - It is more easy to send miner to background and foreground.
It can be use in launcing script so that the miner goes to background from the start like this:

Code:
screen -dmS miner ~/minerd -c config.json

Detach screen:
Code:
CTRL+A+D
and Reaatach:
Code:
screen -r miner

3. Use Wolf's miner - it is fastest under linux (atleast 50% more hashrate than Nonce-Pool's) - https://github.com/wolf9466/wolf-m7m-cpuminer.git
Make sure your read the README on github page in regard compiling.
full member
Activity: 181
Merit: 100
Thanks for bringing the rain in IRC magic
legendary
Activity: 1750
Merit: 1005
Hi

My first post here

Just posting some setup instructions for anyone new to Magi mining. This is what I usually do to get miners up and running on Linux (Tested on Ubuntu 14.10)

1. Install prerequisites

Code:
sudo apt-get -qy install build-essential tmux git
sudo apt-get -qy install libgmp-dev autotools-dev automake
sudo apt-get -qy install pkg-config libcurl4-openssl-dev
sudo apt-get -qy install libcurl4-gnutls-dev

2. Clone the miner repository

Code:
git clone https://github.com/noncepool/m7m-cpuminer.git
#You can also try https://github.com/wolf9466/wolf-m7m-cpuminer

3. Build the miner

Code:
cd m7m-cpuminer
./autogen.sh
./configure CFLAGS="-O3"
make

4. Run the miner

Code:
./minerd -a m7mhash -o stratum+tcp://"yourpool" -u "username".2 -p "password" -t 4

The number after -t should be the number of cores of the processor that you have.

Additional Info

If make was successful and you can not run ./minerd, do
Code:
chmod a+x  minerd

If you are running this on another computer, for eg: a cloud VM or a VPS, you can use tmux to run ./minerd in a separate session so that it won't close when you close SSH session

Type tmux into a Terminal
Type
Code:
./minerd -a m7mhash -o stratum+tcp://"yourpool" -u "username".2 -p "password" -t 4
and press ENTER

Press
Code:
Ctrl+b
and then type
Code:
:detach
to come out of tmux

Code:
tmux ls
lists out your tmux sessions
Code:
tmux attach
connects to your default session

barnacle

 

Thanks Barnacle and welcome in our Magical Magi community!
legendary
Activity: 1750
Merit: 1005
Remember guys: If you are registered in the Special Proof of Mining pool keep your hashrate below 250 khs. Thank you in advance!
newbie
Activity: 7
Merit: 0
Hi

My first post here

Just posting some setup instructions for anyone new to Magi mining. This is what I usually do to get miners up and running on Linux (Tested on Ubuntu 14.10)

1. Install prerequisites

Code:
sudo apt-get -qy install build-essential tmux git
sudo apt-get -qy install libgmp-dev autotools-dev automake
sudo apt-get -qy install pkg-config libcurl4-openssl-dev
sudo apt-get -qy install libcurl4-gnutls-dev

2. Clone the miner repository

Code:
git clone https://github.com/noncepool/m7m-cpuminer.git
#You can also try https://github.com/wolf9466/wolf-m7m-cpuminer

3. Build the miner

Code:
cd m7m-cpuminer
./autogen.sh
./configure CFLAGS="-O3"
make

4. Run the miner

Code:
./minerd -a m7mhash -o stratum+tcp://"yourpool" -u "username".2 -p "password" -t 4

The number after -t should be the number of cores of the processor that you have.

Additional Info

If make was successful and you can not run ./minerd, do
Code:
chmod a+x  minerd

If you are running this on another computer, for eg: a cloud VM or a VPS, you can use tmux to run ./minerd in a separate session so that it won't close when you close SSH session

Type tmux into a Terminal
Type
Code:
./minerd -a m7mhash -o stratum+tcp://"yourpool" -u "username".2 -p "password" -t 4
and press ENTER

Press
Code:
Ctrl+b
and then type
Code:
:detach
to come out of tmux

Code:
tmux ls
lists out your tmux sessions
Code:
tmux attach
connects to your default session

barnacle

 
Jump to: