Bitcoin Forum
June 01, 2024, 12:40:30 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 [301] 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 ... 499 »
  Print  
Author Topic: PhoenixMiner 6.2c: fastest Ethereum/Ethash miner with lowest devfee (Win/Linux)  (Read 784666 times)
Ursul0
Sr. Member
****
Offline Offline

Activity: 857
Merit: 262


View Profile
November 24, 2020, 04:48:34 PM
 #6001

Hello, i am sure this question was asked a lot of times - but i never needed it

i was just running PM miner since it exists with not much overtuned cards and it always worked without issues!

now i wantes to run it as an admin ,- in windows i am logged in as an admin, -but to run the bat file as an admin - after starting it says this is not an internal command?

what do i make wrong?

THX

You can't run a bat file as admin.

sure you can run anything as admin, the proper way would be though to use task scheduler checking "run with highest privileges" 
Also the problem is that it starts in system32 folder and there's no phoenix miner;)
zydake
Newbie
*
Offline Offline

Activity: 7
Merit: 0


View Profile
November 24, 2020, 05:04:55 PM
 #6002


add -config config.txt:

setx GPU_FORCE_64BIT_PTR 0
setx GPU_MAX_HEAP_SIZE 100
setx GPU_USE_SYNC_OBJECTS 1
setx GPU_MAX_ALLOC_PERCENT 100
setx GPU_SINGLE_ALLOC_PERCENT 100

PhoenixMiner.exe -pool eth-us-east1.nanopool.org:9999 -wal WALLETNUMBER.RIGNAME -pass x -config config.txt
pause

and move following part to config.txt:

Code:
-amd
-acm
-mode 1
-hstats 1
-cclock 1250
-mclock 2250
-cvddc 890
-mvddc 890
-log 0
-tstop 85
-tstart 55
-tt 65
#-fanmin 45
-fanmin 35,40,35,35,35,35,35
-fanmax 100
-cdm 0
-fcm 2
-gpus 1,2,3,4,5,6,7
-clKernel 1
-gser 5
-altinit
-rvram -1
-wdog 0
-rmode 0


You can also move -wallet -pass and -pool options to config.txt

Edit: You should still customize this config for your GPUs (number and model)



Do you think it would be possible to post screen shot of your miner file AND config file so I can see?  (You can hide your wallet number and rig name if you want of course)
Thanks in advance

There is no secret in my config but I prefer not to post it here as it would just create more confusion for you, so forget the config above as well.
Start from scratch, download PhoenixMiner, open start_miner.bat file with notepad and replace your wallet, then save and try to run it. Also read the readme.txt file in the same folder where you can find a lot other information.
Before asking any other questions, remember to specify which GPU you are using.

Good luck!

Hello,

Ive been mining without any trouble. I just seem to have trouble with 5.2d.

I have MSI RX 580 8GB that is running well with another version of Phoenix Miner

I also have 2 XFX RX 570 4GB and 1 MSI RX 570 4GB. Havent been able to run any of them due to them being 4GB. This is why I have decided to try 5.2d.

My 4GB cards are currently NOT plugged in. So I only hvave my 8GB card. But it seems like I have been getting error with 5.2d. Can't even get it to work with my 8 GB Card....
csoky
Newbie
*
Offline Offline

Activity: 3
Merit: 0


View Profile
November 24, 2020, 06:30:14 PM
 #6003

Hello  Wink

I had version 20.4.2 amd drivers and 5.2d PH but today I lost hashrate. I decided to upgrade to 5.2e and update drivers to 20.11.2 but it still has the same hashrate. I lost 1-2 mh/s per card.

(1) rx 570 4gb 23 mhs (I had 25-26 mhs)
(3) rx 580 4gb 26.5 mhs (had 28-29 mhs)

Windows 10
Amd 20.11.2 drivers, compute mode and OC

Any idea?

Can you write me the RX570 4GB commands?
Because I mining 1-2 MH/s with it.
milospinkfloyd
Newbie
*
Offline Offline

Activity: 18
Merit: 0


View Profile
November 24, 2020, 08:05:21 PM
 #6004

@zeef

can you explain how to run always bat file with admin righs? if I run it manually (right click than "run as admin") with admin rights than rxboost is aplayed but if it runs from startup folder that it isnt with admin rights Sad win10
thx333
Newbie
*
Offline Offline

Activity: 11
Merit: 0


View Profile
November 24, 2020, 08:07:55 PM
 #6005

Best Driver for RX 580 8GB?  Grin
Thank you
Ursul0
Sr. Member
****
Offline Offline

Activity: 857
Merit: 262


View Profile
November 24, 2020, 08:14:31 PM
 #6006

@zeef

can you explain how to run always bat file with admin righs? if I run it manually (right click than "run as admin") with admin rights than rxboost is aplayed but if it runs from startup folder that it isnt with admin rights Sad win10

use Windows Task Scheduler and run the task with highest privileges
felipeassuncaoj
Newbie
*
Offline Offline

Activity: 7
Merit: 5


View Profile
November 24, 2020, 08:17:33 PM
 #6007

@zeef

can you explain how to run always bat file with admin righs? if I run it manually (right click than "run as admin") with admin rights than rxboost is aplayed but if it runs from startup folder that it isnt with admin rights Sad win10

Hi,
do it like this, see my bat:

Code:
@echo off
:: BatchGotAdmin (Run as Admin code starts)
REM --> Check for permissions
>nul 2>&1 "%SYSTEMROOT%\system32\cacls.exe" "%SYSTEMROOT%\system32\config\system"
REM --> If error flag set, we do not have admin.
if '%errorlevel%' NEQ '0' (
echo Requesting administrative privileges...
goto UACPrompt
) else ( goto gotAdmin )
:UACPrompt
echo Set UAC = CreateObject^("Shell.Application"^) > "%temp%\getadmin.vbs"
echo UAC.ShellExecute "%~s0", "", "", "runas", 1 >> "%temp%\getadmin.vbs"
"%temp%\getadmin.vbs"
exit /B
:gotAdmin
if exist "%temp%\getadmin.vbs" ( del "%temp%\getadmin.vbs" )
pushd "%CD%"
CD /D "%~dp0"
:: BatchGotAdmin (Run as Admin code ends)
:: Your codes should start from the following line

timeout 25
setx GPU_FORCE_64BIT_PTR 0
setx GPU_MAX_HEAP_SIZE 100
setx GPU_USE_SYNC_OBJECTS 1
setx GPU_MAX_ALLOC_PERCENT 100
setx GPU_SINGLE_ALLOC_PERCENT 100

C:\pm\PhoenixMiner.exe -pool ...........

justice-r
Newbie
*
Offline Offline

Activity: 7
Merit: 0


View Profile
November 24, 2020, 08:19:52 PM
 #6008

Hello,

Was using claymore until now and getting 32 Mh/s to all my 3 Rx 580s 8gbs..

Now switched to Phoenix 5.1e with this command -amd -acm -rxboost 21 -gser 2 -daglim 0
And only getting 28 Mh/s..

Tried without daglim and getting the same Mh/s..

Also every time i am starting the miner i get Disabling DAG pre allocation not enough vram..
But all my Gpus are 8 GBs..

Can anybody help ?

Thanks in advance,
rxboost 1 is enough or -vmr 25 and also add -mt1 you can try mt 2 but same results. with this you can get 30+, no other help i can do because im also came from clay, and no one helped me to get 32 again, even on claymore i was getting 33 on some cards. i tried trm and lolminer as well, having low speed. well i guess i will go back old good days flashing bios again. i think that is best way keep polais cards get good speed.

mt 2 just froze the whole rig.. Will try mt 1. But i can see that many people with 8 gb cards have problems with the dag.. Bummer..
Yes, even 1070ti are going to be impacted... Who knows, maybe ethereum will do the same thing as ETC and reduce the DAG file but I doubt it

The problem for now is that PhoenixMiner cant successfully set the straps right..

For everyone came from Claymore just let claymore build the straps with -allpools 0 and then start Phoenix. Everything will work maybe better than before.
I am getting 32+ Mhs from my RX580 8gbs cards again..
 
milospinkfloyd
Newbie
*
Offline Offline

Activity: 18
Merit: 0


View Profile
November 24, 2020, 08:46:42 PM
 #6009

@zeef

can you explain how to run always bat file with admin righs? if I run it manually (right click than "run as admin") with admin rights than rxboost is aplayed but if it runs from startup folder that it isnt with admin rights Sad win10

Hi,
do it like this, see my bat:

Code:
@echo off
:: BatchGotAdmin (Run as Admin code starts)
REM --> Check for permissions
>nul 2>&1 "%SYSTEMROOT%\system32\cacls.exe" "%SYSTEMROOT%\system32\config\system"
REM --> If error flag set, we do not have admin.
if '%errorlevel%' NEQ '0' (
echo Requesting administrative privileges...
goto UACPrompt
) else ( goto gotAdmin )
:UACPrompt
echo Set UAC = CreateObject^("Shell.Application"^) > "%temp%\getadmin.vbs"
echo UAC.ShellExecute "%~s0", "", "", "runas", 1 >> "%temp%\getadmin.vbs"
"%temp%\getadmin.vbs"
exit /B
:gotAdmin
if exist "%temp%\getadmin.vbs" ( del "%temp%\getadmin.vbs" )
pushd "%CD%"
CD /D "%~dp0"
:: BatchGotAdmin (Run as Admin code ends)
:: Your codes should start from the following line

timeout 25
setx GPU_FORCE_64BIT_PTR 0
setx GPU_MAX_HEAP_SIZE 100
setx GPU_USE_SYNC_OBJECTS 1
setx GPU_MAX_ALLOC_PERCENT 100
setx GPU_SINGLE_ALLOC_PERCENT 100

C:\pm\PhoenixMiner.exe -pool ...........



thanks a lot! works fine
bluspirit
Jr. Member
*
Offline Offline

Activity: 70
Merit: 3


View Profile
November 24, 2020, 11:25:56 PM
 #6010

.....

Do you think it would be possible to post screen shot of your miner file AND config file so I can see?  (You can hide your wallet number and rig name if you want of course)
Thanks in advance

There is no secret in my config but I prefer not to post it here as it would just create more confusion for you, so forget the config above as well.
Start from scratch, download PhoenixMiner, open start_miner.bat file with notepad and replace your wallet, then save and try to run it. Also read the readme.txt file in the same folder where you can find a lot other information.
Before asking any other questions, remember to specify which GPU you are using.

Good luck!

Hello,

Ive been mining without any trouble. I just seem to have trouble with 5.2d.

I have MSI RX 580 8GB that is running well with another version of Phoenix Miner

I also have 2 XFX RX 570 4GB and 1 MSI RX 570 4GB. Havent been able to run any of them due to them being 4GB. This is why I have decided to try 5.2d.

My 4GB cards are currently NOT plugged in. So I only hvave my 8GB card. But it seems like I have been getting error with 5.2d. Can't even get it to work with my 8 GB Card....

Hello,
what error do you get with the 8GB card?

Important tips for 4GB cards (read first page), assuming you are using windows :

Quote
  • If you can't use integrated GPU, replace the primary GPU with one with 6 or 8 GB VRAM.
  • (Windows) With PhoenixMiner 5.2e either remove the -daglim option entirely (it is set to auto by default), or set it to -daglim 4023, which should work on all 470/480/570/580/590 cards with "good" drivers (see bellow)
  • (Windows) If your cards doesn't work with the default DAG limit of 4023 and require substantial decrease to 4006 or 3990, you need to update to one of the "good" AMD drivers for Windows: from 18.12.1.1 to 19.7.5 (inclusive), and from 19.12.2 to 20.11.1 (inclusive)

Try with 5.2e.
BeefyBitcoinBoy
Newbie
*
Offline Offline

Activity: 7
Merit: 0


View Profile
November 25, 2020, 05:33:11 AM
Last edit: December 01, 2020, 12:08:47 AM by BeefyBitcoinBoy
 #6011

I wanted to report an issue I ran into on v5.2e for mixed-gen ETH mining on one XFX RX 5700 8GB + one XFX RX 480 8GB + one MSI RX 480 8GB on Ubuntu 18.04.4 LTS (via minerstatOS) with amdgpu-pro v19.30 drivers.  When I upgraded to v5.2e, I saw my RX 5700 take approximately an hour to build its DAG file, and then yield 0 hashrate, and the two RX 480s only produced about a third of their normal hashrate.  I previously saw the same behavior with all PhoenixMiner v5.1x versions, as well.

Rolling back to v5.0e immediately resolves the issue without a reboot.  I have used a few versions of the PhoenixMiner for about ten months on this mixed-gen rig without issue, so this has been something introduced after v5.0e.  In case it's any help, I am including a few log excerpts, though I never saw any suspicious messages or error logs to report.

v5.2e log (note the miner uptime versus the DAG generation progress)
Code:
2020.11.23:16:24:05.279: eths Eth: New job #f7c9706f from us1.ethermine.org:4444; diff: 4000MH
2020.11.23:16:24:05.536: GPU1 GPU1: DAG  92%
2020.11.23:16:24:05.866: main
2020.11.23:16:24:05.866: main *** 0:43 *** 11/23 16:24 **************************************
2020.11.23:16:24:05.866: main Eth: Mining ETH on us1.ethermine.org:4444 for 0:43
2020.11.23:16:24:05.866: main Eth speed: 22.623 MH/s, shares: 17/0/0, time: 0:43
2020.11.23:16:24:05.866: main GPUs: 1: 0.000 MH/s (0) 2: 11.801 MH/s (11) 3: 10.822 MH/s (6)
2020.11.23:16:24:05.866: main Eth: Accepted shares 17 (0 stales), rejected shares 0 (0 stales)
2020.11.23:16:24:05.866: main Eth: Incorrect shares 0 (0.00%), est. stales percentage 0.00%
2020.11.23:16:24:05.866: main Eth: Maximum difficulty of found share: 56.2 GH (!)
2020.11.23:16:24:05.866: main Eth: Average speed (5 min): 22.595 MH/s
2020.11.23:16:24:05.866: main Eth: Effective speed: 25.98 MH/s; at pool: 25.98 MH/s
2020.11.23:16:24:05.866: main

...

2020.11.23:16:27:02.493: eths Eth: New job #c61bb84f from us1.ethermine.org:4444; diff: 4000MH
2020.11.23:16:27:02.888: GPU1 GPU1: DAG  98%
2020.11.23:16:27:04.976: main GPU1: 45C 91% 53W, GPU2: 60C 100% 76W, GPU3: 50C 100% 70W
GPUs power: 199.2 W
2020.11.23:16:27:06.380: main
2020.11.23:16:27:06.380: main *** 0:46 *** 11/23 16:27 **************************************
2020.11.23:16:27:06.381: main Eth: Mining ETH on us1.ethermine.org:4444 for 0:46
2020.11.23:16:27:06.381: main Eth speed: 22.623 MH/s, shares: 18/0/0, time: 0:46
2020.11.23:16:27:06.381: main GPUs: 1: 0.000 MH/s (0) 2: 11.802 MH/s (11) 3: 10.821 MH/s (7)
2020.11.23:16:27:06.381: main Eth: Accepted shares 18 (0 stales), rejected shares 0 (0 stales)
2020.11.23:16:27:06.381: main Eth: Incorrect shares 0 (0.00%), est. stales percentage 0.00%
2020.11.23:16:27:06.381: main Eth: Maximum difficulty of found share: 56.2 GH (!)
2020.11.23:16:27:06.381: main Eth: Average speed (5 min): 22.618 MH/s
2020.11.23:16:27:06.381: main Eth: Effective speed: 25.73 MH/s; at pool: 25.73 MH/s
2020.11.23:16:27:06.381: main

...

2020.11.23:16:27:48.656: eths Eth: Received: {"id":6,"jsonrpc":"2.0","result":true}
2020.11.23:16:27:51.512: main
2020.11.23:16:27:51.512: main *** 0:47 *** 11/23 16:27 **************************************
2020.11.23:16:27:51.513: main Eth: Mining ETH on us1.ethermine.org:4444 for 0:47
2020.11.23:16:27:51.513: main Eth speed: 22.624 MH/s, shares: 19/0/0, time: 0:47
2020.11.23:16:27:51.513: main GPUs: 1: 0.000 MH/s (0) 2: 11.801 MH/s (12) 3: 10.823 MH/s (7)
2020.11.23:16:27:51.513: main Eth: Accepted shares 19 (0 stales), rejected shares 0 (0 stales)
2020.11.23:16:27:51.513: main Eth: Incorrect shares 0 (0.00%), est. stales percentage 0.00%
2020.11.23:16:27:51.513: main Eth: Maximum difficulty of found share: 56.2 GH (!)
2020.11.23:16:27:51.513: main Eth: Average speed (5 min): 22.608 MH/s
2020.11.23:16:27:51.513: main Eth: Effective speed: 26.73 MH/s; at pool: 26.73 MH/s
2020.11.23:16:27:51.513: main
2020.11.23:16:27:52.592: eths Eth: New job #aaa008e3 from us1.ethermine.org:4444; diff: 4000MH
2020.11.23:16:27:53.583: GPU1 GPU1: DAG 100%
2020.11.23:16:27:53.672: GPU1 GPU1: DAG generated in 2841.7 s (1.4 MB/s)
2020.11.23:16:27:53.673: GPU1 GPU1: Using Ethash OCL kernels (gfx1010; -clkernel 1)
2020.11.23:16:27:53.673: GPU1 GPU1: no -gt value specified, switching to auto-tune
2020.11.23:16:27:53.673: GPU1 GPU1: starting auto-tune process

v5.0e log (note the functional GPU1 and the much better hashrates for GPU2 and GPU3)
Code:
Eth: New job #169100e2 from us1.ethermine.org:4444; diff: 4000MH
Eth speed: 117.353 MH/s, shares: 5/0/0, time: 0:04
GPUs: 1: 57.140 MH/s (2) 2: 30.881 MH/s (2) 3: 29.332 MH/s (1)
GPU1: 57C 89% 130W, GPU2: 71C 100% 87W, GPU3: 61C 100% 86W
GPUs power: 303.0 W
batsonxl
Member
**
Offline Offline

Activity: 1196
Merit: 26


View Profile
November 25, 2020, 08:11:14 AM
 #6012

hey can someone can help me to solve this? Thanks

could not connect to ethash pool ssl://eu1.ethermine.org:5555 . An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full

could not connect to ethash pool ssl://asia1.ethermine.org:5555 . An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full
jask05
Newbie
*
Offline Offline

Activity: 5
Merit: 0


View Profile
November 25, 2020, 09:41:25 AM
Last edit: November 25, 2020, 09:59:34 AM by jask05
 #6013

Hi there,

I have 4 GPUS (1x RX 570, 3x RX 580). I'm using AMD Radeon drivers (non-whql-win10-64bit-radeon-software-crimson-relive-17.10.2-oct23).

Do you recommend me to update it to the last version (20.4.x) or don't touch anything?

I've got around 124MH/s. Is it right or I can obtain more MH/s Huh

Thanks in advance!!!!
zeezoo
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile
November 25, 2020, 09:56:03 AM
 #6014

hey can someone can help me to solve this? Thanks

could not connect to ethash pool ssl://eu1.ethermine.org:5555 . An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full

could not connect to ethash pool ssl://asia1.ethermine.org:5555 . An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full

https://stackoverflow.com/questions/4415175/an-operation-on-a-socket-could-not-be-performed-because-the-system-lacked-suffi
https://blog.sqlauthority.com/2017/11/25/sql-server-tcp-provider-operation-socket-not-performed-system-lacked-sufficient-buffer-space-queue-full/
zeezoo
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile
November 25, 2020, 09:58:44 AM
 #6015

Hi there,

I have 4 GPUS (1x RX 570, 3x RX 580). I'm using AMD Radeon drivers (non-whql-win10-64bit-radeon-software-crimson-relive-17.10.2-oct23).

Do you recommend me to update it to the last version (20.4.x) or don't touch anything?

Thanks in advance!!!!

If it works and you're happy with your hashrates just keep it. If anything is wrong, you're facing hashrate drops or miner is not stable then update. I'm using v20.4.2 myself on all rigs and they work fine.

Regards,
zeezoo
jask05
Newbie
*
Offline Offline

Activity: 5
Merit: 0


View Profile
November 25, 2020, 10:00:45 AM
 #6016

Hi there,

I have 4 GPUS (1x RX 570, 3x RX 580). I'm using AMD Radeon drivers (non-whql-win10-64bit-radeon-software-crimson-relive-17.10.2-oct23).

Do you recommend me to update it to the last version (20.4.x) or don't touch anything?

Thanks in advance!!!!

If it works and you're happy with your hashrates just keep it. If anything is wrong, you're facing hashrate drops or miner is not stable then update. I'm using v20.4.2 myself on all rigs and they work fine.

Regards,
zeezoo

Thanks,

I've got around 124MH/s. Is it right or I can obtain more MH/s ? With Claymore's I've got around 127 MH/s.

 Smiley
zeezoo
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile
November 25, 2020, 10:08:19 AM
 #6017

Hi there,

I have 4 GPUS (1x RX 570, 3x RX 580). I'm using AMD Radeon drivers (non-whql-win10-64bit-radeon-software-crimson-relive-17.10.2-oct23).

Do you recommend me to update it to the last version (20.4.x) or don't touch anything?

Thanks in advance!!!!

If it works and you're happy with your hashrates just keep it. If anything is wrong, you're facing hashrate drops or miner is not stable then update. I'm using v20.4.2 myself on all rigs and they work fine.

Regards,
zeezoo

Thanks,

I've got around 124MH/s. Is it right or I can obtain more MH/s ? With Claymore's I've got around 127 MH/s.

 Smiley

Newer drivers are usually working better than the old ones. 124/4 = 31, so I guess it's pretty nice score for 570/580s. I think rxboost is not supported with the drivers that you use in PhoenixMiner...
jask05
Newbie
*
Offline Offline

Activity: 5
Merit: 0


View Profile
November 25, 2020, 10:15:37 AM
 #6018

Hi there,

I have 4 GPUS (1x RX 570, 3x RX 580). I'm using AMD Radeon drivers (non-whql-win10-64bit-radeon-software-crimson-relive-17.10.2-oct23).

Do you recommend me to update it to the last version (20.4.x) or don't touch anything?

Thanks in advance!!!!

If it works and you're happy with your hashrates just keep it. If anything is wrong, you're facing hashrate drops or miner is not stable then update. I'm using v20.4.2 myself on all rigs and they work fine.

Regards,
zeezoo

Thanks,

I've got around 124MH/s. Is it right or I can obtain more MH/s ? With Claymore's I've got around 127 MH/s.

 Smiley

Newer drivers are usually working better than the old ones. 124/4 = 31, so I guess it's pretty nice score for 570/580s. I think rxboost is not supported with the drivers that you use in PhoenixMiner...

Thx !! I'm going to try with the last stable drivers. If I can get more MH/s... why not? hehe

Thanks again !!
zeezoo
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile
November 25, 2020, 10:19:31 AM
 #6019

Hi there,

I have 4 GPUS (1x RX 570, 3x RX 580). I'm using AMD Radeon drivers (non-whql-win10-64bit-radeon-software-crimson-relive-17.10.2-oct23).

Do you recommend me to update it to the last version (20.4.x) or don't touch anything?

Thanks in advance!!!!

If it works and you're happy with your hashrates just keep it. If anything is wrong, you're facing hashrate drops or miner is not stable then update. I'm using v20.4.2 myself on all rigs and they work fine.

Regards,
zeezoo

Thanks,

I've got around 124MH/s. Is it right or I can obtain more MH/s ? With Claymore's I've got around 127 MH/s.

 Smiley

Newer drivers are usually working better than the old ones. 124/4 = 31, so I guess it's pretty nice score for 570/580s. I think rxboost is not supported with the drivers that you use in PhoenixMiner...

Thx !! I'm going to try with the last stable drivers. If I can get more MH/s... why not? hehe

Thanks again !!

Let us know the results. You can always revert to previos drivers if it's worse than now.

Good luck!
batsonxl
Member
**
Offline Offline

Activity: 1196
Merit: 26


View Profile
November 25, 2020, 11:10:19 AM
 #6020

hey can someone can help me to solve this? Thanks

could not connect to ethash pool ssl://eu1.ethermine.org:5555 . An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full

could not connect to ethash pool ssl://asia1.ethermine.org:5555 . An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full

https://stackoverflow.com/questions/4415175/an-operation-on-a-socket-could-not-be-performed-because-the-system-lacked-suffi
https://blog.sqlauthority.com/2017/11/25/sql-server-tcp-provider-operation-socket-not-performed-system-lacked-sufficient-buffer-space-queue-full/
preciate it
Pages: « 1 ... 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 [301] 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 ... 499 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!