patrike (OP)
Legendary
Offline
Activity: 3500
Merit: 1095
|
|
October 19, 2018, 07:25:45 AM |
|
Hey, just to let you know.
Awesome Miner has now started coming up as Malware on Avast Anti-Virus.
someone may have an issue with AM and added it to the naughty list.
And i don't mean the mining apps it runs, but AM itself.
you might need to contact them and find out why and have it removed. for now, i have just added it to the exclusion list.
*[edit] posted before scrolling back. i now see you have this under control.*
for Avast they do because of phones/tablets being infected with malicious xmr miners the hog up their resources... so they will block everything mining related
Although I already reported this to Avast, I still always recommend users of Awesome Miner that run into these anti-virus software warnings to report it as a false positive to the anti-virus software vendor to make them more aware of the issue: https://www.avast.com/false-positive-file-form.php
|
Awesome Miner - Complete solution to manage and monitor mining operations of ASIC, GPU and CPU miners Optimized Antminer firmware - Increased hashrate, improved power efficiency and more features. For S9, S9i, S9j, T9+, L3+, S17, S17 Pro, S17+, T17, T17+, S19, S19 Pro, S19j, S19j Pro, T19 Up to 200,000 miners | Notifications | Native overclocking | Profit switching | Customizable rules | API | Windows application | Mobile web
|
|
|
patrike (OP)
Legendary
Offline
Activity: 3500
Merit: 1095
|
|
October 19, 2018, 07:26:24 AM |
|
Anyonne notices Afterburner remote server stopped working after 5.7.1 upgrade ?? or just coincidence..
I've not received any other reports on this. Is it the Afterburner Remote Server itself that isn't starting/running correctly?
|
Awesome Miner - Complete solution to manage and monitor mining operations of ASIC, GPU and CPU miners Optimized Antminer firmware - Increased hashrate, improved power efficiency and more features. For S9, S9i, S9j, T9+, L3+, S17, S17 Pro, S17+, T17, T17+, S19, S19 Pro, S19j, S19j Pro, T19 Up to 200,000 miners | Notifications | Native overclocking | Profit switching | Customizable rules | API | Windows application | Mobile web
|
|
|
patrike (OP)
Legendary
Offline
Activity: 3500
Merit: 1095
|
|
October 19, 2018, 07:27:35 AM |
|
So i switched a miner from profit switch but when I try to mine it says could not not reslove host any ideas can you try this IP
stratum+tcp://67.40.164.169::12345
In the URL you pasted here you have two ':', which might be the reason why some mining software are unable to establish the connection.
|
Awesome Miner - Complete solution to manage and monitor mining operations of ASIC, GPU and CPU miners Optimized Antminer firmware - Increased hashrate, improved power efficiency and more features. For S9, S9i, S9j, T9+, L3+, S17, S17 Pro, S17+, T17, T17+, S19, S19 Pro, S19j, S19j Pro, T19 Up to 200,000 miners | Notifications | Native overclocking | Profit switching | Customizable rules | API | Windows application | Mobile web
|
|
|
patrike (OP)
Legendary
Offline
Activity: 3500
Merit: 1095
|
|
October 19, 2018, 07:57:04 AM |
|
hi patrike cryptonightv8 miner for nvidia ?
i use awesome miner free version . i have 2 rig can i set 1 rig mine x17 algo and another mine x16r from 2 custom pool ?
Most CNv8 miners are for AMD. I just looked at XMRig and it should be able to do CNv8 mining although the documentation isn't very clear on the exact parameter configuration for it. Awesome Miner is not automatically setting the command line parameters for using XMRig nVidia with CNv8, but it looks like it works f you add "--variant 2" (compared to "--variant 1" with CNv7). I will add this to the next release of Awesome Miner. If anyone else has more insight, please let me know.
|
Awesome Miner - Complete solution to manage and monitor mining operations of ASIC, GPU and CPU miners Optimized Antminer firmware - Increased hashrate, improved power efficiency and more features. For S9, S9i, S9j, T9+, L3+, S17, S17 Pro, S17+, T17, T17+, S19, S19 Pro, S19j, S19j Pro, T19 Up to 200,000 miners | Notifications | Native overclocking | Profit switching | Customizable rules | API | Windows application | Mobile web
|
|
|
patrike (OP)
Legendary
Offline
Activity: 3500
Merit: 1095
|
|
October 19, 2018, 08:09:40 AM |
|
We have over 100 miners at our location. I want to create a rule so I get a single notification if 10 or more miners are offline all at the same time. How do I do that?
Thanks
Hi again, You can create a trigger of the type "C# script" and use the script below to detect if the number of miners offline is 10 or more. You can then add any action you want for this rule, for example a Notification. public class TriggerScript { private ContextProvider Context = ScriptManager.Context; public List<IMinerBase> Check(List<IMinerBase> minerList) { const int TriggerIfNumberOffline = 10; List<IMinerBase> triggerList = new List<IMinerBase>(); foreach (IMinerBase miner in minerList) { if (miner.IsRunningState == false) triggerList.Add(miner); } if (triggerList.Count >= TriggerIfNumberOffline) return triggerList; return null; } }
|
Awesome Miner - Complete solution to manage and monitor mining operations of ASIC, GPU and CPU miners Optimized Antminer firmware - Increased hashrate, improved power efficiency and more features. For S9, S9i, S9j, T9+, L3+, S17, S17 Pro, S17+, T17, T17+, S19, S19 Pro, S19j, S19j Pro, T19 Up to 200,000 miners | Notifications | Native overclocking | Profit switching | Customizable rules | API | Windows application | Mobile web
|
|
|
moppidoo
Jr. Member
Offline
Activity: 348
Merit: 5
|
|
October 19, 2018, 08:19:43 AM |
|
hi patrike cryptonightv8 miner for nvidia ?
i use awesome miner free version . i have 2 rig can i set 1 rig mine x17 algo and another mine x16r from 2 custom pool ?
Most CNv8 miners are for AMD. I just looked at XMRig and it should be able to do CNv8 mining although the documentation isn't very clear on the exact parameter configuration for it. Awesome Miner is not automatically setting the command line parameters for using XMRig nVidia with CNv8, but it looks like it works f you add "--variant 2" (compared to "--variant 1" with CNv7). I will add this to the next release of Awesome Miner. If anyone else has more insight, please let me know. Hi, I just tested earlier today, use Works for me
|
|
|
|
patrike (OP)
Legendary
Offline
Activity: 3500
Merit: 1095
|
|
October 19, 2018, 12:14:40 PM |
|
Awesome Miner version 5.7.2
- Dialog to define pool coin improved to allow selecting if the coin list should be filtered based on the algorithm selection of the miner or if it should include all
Hi patrike, I don´t understand this.... Well, only when the algo does not mactch the coin ? I've had a number of support cases where an External Miner was configured with some algorithm, for example X11 for an Antminer D3, and then user user changed IP of the miner to point to an Antminer L3 (Scrypt). That works fine even if the algorithm happen to be set to X11 (this setting isn't that important), but later on when you are about to use Define Pool Coin you cannot find Litecoin because of the algorithm filter. With this change, you can find Litecoin and select it even if your miner had another algorithm set. So it's a way to make it easier for users to make the configuration they want right away.
|
Awesome Miner - Complete solution to manage and monitor mining operations of ASIC, GPU and CPU miners Optimized Antminer firmware - Increased hashrate, improved power efficiency and more features. For S9, S9i, S9j, T9+, L3+, S17, S17 Pro, S17+, T17, T17+, S19, S19 Pro, S19j, S19j Pro, T19 Up to 200,000 miners | Notifications | Native overclocking | Profit switching | Customizable rules | API | Windows application | Mobile web
|
|
|
patrike (OP)
Legendary
Offline
Activity: 3500
Merit: 1095
|
|
October 19, 2018, 12:17:21 PM |
|
hi patrike cryptonightv8 miner for nvidia ?
i use awesome miner free version . i have 2 rig can i set 1 rig mine x17 algo and another mine x16r from 2 custom pool ?
Most CNv8 miners are for AMD. I just looked at XMRig and it should be able to do CNv8 mining although the documentation isn't very clear on the exact parameter configuration for it. Awesome Miner is not automatically setting the command line parameters for using XMRig nVidia with CNv8, but it looks like it works f you add "--variant 2" (compared to "--variant 1" with CNv7). I will add this to the next release of Awesome Miner. If anyone else has more insight, please let me know. thanks about i use awesome miner free version . i have 2 rig can i set 1 rig mine x17 algo and another mine x16r from 2 custom pool ? how can do it ? and this work for nvidia : https://coinguides.org/ccminer-cryptonight-v3-v7-v8/If you want to select the pools and mining software manually, you can create two Managed Miners: https://support.awesomeminer.com/support/solutions/articles/35000085995-add-managed-miners-using-the-wizardIf you want Awesome Miner to do the profit switching, you can create two Managed Profit Miners. In this case you can also configure custom pools to use for the profit switcher in the Options dialog, Profit switching section, "Custom pools": https://support.awesomeminer.com/support/solutions/articles/35000086086-profit-switching-for-gpu-and-cpu-mining#profitsingleYou can also mix these concepts. You can add one Managed Miner miner for your custom X16r pools and then have one Managed Profit Miner working on the most profitable X17 pool.
|
Awesome Miner - Complete solution to manage and monitor mining operations of ASIC, GPU and CPU miners Optimized Antminer firmware - Increased hashrate, improved power efficiency and more features. For S9, S9i, S9j, T9+, L3+, S17, S17 Pro, S17+, T17, T17+, S19, S19 Pro, S19j, S19j Pro, T19 Up to 200,000 miners | Notifications | Native overclocking | Profit switching | Customizable rules | API | Windows application | Mobile web
|
|
|
O-Coin
Jr. Member
Offline
Activity: 61
Merit: 2
|
|
October 19, 2018, 03:06:21 PM |
|
@Patrike
Looks like miningpool hub online services using algo V7 and now profit profile switching to MPH XMR and resulting in rejected shares.
|
|
|
|
patrike (OP)
Legendary
Offline
Activity: 3500
Merit: 1095
|
|
October 19, 2018, 04:12:25 PM |
|
@Patrike
Looks like miningpool hub online services using algo V7 and now profit profile switching to MPH XMR and resulting in rejected shares.
Thanks for letting me know, I will update this. There are many moving targets when a major coin like Monero is changing algorithm.
|
Awesome Miner - Complete solution to manage and monitor mining operations of ASIC, GPU and CPU miners Optimized Antminer firmware - Increased hashrate, improved power efficiency and more features. For S9, S9i, S9j, T9+, L3+, S17, S17 Pro, S17+, T17, T17+, S19, S19 Pro, S19j, S19j Pro, T19 Up to 200,000 miners | Notifications | Native overclocking | Profit switching | Customizable rules | API | Windows application | Mobile web
|
|
|
patrike (OP)
Legendary
Offline
Activity: 3500
Merit: 1095
|
|
October 19, 2018, 04:28:41 PM |
|
Update on the Avast/AVG issue that started about two days ago:
I've been in contact with their support team and they have promised to whitelist Awesome Miner based on its digital signature that is used to sign the installer and all binaries. They also stated that Awesome Miner didn't contain any threats (well, I knew that already).
This should be part of their next virus definition update and I hope this will resolve the issue with warning dialogs from the Avast/AVG software when downloading Awesome Miner.
|
Awesome Miner - Complete solution to manage and monitor mining operations of ASIC, GPU and CPU miners Optimized Antminer firmware - Increased hashrate, improved power efficiency and more features. For S9, S9i, S9j, T9+, L3+, S17, S17 Pro, S17+, T17, T17+, S19, S19 Pro, S19j, S19j Pro, T19 Up to 200,000 miners | Notifications | Native overclocking | Profit switching | Customizable rules | API | Windows application | Mobile web
|
|
|
SiddFan
Newbie
Offline
Activity: 49
Merit: 0
|
|
October 19, 2018, 06:32:30 PM |
|
Anyonne notices Afterburner remote server stopped working after 5.7.1 upgrade ?? or just coincidence..
I've not received any other reports on this. Is it the Afterburner Remote Server itself that isn't starting/running correctly? Yes.. just starts (shows icon) then stops after 2-3 seconds... (icon dissapears)
|
|
|
|
MHyza
Newbie
Offline
Activity: 36
Merit: 0
|
|
October 19, 2018, 07:00:54 PM |
|
Hi Patrike, any news regarding https://icemining.ca/ addition, PLEASE M.
|
|
|
|
MoparMiningLLC
aka Stryfe
Legendary
Online
Activity: 2268
Merit: 2420
EIN: 82-3893490
|
|
October 19, 2018, 07:09:39 PM |
|
anyone in Florida and have frontier cable that can help me figure out how to set this up via my router so I can access off network?
|
|
|
|
Lunga Chung
Member
Offline
Activity: 277
Merit: 23
|
|
October 19, 2018, 07:34:28 PM |
|
How to setup SRBminer as a managed miner to display rig id on the pool? I use supportxmr pool and adding parameters in command line doesn't help
tried adding this:
--cworker RIG1 --cpassword RIG1
(since the config file for xmr-stak looks like this
Currency: monero8 Pool address: "pool.supportxmr.com:5555", Username: "43QGgipcHvNLBX3nunZLwVQpF6VbobmGXXXXXXXXXXXXXXXXX1tUHcKPm9bcjubrzKqTm69JbQSL4B3 f6E3mNCbU", Password: "RIG1", Rid ID: "RIG1", TLS/SSL: "No", Nicehash: No
|
|
|
|
GoRdiE
Newbie
Offline
Activity: 162
Merit: 0
|
|
October 19, 2018, 08:24:29 PM |
|
|
|
|
|
Marvell2
|
|
October 19, 2018, 10:38:45 PM Last edit: October 19, 2018, 11:13:36 PM by Marvell2 |
|
So i switched a miner from profit switch but when I try to mine it says could not not reslove host any ideas can you try this IP
stratum+tcp://67.40.164.169::12345
In the URL you pasted here you have two ':', which might be the reason why some mining software are unable to establish the connection. I fixed the port but still the same problem when i run Zenemy manually it works but though Awesome miner it still cant connect [INFO ] 18/10/19 17:43:22 zealot/enemy-1.22 miner (64 bit) [INFO ] 18/10/19 17:43:22 NVIDIA CUDA 9.1 [INFO ] 18/10/19 17:43:22 Dev fee is 1.0% [NOTICE ] 18/10/19 17:43:22 MAIN POOL---------------------------------------------- [NOTICE ] 18/10/19 17:43:22 URL : stratum+tcp://67.40.164.169:12345 [NOTICE ] 18/10/19 17:43:22 USER: Marvell9.152 [NOTICE ] 18/10/19 17:43:22 PASS: x [NOTICE ] 18/10/19 17:43:22 ------------------------------------------------------- [NOTICE ] 18/10/19 17:43:22 FAILOVER POOLs----------------------------------------- [NOTICE ] 18/10/19 17:43:22 NONE [NOTICE ] 18/10/19 17:43:22 ------------------------------------------------------- [NOTICE ] 18/10/19 17:43:22 Starting on stratum+tcp://67.40.164.169:12345 [ERROR ] 18/10/19 17:43:22 ...retry after 30 seconds [INFO ] 18/10/19 17:43:22 GPU monitoring enabled (NVML). [INFO ] 18/10/19 17:43:22 Mining 'x16r' with 8 threads. [X16 ] 18/10/19 17:43:22 Hashorder algorithm legend: Slow Medium Fast [ERROR ] 18/10/19 17:43:52 ...retry after 30 seconds
ok I figured it out, its a YIIM pool so user name is the wallet name the other problem I have is i set my worker names using a btach coommand , for my pools when i do it manually like so set host=%COMPUTERNAME% echo %host% FOR /f "tokens=1,2 delims=-" %%a IN ("%host%") do echo %%a& set hostid=%%b echo %hostid% @echo off :start z-enemy -a x16r -o stratum+tcp://192.168.0.109:12345 -u RWV7ERvrknv9cwutNMsMoCfnWA2uU7Typq -p Marvell9.%hostid% how do i do this with the awesmone miner ? can i just use the host ?
|
|
|
|
moppidoo
Jr. Member
Offline
Activity: 348
Merit: 5
|
|
October 19, 2018, 11:32:16 PM |
|
the other problem I have is i set my worker names using a btach coommand , for my pools when i do it manually like so
set host=%COMPUTERNAME% echo %host%
FOR /f "tokens=1,2 delims=-" %%a IN ("%host%") do echo %%a& set hostid=%%b
echo %hostid%
@echo off :start z-enemy -a x16r -o stratum+tcp://192.168.0.109:12345 -u RWV7ERvrknv9cwutNMsMoCfnWA2uU7Typq -p Marvell9.%hostid%
how do i do this with the awesmone miner ? can i just use the host ?
You should be able to achieve that with this guide https://support.awesomeminer.com/support/solutions/articles/35000086024-pool-worker-names
|
|
|
|
slysir
Newbie
Offline
Activity: 52
Merit: 0
|
|
October 19, 2018, 11:45:17 PM |
|
Using NVidia driver 416.34 my GTX 1060 gets 450 H/s running algo cnv8.
|
|
|
|
Nuttawut
Newbie
Offline
Activity: 21
Merit: 0
|
|
October 20, 2018, 03:10:25 PM |
|
Z-ENEMY VER 1.22a From: Dk & Enemy (z-enemy) IMPORTANT: For maximum performance make sure you have latest drivers (ver. 415+) http://www.nvidia.com/Download/index.aspxCuda 10 x64 ver1. (closed build for 10x0 & 20x0): https://mega.nz/#!4GJXXKLK!JEflylsVrvl-DG2-WzaGA3_iWs0dnAmAYTcnWkI-RWs - Minor performance improvements for x16, x17 - Bug fixes and increased stability And zjazz_cuda_miner [zjazz CUDA v1.2] mining algo : x22i suqa hashrate 220GH/s This is a recommended update for all users (all algorithms/coins) Depending on several factors some shares were lost, this update fixes the issue. On machines affected by this issue it will reflect a slight increment of shares on the pool side. Changelist: Stratum connection stability improved Bugfix: edge cases with lost shares Command line intensity -i and --intensity argument now works with X22i Algorithm name command argument now non-case sensitivity update ++++
|
|
|
|
|