Author

Topic: OFFICIAL CGMINER mining software thread for linux/win/osx/mips/arm/r-pi 4.11.0 - page 553. (Read 5806088 times)

member
Activity: 99
Merit: 10
MMM EXTRA - THE RIGHT STEP TOWARDS THE GOAL
I have run my CGminer about 7 days, and i have about 11 Rigs with 5x 5850 and until today morning i found that some of my CGminer Freeze and stop sending share and i found some funny figure when i freeze something like "LW:50" and high figure around beside "LW"

where some of my CGminer still running fine thich is "LW:0"

you can see that on top of the cgminer !

anyone pls help

i cannot provide screen shot because it is not convenient and it is far from my house to warehouse

so anyone pls help if it happen again i will get the screen shot

sry for my English !
The LW value is almost certainly completely unrelated. If it crashes at approximately 7 days, then you are being hit by the ATI Display Library crashing after a week bug that happens only on windows. Try starting cgminer with --no-restart . You will lose temperature and/or fanspeed monitoring after a week but it at least wont crash.

I have tried the --no-restart but still no luck cg miner crash after 7 days

and some of my miner appear something like gpu2 display driver corrupted, disabling monitoring fan/gpu control  ................ and then it freeze the same

please i need solution for this anyone please tell me !

I have run CGminer 2.4.2

i start it at 13 jun and it is still crash at 20 jun 2012 but the strange things is it some of my rig just freeze

and some of them appear massage like GPU 0 driver stop working or corrupted disabling fan speed control and after that it still freeze

i have 5 rigs 2 of them just freeze 3 of them appear the GPU 0 driver stop working or corrupted disabling fan speed control and after that it still freeze

but this time i dont put the --no-restart

omg i really need to learn linux and get this fixed ?
-ck
legendary
Activity: 4088
Merit: 1631
Ruu \o/
Quote
"C:\Program Files (x86)\cgminer\cgminer-2.4.3-win32\cgminer.exe" -S COM4 cgminer -o http://us.ozco.in:8332 -u *** -p *** -I 9 --auto-fan --gpu-engine 900 --gpu-memclock 300

Note that "cgminer" is the same thing on non-windows as "cgminer.exe" is on windows, so it's not meaningful to include it there.

Make sure you're not loading a configuration file unintentionally (which it does by default if it finds one) by starting it from a dos prompt instead of a shortcut to see what is happening until you sort things out. If clocks are fixed at some low rate, usually that's an open web browser or something that is fixing the clock speed for fucked up flash usage or youboob or some shit, so closing web browsers usually fixes it.
member
Activity: 546
Merit: 10
I did some searching, but could not quite figure this out...

I have a BitForce Single and a 5830 running in a windows 7 machine.

I am trying to get the 5830 to overclock/underclock and have not been able to.

I try this in the shortcut's target box and it doesnt open.  It just flashes and closes quickly:
Quote
"C:\Program Files (x86)\cgminer\cgminer-2.4.3-win32\cgminer.exe" -S COM4 cgminer -o http://us.ozco.in:8332 -u *** -p *** -I 9 --auto-fan --gpu-engine 900 --gpu-memclock 300


I try this in the shortcut's target box and it does open and starts mining.  But the 5830 does not take the clocks.
Quote
"C:\Program Files (x86)\cgminer\cgminer-2.4.3-win32\cgminer.exe" -S COM4 -o http://us.ozco.in:8332 -u *** -p *** -I 9 --auto-fan --gpu-engine 900 --gpu-memclock 300

Notice that the difference is I deleted the 'cgminer'. 

After trial and error I have found that I cannot get it to open with 'cgminer' in there like the examples show.  If I delete cgminer it opens and mins at stock clocks.  I try moving the '-S COM4' to the end, and just after the pool, no good.


Any ideas?  Thanks!
newbie
Activity: 43
Merit: 0
The trick is to use this:
Code:
CFLAGS += -g -Wall -D _XOPEN_SOURCE=600

-ck
legendary
Activity: 4088
Merit: 1631
Ruu \o/
This is the Output from configure
Code:
checking for alloca... yes
checking for pthread_create in -lpthread... yes
checking for json_loads in -ljansson... no

So, it seems so, that the platform has.

Pthread create doesn't mean it supports all the pthread features, in this case read write locks the same way. Anyway it appears to be struggling with a pointer to the pthread read write lock typedef. No idea how they implement it on that platform or why it wouldn't like a pointer.
newbie
Activity: 43
Merit: 0
This is the Output from configure
Code:
checking for alloca... yes
checking for pthread_create in -lpthread... yes
checking for json_loads in -ljansson... no

So, it seems so, that the platform has.
-ck
legendary
Activity: 4088
Merit: 1631
Ruu \o/
I am trying do build the CGMiner 2.4.3 for an AT91SAM9G45 (it's an Arm) Hardware. but it fails.

configure works fine. i doing it this way.
 CC=arm-linux-gcc AR=arm-linux-ar RANLIB=arm-linux-ranlib ./configure --build=arm-linux --target=arm-linux --prefix=/usr --host=arm
but when i 'make', i get this error:

Code:
make[2]: Betrete Verzeichnis '/usr/local/src/cgminer-2.4.3'
  CC       cgminer-logging.o
In file included from logging.c:13:
miner.h:471: error: expected ')' before '*' token
miner.h:477: error: expected ')' before '*' token
miner.h:483: error: expected ')' before '*' token
miner.h:489: error: expected ')' before '*' token
miner.h:494: error: expected ')' before '*' token
miner.h:505: error: expected ')' before '*' token
miner.h:529: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'netacc_lock'
make[2]: *** [cgminer-logging.o] Fehler 1
make[2]: Verlasse Verzeichnis '/usr/local/src/cgminer-2.4.3'
make[1]: *** [all-recursive] Fehler 1
make[1]: Verlasse Verzeichnis '/usr/local/src/cgminer-2.4.3'
make: *** [all] Fehler 2

the miner.h looks good for me.
From the looks of that, it appears your architecture does not support read write locks. i.e. it has no pthread_rwlock_t implementation.
newbie
Activity: 43
Merit: 0
I am trying do build the CGMiner 2.4.3 for an AT91SAM9G45 (it's an Arm) Hardware. but it fails.

configure works fine. i doing it this way.
 CC=arm-linux-gcc AR=arm-linux-ar RANLIB=arm-linux-ranlib ./configure --build=arm-linux --target=arm-linux --prefix=/usr --host=arm
but when i 'make', i get this error:

Code:
make[2]: Betrete Verzeichnis '/usr/local/src/cgminer-2.4.3'
  CC       cgminer-logging.o
In file included from logging.c:13:
miner.h:471: error: expected ')' before '*' token
miner.h:477: error: expected ')' before '*' token
miner.h:483: error: expected ')' before '*' token
miner.h:489: error: expected ')' before '*' token
miner.h:494: error: expected ')' before '*' token
miner.h:505: error: expected ')' before '*' token
miner.h:529: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'netacc_lock'
make[2]: *** [cgminer-logging.o] Fehler 1
make[2]: Verlasse Verzeichnis '/usr/local/src/cgminer-2.4.3'
make[1]: *** [all-recursive] Fehler 1
make[1]: Verlasse Verzeichnis '/usr/local/src/cgminer-2.4.3'
make: *** [all] Fehler 2

the miner.h looks good for me.
-ck
legendary
Activity: 4088
Merit: 1631
Ruu \o/
Code:

./configure --help | grep modminer
  --enable-modminer       Compile support for ModMiner FPGAs(default disabled)

How do I compile this for windows.

This is already built into the windows binary on the latest release, so if it's not working, it's something else...
full member
Activity: 196
Merit: 100
CGminer is not seeing my ModMiner Quad. Any ideas. it says the driver is installed ok.

Phil

Believe the support for it is in the version 2.4.3b if I remember well enough the post by kano I believe it was that said that, so have you that version installed.

Where is kano's 2.4.3b located?

Just need a regular git clone of the latest source then compile as I just checked and the option is there in my fresh 2.4.3 I compiled last night.

Code:

./configure --help | grep modminer
  --enable-modminer       Compile support for ModMiner FPGAs(default disabled)

How do I compile this for windows.


Damn, no clue on that never use it you may want to check in the Mod Miner thread/on web site to see they must have miner for it in one of them places.

I checked and there is nothing there.


That makes no sense how are people mining with them then? Unless they are using the modular python miner I believe it is called other that and not owning one of them I'm out of ideas..
sr. member
Activity: 308
Merit: 250
CGminer is not seeing my ModMiner Quad. Any ideas. it says the driver is installed ok.

Phil

Believe the support for it is in the version 2.4.3b if I remember well enough the post by kano I believe it was that said that, so have you that version installed.

Where is kano's 2.4.3b located?

Just need a regular git clone of the latest source then compile as I just checked and the option is there in my fresh 2.4.3 I compiled last night.

Code:

./configure --help | grep modminer
  --enable-modminer       Compile support for ModMiner FPGAs(default disabled)

How do I compile this for windows.


Damn, no clue on that never use it you may want to check in the Mod Miner thread/on web site to see they must have miner for it in one of them places.

I checked and there is nothing there.
full member
Activity: 196
Merit: 100
CGminer is not seeing my ModMiner Quad. Any ideas. it says the driver is installed ok.

Phil

Believe the support for it is in the version 2.4.3b if I remember well enough the post by kano I believe it was that said that, so have you that version installed.

Where is kano's 2.4.3b located?

Just need a regular git clone of the latest source then compile as I just checked and the option is there in my fresh 2.4.3 I compiled last night.

Code:

./configure --help | grep modminer
  --enable-modminer       Compile support for ModMiner FPGAs(default disabled)

How do I compile this for windows.


Damn, no clue on that never use it you may want to check in the Mod Miner thread/on web site to see they must have miner for it in one of them places.
sr. member
Activity: 308
Merit: 250
CGminer is not seeing my ModMiner Quad. Any ideas. it says the driver is installed ok.

Phil

Believe the support for it is in the version 2.4.3b if I remember well enough the post by kano I believe it was that said that, so have you that version installed.

Where is kano's 2.4.3b located?

Just need a regular git clone of the latest source then compile as I just checked and the option is there in my fresh 2.4.3 I compiled last night.

Code:

./configure --help | grep modminer
  --enable-modminer       Compile support for ModMiner FPGAs(default disabled)

How do I compile this for windows.
full member
Activity: 196
Merit: 100
CGminer is not seeing my ModMiner Quad. Any ideas. it says the driver is installed ok.

Phil

Believe the support for it is in the version 2.4.3b if I remember well enough the post by kano I believe it was that said that, so have you that version installed.

Where is kano's 2.4.3b located?

Just need a regular git clone of the latest source then compile as I just checked and the option is there in my fresh 2.4.3 I compiled last night.

Code:

./configure --help | grep modminer
  --enable-modminer       Compile support for ModMiner FPGAs(default disabled)
sr. member
Activity: 308
Merit: 250
CGminer is not seeing my ModMiner Quad. Any ideas. it says the driver is installed ok.

Phil

Believe the support for it is in the version 2.4.3b if I remember well enough the post by kano I believe it was that said that, so have you that version installed.

Where is kano's 2.4.3b located?
full member
Activity: 196
Merit: 100
CGminer is not seeing my ModMiner Quad. Any ideas. it says the driver is installed ok.

Phil

Believe the support for it is in the version 2.4.3b if I remember well enough the post by kano I believe it was that said that, so have you that version installed.
hero member
Activity: 866
Merit: 1001
CGminer is not seeing my ModMiner Quad. Any ideas. it says the driver is installed ok.

Phil
newbie
Activity: 29
Merit: 0
This isn't the place to learn that, much better to use stackoverflow.com

Thank you for the reference, I'll check it out

Quote
hmm. That is a different version than I have. I have 4.6.2.

When I am done with my new server build/config I will move my mingw directory and follow the instructions line by line and see if it still works. If it does not work, I will update the instructions and re-submit them to be included in the next release of Cgminer.

And of course I will also post it here as well.

It might be as much as a week before I can get to it though, so you may want to have someone compile it for you in the meantime.

Ok I know somebody who might be able to help me, I was just trying to get this stuff on my own before go around asking for help.  Thank you everyone who's responded to me with help.
sr. member
Activity: 383
Merit: 250
i got version 4.7.0

hmm. That is a different version than I have. I have 4.6.2.

When I am done with my new server build/config I will move my mingw directory and follow the instructions line by line and see if it still works. If it does not work, I will update the instructions and re-submit them to be included in the next release of Cgminer.

And of course I will also post it here as well.

It might be as much as a week before I can get to it though, so you may want to have someone compile it for you in the meantime.
legendary
Activity: 2912
Merit: 1060
This isn't the place to learn that, much better to use stackoverflow.com
Jump to: