Bitcoin Forum
June 22, 2024, 07:32:57 PM *
News: Voting for pizza day contest
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 »
1  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][XMG] Coin Magi | CPU mining | PoS-II | PoM | Unique BLK reward | [MagiPay] on: August 03, 2015, 04:52:29 AM
I use the pool that was registered with the current PoW campaign: xmg.miningpool.cc/index.php?page=dashboard because https://xmg.cloud2b.de/index.php shut down it said and moved the servers to miningpool.cc
2  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][XMG] Coin Magi | CPU mining | PoS-II | PoM | Unique BLK reward | [MagiPay] on: August 03, 2015, 03:39:57 AM
I just got an email that miningpool.cc is shutting down. Whats the deal guys?Huh
3  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][XMG] Coin Magi | CPU mining | PoS-II | PoM | Unique BLK reward | [MagiPay] on: July 31, 2015, 04:12:42 AM
Hi guys, I recently picked up a couple lifetime linux VPS that i've been playing around with and installed minerd but it only runs for a short amount of time before I notice it drop off and stop running which results in me having to ssh back into it and restart minerd.

My question is, how do I go about making minerd run permanently in the background without me having to ssh back in. I tried nohup at the start of the terminal command which helps it last longer, but it seems to always stop after awhile.

I can start the command in background using &
command &
minerd -o pool -u username -p password &
I'm more looking to make it into a permanent instance that will re-run if the system gets restarted as the machine is unattended. I've been looking around online and a few people have suggested making a upstart, or a service script, or a SysV instance. But i'm not too sure how to go about creating one of these in a command line setting.
4  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][XMG] Coin Magi | CPU mining | PoS-II | PoM | Unique BLK reward | [MagiPay] on: July 31, 2015, 01:23:31 AM
Hi guys, I recently picked up a couple lifetime linux VPS that i've been playing around with and installed minerd but it only runs for a short amount of time before I notice it drop off and stop running which results in me having to ssh back into it and restart minerd.

My question is, how do I go about making minerd run permanently in the background without me having to ssh back in. I tried nohup at the start of the terminal command which helps it last longer, but it seems to always stop after awhile.
5  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][2nd Proof of Mining Campaign] Coin Magi |PoS-II| PoM|MQW 2nd Pool on: June 25, 2015, 05:47:54 AM
I'm just wondering is there a tab in the menu to check on participation progress in the campaign or also is there a way of checking if I was accepted?
6  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][2nd Proof of Mining Campaign] Coin Magi |PoS-II| PoM|MQW 2nd Pool on: June 24, 2015, 02:18:24 PM
Hello, it was requested of me to post my username of the pool here to participate:
Quote
username: Myst  email: mysteriousdewd@gmail.com

Thank you for the opportunity to join in on this Cheesy
7  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][2nd Proof of Mining Campaign] Coin Magi | PoS-II | PoM|Unique BLK reward on: June 23, 2015, 12:14:14 AM
A couple questions regarding the PoM campaign. I applied today and saw the previous posts, did I miss the boat? Also is having an average of 26-28 khash/second an acceptable amount? I saw that it said to have 100khash but was wondering if it is still ok for people with a lower hash rate to join, also I wasn't sure what to ask for a reward like it asked so I put that I wanted something reasonable to the rate I could mine with for a reward request.
You did not miss this campaign because it is still running. Think whatever hashrate you have its always nice to receive some free XMG
Awesome! Glad I didn't miss it. Another question though, when will I find out if I got accepted into the campaign? Will I get emailed?
8  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][2nd Proof of Mining Campaign] Coin Magi | PoS-II | PoM|Unique BLK reward on: June 21, 2015, 11:40:39 PM
A couple questions regarding the PoM campaign. I applied today and saw the previous posts, did I miss the boat? Also is having an average of 26-28 khash/second an acceptable amount? I saw that it said to have 100khash but was wondering if it is still ok for people with a lower hash rate to join, also I wasn't sure what to ask for a reward like it asked so I put that I wanted something reasonable to the rate I could mine with for a reward request.
9  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][XMG] Coin Magi | CPU mining | PoS-II | PoM | Unique BLK reward | [MagiPay] on: June 19, 2015, 01:58:25 AM
Mysts attempt to keep a giant wall of text to a minimum.
I must have glossed over Spexx's reply after yours felden. Sorry about that.

Just to add another little bit there.

-mtune=native is an invalid switch. -march=native is the correct switch in that context. You do not specify it unless you are cross-compiling the code to be run on another machine or for another very specific reason. The default is to compile for the machine the compiler is running on anyway.

Run the configure script and it will create a total of four makefiles. One in the current folder, one in the m7 sub-folder, one in the compat sub-folder and one in the compat/jansson sub-sub-folder. The makefiles are all called Makefile.[nothing] so open each one in turn with an ordinary text editor and just replace all instances of the string -fuse-linker-plugin with nothing and remove one of the resulting extra spaces at the same time, then save the makefile. Then use the command make clean (to clear out any shit from a previous run) and then use make. It will compile.

Do not bother with the makefile.am file. That, the autogen script and the resulting configure script are riddled with bugs. I found that any flags you specify against the configure command are ignored (took me a while to realize that) and if you want flags to be used then you have to edit them directly into the makefiles. Nothing else works properly. It is a right bloody kerfuffle, but when you know what you are doing it can be sorted out and corrected.

So ... you have already run autogen and configure. Edit the four makefiles. Run make clean. Run make. You should now have a minerd.exe to play with.

Thanks Spexx and feldenthorne. You guys have been amazing in helping me out. On my mac I only had 3 makefiles to edit but once I removed the  -fuse-linker-plugin line and ran make clean the make worked perfectly. It produced one warning but minerd is now sitting there in the wolf-m7m folder.

A question for Spexx, what did you mean by the extra spaces in the makefile?

Edit: Just thought I'd throw out there also that I hit up minerd with:
minerd -a m7mhash -t 6 -s 4 -o stratum+tcp://mining.m-hash.com:3334 -u Weblogin.WorkerName -p WorkerPassword
Like what is in the coinmagi pool and this is my output: http://imgur.com/po6942b

So happy to see it say yay!! Cheesy Thanks so much guys.
10  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][XMG] Coin Magi | CPU mining | PoS-II | PoM | Unique BLK reward | [MagiPay] on: June 19, 2015, 12:45:21 AM
So I compiled GMP using homebrew and then compiled wolf cpu miner again and it went through but it says there was an error? http://imgur.com/po6942b

Not sure what its asking for with this.

Someone suggested that re-running configure with the extra flags "-march=native -mtune=native -maes" might work if you use it along with this Makefile.am.

Code:
./configure CFLAGS="-O3" CXXFLAGS="-O3" -march=native -mtune=native -maes

It might work fine without the extra flags, so long as you use the updated Makefile.am. (The author said it was a fix for clang, which you appear to be using.)
So am I able to just copy and paste the makefile into the wolf-m7m folder and will it work? Cause I tried that and then attempted to configure only to tell me:

Mysteriousdewds-MacBook-Pro:wolf-m7m-cpuminer-V2 Cybertron$ ./configure CFLAGS="-O3" CXXFLAGS="-O3" -mtune=native -maes
configure: error: unrecognized option: `-mtune=native'
Try `./configure --help' for more information

Not sure how to reconfigure it to work with the makefile from cpuminer-multi.
11  Alternate cryptocurrencies / Mining (Altcoins) / Re: Wolf's XMR/BCN/MNT CPUMiner - 2x speed compared to LucasJones' - NEW 06/20/2014 on: June 18, 2015, 11:57:02 PM
Hi,
I am trying to compile on Mac, but I receive this error when I 'make'
Quote
make[3]: Nothing to be done for `all-am'.
gcc -DHAVE_CONFIG_H -I.  -pthread   -Qunused-arguments -falign-loops=16 -falign-functions=16 -falign-jumps=16 -falign-labels=16  -Ofast -flto -fuse-linker-plugin -funroll-loops -fvariable-expansion-in-unroller -ftree-loop-if-convert-stores -fmerge-all-constants -fbranch-target-load-optimize2 -fsched2-use-superblocks -maes   -MT minerd-cpu-miner.o -MD -MP -MF .deps/minerd-cpu-miner.Tpo -c -o minerd-cpu-miner.o `test -f 'cpu-miner.c' || echo './'`cpu-miner.c
clang: error: unknown argument: '-falign-loops=16' [-Wunused-command-line-argument-hard-error-in-future]
clang: note: this will be a hard error (cannot be downgraded to a warning) in the future
clang: error: unknown argument: '-falign-jumps=16' [-Wunused-command-line-argument-hard-error-in-future]
clang: note: this will be a hard error (cannot be downgraded to a warning) in the future
clang: error: unknown argument: '-falign-labels=16' [-Wunused-command-line-argument-hard-error-in-future]
clang: note: this will be a hard error (cannot be downgraded to a warning) in the future
clang: error: unknown argument: '-fuse-linker-plugin' [-Wunused-command-line-argument-hard-error-in-future]
clang: note: this will be a hard error (cannot be downgraded to a warning) in the future
clang: error: unknown argument: '-fvariable-expansion-in-unroller' [-Wunused-command-line-argument-hard-error-in-future]
clang: note: this will be a hard error (cannot be downgraded to a warning) in the future
clang: error: unknown argument: '-ftree-loop-if-convert-stores' [-Wunused-command-line-argument-hard-error-in-future]
clang: note: this will be a hard error (cannot be downgraded to a warning) in the future
clang: error: unknown argument: '-fbranch-target-load-optimize2' [-Wunused-command-line-argument-hard-error-in-future]
clang: note: this will be a hard error (cannot be downgraded to a warning) in the future
clang: error: unknown argument: '-fsched2-use-superblocks' [-Wunused-command-line-argument-hard-error-in-future]
clang: note: this will be a hard error (cannot be downgraded to a warning) in the future
make[2]: *** [minerd-cpu-miner.o] Error 1
make[1]: *** [all-recursive] Error 1
make: *** [all] Error 2

I have the dependencies installed. 'autogen.sh' and 'configure' run without errors.

I am having the same issue as this person but I see no one has suggested a solution. Could someone help me out with this. I was told to use a makefile from cpuminer-multi and thought all I would need to do is copy it from there and paste into wolfs-m7m folder but when I attempted to configure/make it it only hit me with errors.
12  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][XMG] Coin Magi | CPU mining | PoS-II | PoM | Unique BLK reward | [MagiPay] on: June 18, 2015, 03:14:40 AM
So I ran the autogen and configure again and I see where it is failing. Your right it comes up saying:

configure: error: GNU MP not found, see https://gmplib.org/

But when I install gmp again it says that it is installed.

Mysteriousdewds-MacBook-Pro:wolf-m7m-cpuminer-V2 Cybertron$ sudo port -t install gmp
Password:
--->  Cleaning gmp
--->  Scanning binaries for linking errors
--->  No broken files found.
Mysteriousdewds-MacBook-Pro:wolf-m7m-cpuminer-V2 Cybertron$

I'm not sure how to resolve this.

Eh, perhaps running sudo port install gmp (without -t) will work out since it won't try to scoot around system files. Configure might be looking for a standard directory.

If that doesn't work, you'll probably have to download and compile GMP on your own.

Edit: I just realized you posted two images and tried sudo port install gmp already. If configure doesn't already work, you're definitely going to have to build GMP from its source. Link: https://ftp.gnu.org/gnu/gmp/gmp-6.0.0a.tar.lz

So I compiled GMP using homebrew and then compiled wolf cpu miner again and it went through but it says there was an error? http://imgur.com/po6942b

Not sure what its asking for with this.
13  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][XMG] Coin Magi | CPU mining | PoS-II | PoM | Unique BLK reward | [MagiPay] on: June 18, 2015, 01:18:46 AM
I have already got macports installed and gmp installed, and I have now installed gmp again but it still fails to make.

http://imgur.com/P1Ot27z
http://imgur.com/7mbwqIg

Run the autogen and configure commands again - you need to update their results to generate a Makefile.

So I ran the autogen and configure again and I see where it is failing. Your right it comes up saying:

configure: error: GNU MP not found, see https://gmplib.org/

But when I install gmp again it says that it is installed.

Mysteriousdewds-MacBook-Pro:wolf-m7m-cpuminer-V2 Cybertron$ sudo port -t install gmp
Password:
--->  Cleaning gmp
--->  Scanning binaries for linking errors
--->  No broken files found.
Mysteriousdewds-MacBook-Pro:wolf-m7m-cpuminer-V2 Cybertron$

I'm not sure how to resolve this.
14  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][XMG] Coin Magi | CPU mining | PoS-II | PoM | Unique BLK reward | [MagiPay] on: June 18, 2015, 01:08:25 AM
I currently am dealing with this error message. Maybe Spexx could also help me out here?

http://imgur.com/d8nN6Xd

Am I typing something wrong thing as it refuses to make?

You just need the dependencies (it's failing because you don't have GMP installed).

[...]
A cursory check of MacPorts suggests that this will get the dependencies:
Code:
sudo port -t install gmp curl jansson openssl
[...]

Edit: if for some reason you don't have MacPorts, you can find directions for installing it on the MacPorts website.

I have already got macports installed and gmp installed, and I have now installed gmp again but it still fails to make.

http://imgur.com/P1Ot27z
http://imgur.com/7mbwqIg
15  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][XMG] Coin Magi | CPU mining | PoS-II | PoM | Unique BLK reward | [MagiPay] on: June 18, 2015, 12:20:46 AM
So if I follow the front page instructions of:

git clone https://github.com/noncepool/m7magi-cpuminer-v2
cd m7magi-cpuminer-v2
./autogen.sh
./nomacro.pl
./configure CFLAGS="-O3" CXXFLAGS="-O3"
make

But change it to clone: https://github.com/magi-project/wolf-m7m-cpuminer-V2

It will most likely attain the same outcome?

Edit: I am just wondering if I also have to worry about the dependencies of the github package?

I have some Linux miner online. May you can post your error message here?

I currently am dealing with this error message. Maybe Spexx could also help me out here?

http://imgur.com/d8nN6Xd

Am I typing something wrong thing as it refuses to make?
16  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][XMG] Coin Magi | CPU mining | PoS-II | PoM | Unique BLK reward | [MagiPay] on: June 17, 2015, 01:53:55 AM
Hello Spexx thanks for replying. I am wondering if you might be able to post a quick step by step instruction of how to get this working for me. I am fairly new to the bitcoin scene and fairly green also to the majority of coding so it would be greatly appreciated if you could help me, and it would also be useful for future mac users wishing to get into mining and need a guide.

I can't speak entirely for Spexx, but I think he's more of a Windows guy than a Mac/Linux guy.

That being said, the GitHub suggests the you probably need to do the following after installing your dependencies:
Code:
./nomacro.pl
./autogen.sh
./configure CFLAGS="-O3" CXXFLAGS="-O3"
make

A cursory check of MacPorts suggests that this will get the dependencies:
Code:
sudo port -t install gmp curl jansson openssl

But I honestly have no idea if that will work because I don't have a Mac.

So if I follow the front page instructions of:

git clone https://github.com/noncepool/m7magi-cpuminer-v2
cd m7magi-cpuminer-v2
./autogen.sh
./nomacro.pl
./configure CFLAGS="-O3" CXXFLAGS="-O3"
make

But change it to clone: https://github.com/magi-project/wolf-m7m-cpuminer-V2

It will most likely attain the same outcome?

Edit: I am just wondering if I also have to worry about the dependencies of the github package?
17  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][XMG] Coin Magi | CPU mining | PoS-II | PoM | Unique BLK reward | [MagiPay] on: June 17, 2015, 01:36:27 AM
I used the tutorial on the first post here: https://bitcointalk.org/index.php?topic=735170.msg9576881#msg9576881

Which uses: https://github.com/noncepool/m7magi-cpuminer-v2

I remember it saying something about a part may not have been downloaded so that might be it. I'm not sure, I simply followed the exact steps listed in the post and assumed that it was how it should work.

Edit: took a screenshot of the attempt with the github part just now: https://i.imgur.com/Vlq27aW.png

1) The minerd will run perfectly well without specifying the algo, but if you must it should be "m7mhash".

2) The source you are using is very out of date. You want:-

https://github.com/magi-project/wolf-m7m-cpuminer-V2

which should run a lot faster.

3) The compile is bombing out because the GMP library has not been installed. Check the dependencies list on the github.

Hello Spexx thanks for replying. I am wondering if you might be able to post a quick step by step instruction of how to get this working for me. I am fairly new to the bitcoin scene and fairly green also to the majority of coding so it would be greatly appreciated if you could help me, and it would also be useful for future mac users wishing to get into mining and need a guide.
18  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][XMG] Coin Magi | CPU mining | PoS-II | PoM | Unique BLK reward | [MagiPay] on: June 15, 2015, 04:20:27 AM
Giant block of text not worth wall quoting.

I used the tutorial on the first post here: https://bitcointalk.org/index.php?topic=735170.msg9576881#msg9576881

Which uses: https://github.com/noncepool/m7magi-cpuminer-v2

I remember it saying something about a part may not have been downloaded so that might be it. I'm not sure, I simply followed the exact steps listed in the post and assumed that it was how it should work.

Edit: took a screenshot of the attempt with the github part just now: https://i.imgur.com/Vlq27aW.png
19  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][XMG] Coin Magi | CPU mining | PoS-II | PoM | Unique BLK reward | [MagiPay] on: June 15, 2015, 04:07:22 AM
Hello, I followed the steps on the mac compiling section of this thread and just wanted to make sure that I do not set my algorithm to m7mhash is correct right?

I ran minerd without m7mhash set to the algo and it was giving me 18-19khash. Is this good? I am running a MBP with a 2.5ghz core i5. My reason for asking if 18-19khash is good is because it says BOOO everytime.

Edit: My threads say 4khash, and my accepted say 18khash.

You definitely need to run with -a m7m. Getting a "boo" back from minerd means that your hashes were not accepted.

How do I go about running it on a mac with m7mhash as when I run it in terminal I get "./minerd: unknown algorithm -- 'm7m'
Try `minerd --help' for more information."

Also any tips on increasing my hash rate so it accepts it?
20  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][XMG] Coin Magi | CPU mining | PoS-II | PoM | Unique BLK reward | [MagiPay] on: June 15, 2015, 03:51:08 AM
Hello, I followed the steps on the mac compiling section of this thread and just wanted to make sure that I do not set my algorithm to m7mhash is correct right?

I ran minerd without m7mhash set to the algo and it was giving me 18-19khash. Is this good? I am running a MBP with a 2.5ghz core i5. My reason for asking if 18-19khash is good is because it says BOOO everytime.

Edit: My threads say 4khash, and my accepted say 18khash.
Pages: [1] 2 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!