Ethereum Mining Script for Ubuntu and Radeon
I’ve been mining Ethereum using Ubuntu for a couple months now with Radeon graphics cards. It took a while to find a successful script. This one works for me: #!/bin/bash export GPU_FORCE_64BIT_PTR=0 export GPU_MAX_HEAP_SIZE=100 export GPU_USE_SYNC_OBJECTS=1 export GPU_MAX_ALLOC_PERCENT=100 export GPU_SINGLE_ALLOC_PERCENT=100 ethminer –cl-local-work 256 –farm-recheck 200 –cl-global-work 16384 -G -F mine.weipool.org:5555/0xac26955e90380dd1d366592ec01298a49c2a92de/115 For the complete setup, I’ve […]