Bitcoin Forum
May 30, 2024, 11:59:14 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 [9] 10 11 12 13 14 15 16 17 18 19 20 21 22 »
161  Alternate cryptocurrencies / Altcoin Discussion / Re: Block Erupter Question on: November 01, 2013, 11:28:03 PM
Is there a way to run CGMiner with the block erupters without  replacing the BE's  drivers to winusb using Zadig ?

Not that I'm aware of. For cgminer, you use Zadig to install WinUSB drivers. Once you use Zadig to install the WinUSB driver for one Block Erupter, it should automatically install it for any other Block Erupters. That's how it worked for me. Same with BFL Singles... I installed WinUSB for one and it automatically installed it for the other.

For bfgminer, you install the USB to UART Bridge.

Each miner has its own way of handling USB communication. If you switch miners, make sure to uninstall whichever method you used for the other miner.
162  Alternate cryptocurrencies / Altcoin Discussion / Re: Block Erupter Question on: October 31, 2013, 01:32:52 PM
I'm not sure what you mean by CGWatcher giving errors when trying to download the miners... it doesn't download miners. You just tell it where the miner is located when you create a mining profile.

As far as config files, cgminer will automatically use any config file named cgminer.conf if it's in the same directory as cgminer.exe (and cgminer-nogpu.exe). You can also use --config <filename> to specify a config file in another location. If the filename has a space in it, remember to put quotes around it.

Example:

Code:
cgminer-nogpu.exe --config "c:\miners\cgminer\my config.conf"

Among other things, CGWatcher makes it easier to setup the miner - you can create as many profiles as you need, for each profile you set the miner executable (or batch file), config file (optional), command arguments (optional), and a few additional options. You can also set which coin the profile is mining so you can then later schedule it to mine certain coins at certain times, or mine based on profitability.
163  Alternate cryptocurrencies / Altcoin Discussion / Re: Block Erupter Question on: October 31, 2013, 01:49:14 AM
I ended up using two instances of cgminer: one for a Jalapeno and a few USB Block Erupters, and one for two Singles. I used the first --usb option (in cgminer readme) to specify which devices I wanted in which instance.

Open a command window pointing to your cgminer folder, and type in

Code:
cgminer.exe -n

(you can also use cgminer-nogpu.exe -n if you aren't using any GPUs)

This will list all devices it found, along with some other information including each device's bus number and device address. You then set the --usb option in the arguments or config file, entering the bus number:device address of the devices you want it to use (comma-delimited).

So the first cgminer instance uses a config file, in it is the line:

Code:
"usb" : "3:4,3:5,3:7,3:12"

The second instance uses a config file, in it is the line:

Code:
"usb" : "3:10,3:11"

Note: the device address may not necessarily be sequential. I haven't checked yet, but the advantage to this method is I think/hope it should persist through computer restarts, although I haven't tested this yet. I didn't want to use COM ports to specify devices for this reason.
164  Alternate cryptocurrencies / Altcoin Discussion / Re: Block Erupter Question on: October 30, 2013, 06:56:58 PM
You would need to run a separate instance of cgminer/bfgminer for each pool. For each instance, you'd specify which devices you want to use.

You can also run multiple instances of CGWatcher - one for each miner instance. You just have to create separate folders for each CGWatcher instance (e.g. CGWatcherA, CGWatcherB, etc) because each instance needs its own folder to store settings in. If you ran multiple instances from the same folder, they would overwrite each other's settings.

For cgminer you can use --usb to only enable certain devices. From the readme:

Code:
Advanced USB options:

The --usb option can restrict how many Avalon, BFL ASIC, BitForce FPGAs,
ModMiner FPGAs or Icarus bitstream FPGAs it finds:

  --usb 1:2,1:3,1:4,1:*
or
  --usb BAS:1,BFL:1,MMQ:0,ICA:0
or
  --usb :10

You can only use one of the above 3

The first version
  --usb 1:2,1:3,1:4,1:*
allows you to select which devices to mine on with a list of USB
 bus_number:device_address
All other USB devices will be ignored
Hotplug will also only look at the devices matching the list specified and
find nothing new if they are all in use
You can specify just the USB bus_number to find all devices like 1:*
which means any devices on USB bus_number 1
This is useful if you unplug a device then plug it back in the same port,
it usually reappears with the same bus_number but a different device_address

You can see the list of all USB devices on linux with 'sudo lsusb'
Cgminer will list the recognised USB devices with the '-n' option or the
'--usb-dump 0' option
The '--usb-dump N' option with a value of N greater than 0 will dump a lot
of details about each recognised USB device
If you wish to see all USB devices, include the --usb-list-all option

The second version
  --usb BAS:1,BFL:1,MMQ:0,ICA:0
allows you to specify how many devices to choose based on each device
driver cgminer has - there are currently 4 USB drivers: BAS, BFL, MMQ & ICA
N.B. you can only specify which device driver to limit, not the type of
each device, e.g. with BAS:n you can limit how many BFL ASIC devices will
be checked, but you cannot limit the number of each type of BFL ASIC
Also note that the MMQ count is the number of MMQ backplanes you have
not the number of MMQ FPGAs

The third version
  --usb :10
means only use a maximum of 10 devices of any supported USB devices
Once cgminer has 10 devices it will not configure any more and hotplug will
not scan for any more
If one of the 10 devices stops working, hotplug - if enabled, as is default
- will scan normally again until it has 10 devices

  --usb :0 will disable all USB I/O other than to initialise libusb

NOTE: The --device option will limit which devices are in use based on their
numbering order of the total devices, so if you hotplug USB devices regularly,
it will not reliably be the same devices.

I'm not sure if the same option is available in bfgminer. You can find info on how to enable devices by specifying the COM port (but these can change after the computer restarts) here: https://bitcointalk.org/index.php?topic=268626.0

If you need any help getting CGWatcher setup let me know. I have cgminer and bfgminer running on my desktop, each with its own CGWatcher. I just created shortcuts to each CGWatcher on the desktop - one called "CGWatcher GPU" and the other "CGWatcher ASIC". They both use the same file for profiles, so if I want to add/edit/delete a profile I only have to do it once.

I also have a laptop running more ASICs, and today I'm going to be moving them all to the basement to run on the same computer. I'm going to split them up into two groups so I can mine two different pools, so I'll let you know what solution I come up with.

As mentioned above, you could also have all the ASICs mine the same pool then just switch pools at scheduled times, which should produce similar results. Newer versions of the miners have options for this, or you can create scheduled actions in CGWatcher to do it at set intervals or times.
165  Bitcoin / Mining software (miners) / Re: CGWatcher is not trying to restart CGMiner on: October 30, 2013, 12:23:01 AM
Awesome, thanks for posting that. I'll have to find somewhere on CGWatcher's download page to post it.  Grin
166  Other / Beginners & Help / Re: Hi, have issue on: October 26, 2013, 10:56:23 PM
What mining program are you using?

cgminer now shows accepted shares as diff1 share equivalent, so if you mined 1 share with diff 64, cgminer will report A: 64. The pool will only report 1 share.

bfgminer still shows the actual pool share count (at least as of 3.2.1) so it would report A: 1 matching the pool.

This also applies to rejected and stale shares I believe, but hardware errors are always equivalent to a diff1 share.

If you use CGWatcher there is a setting in the Settings tab called "Share count totals" to select which way you want share counts displayed.
167  Bitcoin / Mining software (miners) / Re: CGWatcher is not trying to restart CGMiner on: October 26, 2013, 08:31:48 PM
I don't see any indication that CGWatcher had stopped the miner. It also appears that it never received any information from the miner saying the device was sick or dead. Is this something you saw in the miner's window? Instead, my guess would be that the miner process crashed and closed because any time CGWatcher attempts to start/stop/restart the miner it creates several log entries.

By default, CGWatcher does not restart the miner if it is closed outside of CGWatcher because it doesn't know whether the miner crashed or whether you closed it (using Q or clicking the X to close the miner window). I didn't want CGWatcher to be relaunching processes that the user wanted to remain closed, so I made this an option (disabled by default). The option can be enabled in the Monitor tab: "Ensure miner stays running unless paused or stopped in CGWatcher". Enabling this means CGWatcher will always relaunch a closed miner unless CGWatcher closes it (user clicks the Pause Mining or Stop button, or a scheduled stop).

I can't say with 100% certainty this is what is happening, but if CGWatcher had received a response indicating the device was sick or dead... or if CGWatcher had stopped or attempted to restart the miner... there would be several log entries reporting this. If you have any more information that indicates otherwise, let me know. I did add some additional logging so if this happens in future versions it will be clearer to see... including an entry created if the miner closes outside of CGWatcher. Early on there are times during testing where I would accidentally close the miner by clicking X to close its window instead of stopping it in CGWatcher... so CGWatcher has never treated this as something critical. But if you enable the "Ensure miner stays running..." option it should.

I did find a bug that would cause scheduled actions triggered by a sick or dead device to not fire, but that isn't what is happening here... the "Restart miner when sick or dead devices are detected" monitor option was unaffected. I'll be releasing a minor update later today or tomorrow that fixes this and has the additional logging, along with a few remote-related changes and improvements.

Let me know if you have any additional information or questions, or if the problem continues even after enabling the "Ensure miner stays running..." option.

Thanks,
Justin
168  Bitcoin / Mining software (miners) / Re: CGWatcher is not trying to restart CGMiner on: October 25, 2013, 07:23:07 PM
When this happens, can you go to the Tests tab in CGWatcher and click "Create Debug Report"... then email me the results? (email is in readme.txt) The debug log is particularly what I'm interested in seeing to see if it explains what is happening, and the debug report includes the last 25 or so log entries. If you can attach cgwatcher.log to the email that will be even more helpful since it will have all log entries.

Thanks,
Justin
169  Other / Beginners & Help / Re: Hi! I'm a graduate student studying the bitcoin community. on: October 10, 2013, 08:14:17 AM
170  Bitcoin / Mining software (miners) / Re: CGWatcher 1.3.2, a GUI/monitor for CGMiner & BFGMiner to help minimize downtime on: October 09, 2013, 08:29:32 PM
I'm still awaiting more info from KNC owners as they get their machines to get information regarding the best way to manage them with CGWatcher. CGRemote will work with anything running cgminer or bfgminer (I believe KNC uses cgminer). CGWatcher, as it is written now, is very dependent on the miner process to be running on the same computer as this gives it the most control over monitoring and resolving problems. While bfgminer may be able to act as a proxy for self-contained mining devices allowing CGWatcher to work, CGWatcher would be monitoring that bfgminer process and not the mining process running on the miner, which is not ideal. CGRemote will ultimately provide almost all of the functionality of CGWatcher, but can do it for multiple miners on any OS and in any location, all in one program.

If you're interested in trying CGWatcher with a KNC miner, you would setup bfgminer and CGWatcher on the same computer similar to that of a Block Erupter Blade (assuming they work in the same manner). See bfgminer's README.ASIC.txt (more info online, including this thread). You're basically pointing the mining device at the computer bfgminer (and CGWatcher) is running on. Set bfgminer's http-port to the same port the mining device is set to. The linked thread mentions it is only available for Win32 and Linux, so I would try it with the 32-bit version of bfgminer, not the 64-bit. Please report any problems/results so I can get them fixed. Once running, CGWatcher would then be watching the bfgminer process which would be displaying the device and stats it gets via http. I'm curious as to how API commands work when sent to bfgminer in this case, particularly privileged commands. Make sure to start bfgminer with the mining device's IP address in the api-allow W: group.

I'll also be making changes to CGWatcher and CGRemote that will allow changing profiles without restarting the miner. This feature has been requested even before ASICs as some people prefer to restart the miner as least often as possible. It will work any time the profile is switched to another profile using the same algorithm (sha256->sha256 or scrypt->scrypt). If any problems occur during the switch, it will restart the miner as a failsafe (what it currently does when switching profiles). Aside from changing pools, it will change any other config settings that can be set via API. If too many config settings are changed that cannot be set via API, then the miner can be restarted instead.

Right now I'm back to working on CGRemote's next update, so if anything is needed to add support or functionality in these miners I'll be adding it as quickly as possible. Any information or feedback regarding KNC miners is appreciated.
171  Other / Beginners & Help / Re: BFGMiner how to setup to 40% POWER of GPU on: October 09, 2013, 07:16:40 PM
You're probably looking for Intensity (-I) which is a value of -10 to 14 (or 0 to 20 for scrypt) that sets the aggression level for mining. You can also set the intensity to D which will set aggression dynamically to ensure you can still use the computer while mining (without lag). The lower the intensity, the lower the hashrate and temps (and therefore fan speed). (I would not suggest using -I D for scrypt mining, your hashrate will drop down to very very low numbers).

If you're using Windows, you can also use CGWatcher to lower or raise intensity at certain times, intervals,  when the computer is idle, etc.
172  Bitcoin / Mining software (miners) / Re: CGWatcher 1.3.2, the GUI/monitor for CGMiner and BFGMiner to prevent downtime on: October 09, 2013, 05:11:12 AM
crazyearner:

Did you get this working? If not, are you using cgminer or bfgminer, and which version? Each has its own method for detecting and using them.


Makitaki:

I'm hoping that always including gpu-threads in config files doesn't cause any unexpected behavior for anyone who had been mining with one gpu thread and didn't realize it. But the readme says the default is 2, so I think ensuring it uses 2 is the correct way to handle it, and if anyone wants to go back to 1 they just need to change the setting to 1.

If you set CGWatcher to launch the miner when it starts, you can change the delay by changing the AutoLaunchDelay setting in CGWatcher.exe.ini. The value is the number of seconds to delay on auto-launch, and the default is 10. If this auto-launch setting is enabled (it's in the Settings tab), it overrides the 'Ensure miner stays running' option at startup.

So when CGWatcher starts, it first looks to see if it is set to auto-launch the miner (Settings tab option). If it is, it will use the AutoLaunchDelay seconds and temporarily disable the 'Ensure miner stays running' option until after the miner is auto-launched. Once this initial miner launch occurs, then the 'Ensure miner stays running' option is re-enabled. If the auto-launch option is disabled, the 'Ensure miner stays running' option currently kicks in immediately after starting, as you're pointing out.

That said, I'll also put on the to-do list to add a similar delay setting to the 'Ensure miner stays running' option, but using the above should provide what you're looking for also. I'll also find somewhere in the UI for the auto-delay setting so you don't have to edit the INI file.

As for the number formats, that is odd regardless of culture settings. I don't have the code in front of me right now and I don't remember exactly the method I used to format these values, but when I get back home I'll look into this and get it corrected.

Thanks again for the feedback.
173  Bitcoin / Mining software (miners) / Re: CGWatcher 1.3.2, the GUI/monitor for CGMiner and BFGMiner to prevent downtime on: October 07, 2013, 07:23:32 PM
Thanks, looking into this now. If you can start the miner with CGWatcher (to reproduce the problem) then go to the Tests tab in CGWatcher and click the 'Miner Start' button, it will display info about the config/arguments used to launch the miner. If you can email this to me (address at top of readme) it should make it much quicker to find the problem.


Edit: This is fixed, and version 1.3.2.2 is available. The problem was CGWatcher leaving this option out since it was set to its default value (2) which means the miner should have used 2... but I also saw that if left out it only used 1. Changes I had made to config file/arguments used at miner launch in version 1.3.2 is why this wasn't a problem before. Because of this unexpected behavior, it will always save the gpu-threads value to the config file, even if it's the default value. And if you're using arguments, it should be corrected now also. Thanks for making me aware of this, and let me know if you still experience any problems with it.
174  Bitcoin / Bitcoin Discussion / Re: Should miners collude to steal funds from wallet confiscated by US government? on: October 07, 2013, 04:51:57 AM
Let's say this happens. Bigger than the SR story would be the story that "a few million dollars has been stolen from the government."

Do you think that would help or hurt Bitcoin?

Do you think the average person is going to feel safe buying Bitcoins when not even the FBI could keep their Bitcoins safe?

This is likely the worst idea I've ever seen on these forums, and this place is full of bad ideas.
Agreed.



Edit: To the people whining below that it can't be done and therefore anyone answering whether it should be done is an idiot... the question is whether it should be done. Nowhere in the OP does it ask if it can be done, or how difficult or unlikely it would be.

175  Bitcoin / Mining software (miners) / Re: CGWatcher 1.3.2, a GUI/monitor for CGMiner & BFGMiner to help minimize downtime on: October 07, 2013, 03:57:13 AM
New in version 1.3.2
  • Desktop folder added to protected directories list to notify user that CGWatcher, miner, and config files should not be stored there.
  • Advanced Profile options to set CPU affinity and priority for miner process. Additional options to come in future versions.
  • Profile matching relaxed during miner launch to reduce risk of miner being ignored (rare).
  • Fixed ads only reloading after restarting CGWatcher.
  • Button added to Tests tab to list all installed .NET updates for troubleshooting purposes.
  • Option to restart computer if CGWatcher is unable to close or kill miner processes. Although rare, this indicates a more serious problem (Task Manager is also unable to kill the processes) and usually leads to a BSOD (crash). The only way to resolve this is to restart the computer.
  • Pools truncated from miner's API response (~Pool 35+) will get info from config to avoid chinese-looking characters being shown for url/username/password. No stats are available for these pools though because the data is cutoff from the miner's response, which has a fixed maximum length.
  • Fixed pools set in arguments being added twice to temp config file before miner starts.
  • Added scheduled action to send specified API command(s) to miner.
  • Settings tab added to Coin Manager, 'Remove coins no longer on CoinChoose' option moved to Settings tab of Coin Manager.
  • Coin profitability data refresh interval setting now in Settings tab of Coin Manager.
  • Setting created to base coin profitability on bitcoin or litecoin, located in Settings tab of Coin Manager.
  • New coin notification option moved to Settings tab of Coin Manager.
  • Scheduled action frequency added - 'When event occurs...' allowing you to select from a list of events that will trigger the action being run. Events currently consist of miner events, profile events, and coin profitability events. More events will be added in future updates.
  • Create your own profitability formula in a custom coin field that can be used when creating scheduled actions that switch profile based on profitability. Instead of using an existing field (profitability, difficulty, etc) you can create your own mathematical expression using all existing fields and mathematical functions.
  • Fixed CGWatcher not trying to start the miner indefinitely when the 'Keep trying indefinitely' failure option was selected. (It will try up to 2147843647 times.)
  • Miner process not added to checked process list until it has been running for 60+ seconds to prevent incorrectly ignoring it.
  • Added 'Send email' scheduled action. You can specify an email address for each action, the last used will be filled in automatically. Emails are currently limited to 25 per computer per day, but this may increase or decrease over time depending on usage. Counter is reset at midnight EST/EDT (U.S. Eastern). Emails will be coming from @cgwatcher.com, and you will need to ensure you can access http://minerremote.com for email to work correctly.
  • More scheduled action events will be added, with additional options like 'when hashrate drops below/%', 'when miner restart fails X consecutive times, etc. I figured I'd add them in groups instead of trying to do it all at once.
  • If CGWatcher is set to try starting the miner indefinitely (and it keeps failing), it will wait one second per 10 attempts in between attempts over 10, up to 60 seconds. So after 600 attempts it will wait one minute between each attempt.
  • CGWatcher restarting GPUs that cgminer has disabled due to overheat no longer requires CGWatcher's overheat protection to be enabled. It will do this for all GPUs since the miner usually fails at re-enabling them.
  • Before restarting computer, CGWatcher will temporarily set itself to start with Windows and launch miner at startup if these options are not enabled. It will reset the options back to their original settings the next time CGWatcher is started.
  • Restart computer prompt changed to always use CGWatcher's prompt only, which provides a cancel option, rather than the Windows notification that the computer is restarting. This was already how scheduled computer restarts were handled, but is now done for all computer restarts.
  • Profitability-based scheduled actions (switch profile based on profitability) will update coin data before selecting a profile unless it had been updated within the past minute instead of within the past 5 minutes.
  • Added average time per share to Monitor tab to help in setting appropriate number of minutes without share increase for this monitoring option.
  • Added "% of Avg" to Hashrate Cutoff monitoring option, which will restart the miner if the current hashrate drops below the specified percentage of the current average hashrate. This is in addition to being able to set actual hashrate values.
  • Elapsed mining time added to Stats tab.
  • In Pools tab, pool drop-down will default to current pool and revert to current pool if user has not selected a different pool to view within the last 5 minutes.
  • Added support for pool quota option in CGMiner 3.4.3+
  • Added config file and argument options up through CGMiner 3.5.0 and BFGMiner 3.2.1.
  • Select a different value to display on the Status tab in place of Efficiency, or create your own value using existing values and mathematical functions to create a custom expression.
176  Bitcoin / Mining software (miners) / Re: CGWatcher 1.3.2, the GUI/monitor for CGMiner and BFGMiner to prevent downtime on: October 07, 2013, 03:57:02 AM
New in version 1.3.2
  • Desktop folder added to protected directories list to notify user that CGWatcher, miner, and config files should not be stored there.
  • Advanced Profile options to set CPU affinity and priority for miner process. Additional options to come in future versions.
  • Profile matching relaxed during miner launch to reduce risk of miner being ignored (rare).
  • Fixed ads only reloading after restarting CGWatcher.
  • Button added to Tests tab to list all installed .NET updates for troubleshooting purposes.
  • Option to restart computer if CGWatcher is unable to close or kill miner processes. Although rare, this indicates a more serious problem (Task Manager is also unable to kill the processes) and usually leads to a BSOD (crash). The only way to resolve this is to restart the computer.
  • Pools truncated from miner's API response (~Pool 35+) will get info from config to avoid chinese-looking characters being shown for url/username/password. No stats are available for these pools though because the data is cutoff from the miner's response, which has a fixed maximum length.
  • Fixed pools set in arguments being added twice to temp config file before miner starts.
  • Added scheduled action to send specified API command(s) to miner.
  • Settings tab added to Coin Manager, 'Remove coins no longer on CoinChoose' option moved to Settings tab of Coin Manager.
  • Coin profitability data refresh interval setting now in Settings tab of Coin Manager.
  • Setting created to base coin profitability on bitcoin or litecoin, located in Settings tab of Coin Manager.
  • New coin notification option moved to Settings tab of Coin Manager.
  • Scheduled action frequency added - 'When event occurs...' allowing you to select from a list of events that will trigger the action being run. Events currently consist of miner events, profile events, and coin profitability events. More events will be added in future updates.
  • Create your own profitability formula in a custom coin field that can be used when creating scheduled actions that switch profile based on profitability. Instead of using an existing field (profitability, difficulty, etc) you can create your own mathematical expression using all existing fields and mathematical functions.
  • Fixed CGWatcher not trying to start the miner indefinitely when the 'Keep trying indefinitely' failure option was selected. (It will try up to 2147843647 times.)
  • Miner process not added to checked process list until it has been running for 60+ seconds to prevent incorrectly ignoring it.
  • Added 'Send email' scheduled action. You can specify an email address for each action, the last used will be filled in automatically. Emails are currently limited to 25 per computer per day, but this may increase or decrease over time depending on usage. Counter is reset at midnight EST/EDT (U.S. Eastern). Emails will be coming from @cgwatcher.com, and you will need to ensure you can access http://minerremote.com for email to work correctly.
  • More scheduled action events will be added, with additional options like 'when hashrate drops below/%', 'when miner restart fails X consecutive times, etc. I figured I'd add them in groups instead of trying to do it all at once.
  • If CGWatcher is set to try starting the miner indefinitely (and it keeps failing), it will wait one second per 10 attempts in between attempts over 10, up to 60 seconds. So after 600 attempts it will wait one minute between each attempt.
  • CGWatcher restarting GPUs that cgminer has disabled due to overheat no longer requires CGWatcher's overheat protection to be enabled. It will do this for all GPUs since the miner usually fails at re-enabling them.
  • Before restarting computer, CGWatcher will temporarily set itself to start with Windows and launch miner at startup if these options are not enabled. It will reset the options back to their original settings the next time CGWatcher is started.
  • Restart computer prompt changed to always use CGWatcher's prompt only, which provides a cancel option, rather than the Windows notification that the computer is restarting. This was already how scheduled computer restarts were handled, but is now done for all computer restarts.
  • Profitability-based scheduled actions (switch profile based on profitability) will update coin data before selecting a profile unless it had been updated within the past minute instead of within the past 5 minutes.
  • Added average time per share to Monitor tab to help in setting appropriate number of minutes without share increase for this monitoring option.
  • Added "% of Avg" to Hashrate Cutoff monitoring option, which will restart the miner if the current hashrate drops below the specified percentage of the current average hashrate. This is in addition to being able to set actual hashrate values.
  • Elapsed mining time added to Stats tab.
  • In Pools tab, pool drop-down will default to current pool and revert to current pool if user has not selected a different pool to view within the last 5 minutes.
  • Added support for pool quota option in CGMiner 3.4.3+
  • Added config file and argument options up through CGMiner 3.5.0 and BFGMiner 3.2.1.
  • Select a different value to display on the Status tab in place of Efficiency, or create your own value using existing values and mathematical functions to create a custom expression.
177  Bitcoin / Hardware / Re: Official Thread: Advanced Mining Technology (AMT) on: October 02, 2013, 01:26:44 AM
So much for the good customer service angle... 3 pages into your official thread and you're already getting bitchy. If you've been involved in the bitcoin community long enough to be developing asics, you should already know this comes with the territory. If you want to prove everyone wrong, do it with your machines and not in pissy posts to anyone questioning you. If you're legitimate and competent, you should have come here prepared with more information than you'd even need... instead it's a lot of nothing.

The one guy defending you, claiming you're "on the level", has 4 posts and I get the feeling you and boaz33 are the same person. I came across another newbie who only posts recommending your company, even when nobody is asking... are you also Samadamsdrinker?

It seems that the few companies that delivered miners are hated for false promises and late delivery, and the few that aren't hated haven't delivered yet. I'm just wondering if this community believes there is room for another manufacturer.

I've done a great deal of research and have read most of these forums and I finally decided to sign up and ask a few questions that Id like some advice on. Basically it seems most miner manufacturing companies are either hated because of late deliveries, false promises etc. Or still credible because they haven't delivered a product yet. But they are all saying the same thing, "X power will be delivered by this date, pay now".

I guess the questions I'd like some answers on are:

1. If a company came on the market now, brand new, what would it need to have/offer in order collect and really sell. Is there even room for another company (which actually delivered) on the market?

2. Would delivering a product (despite its hashing power) say a 60ghz by Nov 1, give credibility to a new company? For selling and delivering a product on time between now and then. Or would it not make a difference either way because the product they delivered would only be efficient for a short time, or enough to make Roi.

3. If companies are not delivering miners on time, why is the difficulty rate increasing at this substantial rate per day, is it just from Asic's usb sticks and 10GHz models? Has anyone asked how long the actual miners sit in the manufacturing facility just hashing, before shipping to the buyer.

It almost seems to that these guys have the products and its more profitable for them to give refunds than to deliver the damn machines.

These are probably questions that have already been answered somewhere, and I have a few more as well as well after this. Helpful and supportive answers are highly appreciated and wont be forgotten.

.·.

and one of your last posts (keep in mind, you only registered on the forum on September 29th)...

Ok there are few spelling mistakes, get over it. And there is a third floor to that office, walk in the office, go up the green stairs, next to the bar is a door, go through the door and up to the third floor. Yes it is a small space,  and no where not spending a lot of money on the location because this is primarily an online business anyway and we've put a lot of our own money into bring you miners. Ask for Harry who is in the office AT THE MOMENT, if you must. Bring your money and buy a miner for bs your putting us through. We're most likely not going to make any money off the first line and we're just trying to bring a miner to market to demonstrate trust and we're met with all this crap.

In this industry you have the choice of buying a miner and waiting 6 months until you don't meet roi, or buying a miner and never getting it. We're trying to bring a difference to the market by being open, and legit about everything, and not running our damn miners in the mean time while our customers wait and email us their concerns while we dont respond.  And you know why they do that, cause they make more money in time you wait for your purchased miner and can afford to give you a refund when your so pissed. We're trying to do things differently and bring miners to market quickly.

When i'm back in the office in a few weeks, please come see me personally and we'll make a nice video together, i promise.

We're keeping it on the level, because we're on the square brother.


Also, "Refunds will be given if we don't meet shipment dates within a reasonable time." What if our definitions of reasonable time are different? There seems to be a lot of gray area in this whole scheme.

Thanks in advance for answering my concerns.



178  Other / Beginners & Help / Re: blackarrow software advice on: October 02, 2013, 01:06:46 AM
I just looked at Blackarrows website. It says they don't deliver their miners until Febuary 2014! that's along time to wait for a miner.

I just commented on a guys post who just ordered from http://Advancedminers.com and he said that he called them and they deliver in 4 weeks from the time you order it.

I suggest that you hold off on ordering anything from advancedminers.com until it has been confirmed as legitimate by someone other than a forum newbie with three posts all recommending AMT miners. This company, its spokesman, and related thread are throwing up some red flags. I'm not certain it's a scam, but make sure to do your due diligence before giving them any money.
179  Alternate cryptocurrencies / Pools (Altcoins) / Re: [ANN][Profit-switch][1.5%fee] multipool.us:Always mine the most profitable coin on: October 02, 2013, 12:05:04 AM
Now after multiport switch the cgwatcher cant even successfuly restart cgminer. Hope you can help me with that when you have time flound Wink

I'm not sure man, what version of cgminer are you using, can you post your config and screenshot?

3.3.1 but the same happened with 3.5. Let me repost the miner log:

"[2013-09-30 14:04:57]  CGMiner (3068): Network difficulty is now 1 113 889.
[2013-09-30 14:05:27]  CGMiner (3068): 1 getwork failure(s) reported.
[2013-09-30 14:06:27]  CGMiner (3068): Pool 0 (fredeq.1@http://pool1.eu.multipool.us:7777) status is DEAD
[2013-09-30 14:06:27]  CGMiner (3068): Miner restart requested...
[2013-09-30 14:06:45]  CGMiner (3068): Process closed.

[2013-09-30 14:06:45]  CGMiner (3700): Process started using "multiport" profile on port 4028.
[2013-09-30 14:07:49]  CGMiner (3700): Process closed.

[2013-09-30 14:07:51]  CGMiner (3864): Process started using "multiport" profile on port 4028.
[2013-09-30 14:08:55]  CGMiner (3864): Process closed.

[2013-09-30 14:08:56]  CGMiner (2292): Process started using "multiport" profile on port 4028.
[2013-09-30 14:10:00]  CGMiner (2292): Process closed.

[2013-09-30 14:10:02]  CGMiner (2336): Process started using "multiport" profile on port 4028.
[2013-09-30 14:10:21]  CGMiner (2336): GPU0 (AMD Radeon HD 7900 Series) status is ALIVE
[2013-09-30 14:10:21]  CGMiner (2336): GPU1 (AMD Radeon HD 7900 Series) status is ALIVE
[2013-09-30 14:10:21]  CGMiner (2336): GPU2 (AMD Radeon HD 7900 Series) status is ALIVE
[2013-09-30 14:10:21]  CGMiner (2336): Pool 0 (@http://pool1.eu.multipool.us:7777) status is ALIVE
[2013-09-30 14:10:21]  CGMiner (2336): Current pool is Pool 0 (fredeq.1@http://pool1.eu.multipool.us:7777)
[2013-09-30 14:10:22]  CGMiner (2336): Network difficulty is now 69 752 039."


As you can see before each switch I am getting a getwork failure and then pool is going dead for me.
Moreover I was never able to successfuly mine through multiport(started 2 days ago) so the solution maybe too obvious to see.

Then cgwatcher tries to restart but cgminer just wont connect to pool as if pool was dead, or more likely rejecting my connection on purpose.

Edit to clarify: CGwatcher is able to start cgminer but it just waits at startup showing only version info. Like it was waiting for connection. Since no connection is made in 30 secs, no api is started therefore cgwatcher kills the process and starts over. If I wait a certain amount of time it will connect me in few secs(sometimes takes 2, sometimes 10 attempts).

Edit2: I am not using conf file, so there are no hidden switches that could crash cgminer. Just command line:
"--scrypt -o pool1.eu.multipool.us:3336 -u fredeq.1 -p 1xx --intensity 13 --worksize 256 --shaders 2048 --thread-concurrency 8192 -v 1 -g 2"

Fredeq: I would suggest setting at least one backup pool (aside from another multipool server) so that if you're unable to connect to multipool, you're at least mining something. If you have cgminer set to failover, it should switch to the backup pool and then check the first pool occasionally to see if it is alive. If it is alive, it will switch back to it. This should also resolve the problem of cgminer taking so long when starting, because it will find a working pool and continue instead of trying to use a dead pool indefinitely.

If you find that cgminer does not switch back to multipool (or any pool with lower priority number) when it comes back alive, let me know and I'll try to add options in CGWatcher to ensure this happens. I think cgminer has always done this correctly in my personal experience.
180  Other / Beginners & Help / Re: blackarrow software advice on: October 01, 2013, 11:53:55 PM
It depends. If everyone was mining the same alt-coins and going with most profitable, then yes, that coin's difficulty would increase and so would the likelihood that there will not be enough buyers if the coin's trading volume is low (as is the case with many alt-coins). This already happens with scrypt-based coins, and pools like middlecoin and hashco.ws only exacerbate this by having everyone in the pool do the exact same thing at the exact same time. With CGWatcher, you can select which coins to mine, so if you don't mine all alt-coins you reduce the risk of being on the same coin as the herd. You can also choose to mine your 1st, 2nd, 3rd, etc. most profitable just to avoid situations like this. Although a coin is 2nd most profitable, by not going with 1st most profitable you're hopefully avoiding the herd and you can mine that coin longer without difficulty spikes. You can also set how often it checks & switches coins by interval or date/time (or other options) to further separate yourself from everyone else.

There are also a number of attributes you can set CGWatcher to use when deciding which coin to mine:

Profitability
Profitability (adjusted for stales)
Profitability (24-hour average)
Highest Reward
Lowest Difficulty
Lowest Network Hashrate
Lowest Network Hashrate (7-day average)

Right now I'm working on allowing the user to create their own formula using these values, which will allow you to experiment rather than just go by what CoinChoose deems most profitable as everyone else is. This will reduce the likelihood even more that you're mining with the herd, which means the coin you're mining won't be most profitable for very long once difficulty and trading volume catch up.
Pages: « 1 2 3 4 5 6 7 8 [9] 10 11 12 13 14 15 16 17 18 19 20 21 22 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!