Post
Topic
Board Mining (Altcoins)
Re: PhoenixMiner 5.6d: fastest Ethereum/Ethash miner with lowest devfee (Win/Linux)
by
miner95
on 10/08/2021, 09:33:40 UTC
Hi.
I have allways used windows with phoenix, now i am thinking about to change it top linux ( ubuntu) and i am making some tests with it, i have a problem , i can not load the config file properly, neither make phoenix tu use the extra settings i use. it only loads default values meaning i do not get the extra hashrate with overclocking, and undervolting,  here are my example files :


config.txt :
-pool
-wal
-epsw x
-mode 1
-ftime 10
-gt 0
-tt -55
-cdm 2
-cclock -400
-mclock +1100
-powlim -35

loader script :
./PhoenixMiner

any help is apreciated !
Thanks
 




I'm not sure exactly but maybe terminal's current directory is not your PhoenixMiner directory and that's why your config.txt file can't load.

create a .sh file (like mining.sh) in the same directory as PhoenixMiner and add this to it, then try running .sh file in terminal.

Code:
#!/bin/sh
cd "$(dirname "$0")"
export GPU_FORCE_64BIT_PTR=1
export GPU_MAX_HEAP_SIZE=100
export GPU_USE_SYNC_OBJECTS=1
export GPU_MAX_ALLOC_PERCENT=100
export GPU_SINGLE_ALLOC_PERCENT=100
./PhoenixMiner

line 2 code, cd command set terminal current directory to where the .sh file is.