Skip to content

CRYPTO MINING BLOG

Your guide to cryptocurrency mining

Primary Menu
  • CRYPTOCURRENCY
    • NEWS
    • WALLETS
    • INVESTING
    • TRADING
  • MINING
    • CRYPTO MINERS (SOFT)
    • ASIC MINING
    • GPU MINING
      • AMD GPU MINING
      • NVIDIA GPU MINING
    • CPU MINING
    • FPGA MINING
  • SOFTWARE
    • CRYPTOCURRENCY WALLETS
    • CRYPTOCURRENCY MINERS
    • TOOLS & UTILITIES
    • TRADING BOTS
    • FLASHING GPU
    • DRIVERS
    • SOFTWARE & FIRMWARE ASIC (ANTMINER)
    • NEW RELEASES
  • REVIEWS
  • GUIDES
  • NEWS

Ethminer 0.9.41-genoil-1.0.8: Download Ethereum miner for Windows/Linux

  • CRYPTO MINING BLOG
  • Apr 19, 2020
  • 2 Comments So far
  • DOWNLOAD ETHMINER, Ethereum (ETH), Ethereum Mining, Ethminer
  • Cryptocurrency Miners | Cryptocurrency Mining | Software
Ethminer 0.9.41-genoil-1.0.8: Download Ethereum miner for Windows/Linux x32/x64
Ethminer 0.9.41-genoil-1.0.8: Download Ethereum miner for Windows/Linux x32/x64

Genoil has updated its fork of ethminer 0.9.41 to version 1.0.8 (source), and here is the latest Windows binary file that you can try. The fork of Genoil ethminer is for Nvidia CUDA miners, but it also runs on AMD OpenCL for Ethereum mining (ETH). Some minor bugs have been fixed and improved in the new version 1.0.8, but probably the most important new feature is the significantly improved output that you get, more user-friendly with a single line of text reporting your current status. You can download and try the compiled binary of the latest version 1.0.8 and make sure that you also take advantage of the recently introduced Stratum failover function. Check the sample .bat file for more information on how to use the new Stratum failover mode, and check the new output from the shorter hash log, the accepted and rejected shared resources by the pools, and the errors.

Download Ethminer

The latest assembly in the form of binary files for installation on Windows Ethminer 0.9.41-genoil-1.0.8 is available for download at the links below:


Download
Ethminer 0.9.41-genoil-1.0.8

Ethminer 0.9.41-genoil-1.0.8: Download Ethereum miner for Windows/Linux x32/x64

ethminer-genoil

What is ethminer-0.9.41-genoil-1.x.x?

Formerly known as Genoil’s CUDA miner, ethminer-0.9.41-genoil-1.x.x is a fork of the stock ethminer version 0.9.41. While native CUDA support is its most significant difference, it has the following additional features:

  • realistic benchmarking against arbitrary epoch/DAG/blocknumber
  • custom DAG storage directory
  • auto DAG directory cleanup
  • stratum mining without proxy
  • OpenCL devices picking
  • farm failover (getwork + stratum)

 

Usage

ethminer is a command line program. This means you launch it either from a Windows command prompt or Linux console, or create shortcuts to predefined command lines using a Linux Bash script or Windows batch/cmd file. for a full list of available command, please run

ethminer --help

F.A.Q

  1. Why is my hashrate with Nvidia cards on Windows 10 so low? The new WDDM 2.0 driver on Windows 10 uses a different way of addressing the GPU. This is good for a lot of things, but not for ETH mining. There is a way of mining ETH at Win7/8/Linux speeds on Win10, by downgrading the GPU driver to a Win7 one (350.12 recommended) and using a build that was created using CUDA 6.5.
  2. And what about the GTX750Ti? Unfortunately the issue is a bit more serious on the GTX750Ti, already causing suboptimal performance on Win7 and Linux. Apparently about 5MH/s can still be reached on Linux, which, depending on ETH price, could still be profitable, considering the relatively low power draw.
  3. Are AMD cards also affected by this issue? Yes, but in a different way. While Nvidia cards have thresholds (i.e 2GB for 9×0 / Win7) of the DAG file size after which performance will drop steeply, on AMD cards the hashrate also drops with increasing DAG size, but more in a linear pattern.
  4. Can I still mine ETH with my 2GB GPU? 2GB should be sufficient for a while, altough it’s become a bit uncertain if we’ll stay below 2GB until the switch to PoS. I don’t keep an exact list of all supported GPU’s, but generally speaking the following cards should be ok: AMD HD78xx, HD79xx, R9 2xx, R9 3xx, Fury. Nvidia Geforce 6×0, 7×0, 8×0, 9×0, TITAN Quadro, Tesla & FirePro’s with similar silicon should be fine too.
  5. Can I buy a private kernel from you that hashes faster? No.
  6. What are the optimal launch parameters? The default parameters are fine in most scenario’s (CUDA). For OpenCL it varies a bit more. Just play around with the numbers and use powers of 2. GPU’s like powers of 2.
  7. Is your miner faster than the stock miner? In CUDA yes, in OpenCL only on Nvidia .

Building on Windows

  • download or clone this repository
  • download and install Visual Studio 12 2013 and CMake
  • run getstuff.bat in cpp-ethereum/extdep
  • open a command prompt and navigate to cpp-ethereum directory
mkdir build 
cd build
cmake -DBUNDLE=cudaminer -G "Visual Studio 12 2013 Win64" ..
  • if you don’t want/need CUDA support, use “miner” instead of “cudaminer”. This will only compile OpenCL support
  • to speed up compilation a bit, you can add -DCOMPUTE=xx , where x is your CUDA GPU Compute version * 10. i.e -DCOMPUTE=52 for a GTX970.
  • you may disable stratum support by adding -DETH_STRATUM=0
  • When CMake completes without errors, opn ethereum.sln created in the build directory in Visual Studio
  • Set “ethminer” as startup project by right-clicking on it in the project pane
  • Build. Run

Building on Ubuntu

Note: this section was copied from ethpool

Ubuntu 14.04. OpenCL only (for AMD cards)

sudo apt-get update
sudo apt-get -y install software-properties-common
add-apt-repository -y ppa:ethereum/ethereum
sudo apt-get update
sudo apt-get install git cmake libcryptopp-dev libleveldb-dev libjsoncpp-dev libjson-rpc-cpp-dev libboost-all-dev libgmp-dev libreadline-dev libcurl4-gnutls-dev ocl-icd-libopencl1 opencl-headers mesa-common-dev libmicrohttpd-dev build-essential -y
git clone https://github.com/Genoil/cpp-ethereum/
cd cpp-ethereum/
mkdir build
cd build
cmake -DBUNDLE=miner ..
make -j8

You can then find the executable in the ethminer subfolder

Ubuntu 14.04. OpenCL + CUDA (for NVIDIA cards)

wget http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1404/x86_64/cuda-repo-ubuntu1404_7.5-18_amd64.deb
sudo dpkg -i cuda-repo-ubuntu1404_7.5-18_amd64.deb
sudo apt-get -y install software-properties-common
sudo add-apt-repository -y ppa:ethereum/ethereum
sudo apt-get update
sudo apt-get install git cmake libcryptopp-dev libleveldb-dev libjsoncpp-dev libjson-rpc-cpp-dev libboost-all-dev libgmp-dev libreadline-dev libcurl4-gnutls-dev ocl-icd-libopencl1 opencl-headers mesa-common-dev libmicrohttpd-dev build-essential cuda -y
git clone https://github.com/Genoil/cpp-ethereum/
cd cpp-ethereum/
mkdir build
cd build
cmake -DBUNDLE=miner ..
make -j8

You can then find the executable in the ethminer subfolder

Read more:

EWBF v0.1: Download Cuda Equihash Miner For GPU MiningEWBF-miner v0.1: Download Equihash Miner for Windows & Linux Download and configure PhoenixMiner 4.2a (AMD NVIDIA GPUs Miner)PhoenixMiner 4.8c (AMD & NVIDIA): Download Ethash miner for Windows & Linux. T-Rex Miner 0.12.1 (Nvidia GPU): Download for Windows & Linux. Grin Miner v1.0.2 - Standalone miner for grin (Download for Windows)Grin Miner v1.0.2 – Standalone miner for grin (Download for Windows) TT-Miner 3.2.2 NoFee (NoDevFee): Nvidia & AMD GPU minerTT-Miner v3.2.2 (NVIDIA GPU miner): Download for Windows & Linux. XMRig 5.3.0 (CPU GPU OpenCL CUDA miner) Download and ConfigureXMRig 5.5.0 (AMD/Nvidia+CPU): Download for Windows & Linux. WildRig Multi v0.24.1 (AMD GPU miner): Download with KAWPOW supportWildRig Multi v0.25.1 beta – Download and Configure AMD GPU miner for Windows & Linux XMRig v5.6.0 CPU/GPU: Download miner Monero for Windows/Linux GMiner v1.52 Equihash/ CuckooCycle (AMD / Nvidia GPUs miner)GMiner v1.52 (AMD/Nvidia): Download for Windows & Linux.
CRYPTO MINING BLOG
Founder & CEO

Previous post

Etherscan Launches ETHProtect Tool to Test Crypto Assets “Clean”

Next post

Vitalik Buterin calls BitTorrent “zombies” under Justin Sun’s dictatorship

2 Comments So far

Please Post Your Comments & Reviews
Cancel reply

Your email address will not be published. Required fields are marked *

  • USD
  • EUR
  • GPB
  • AUD
  • JPY
  • bitcoinBitcoin(BTC)
    $104,558.110.62%
  • ethereumEthereum(ETH)
    $2,524.830.95%
  • shih-shih-tzuShih Tzu(SHIH)
    $0.000246-0.01%
  • tetherTether(USDT)
    $1.000.00%
  • rippleXRP(XRP)
    $2.172.12%
  • vnm-venom-ethVenom(VNM)
    $2.110.00%
  • binancecoinBNB(BNB)
    $657.611.19%
  • oxy-oxycoinOxycoin(OXY)
    $101.250.00%
  • solanaSolana(SOL)
    $156.451.36%
  • usd-coinUSDC(USDC)
    $1.000.01%

  • TeamRedMiner v0.6.1: Download AMD GPU miner Ethash, MTP, CryptoNight
    26.8k views
  • ATIKMDAG PATCHER v1.4.14: Download AMD/ATI Pixel Clock for Windows
    14.9k views
  • Nvidia Mining Driver v470.05 GeForce RTX 3060 – Unlock Mining Ethereum
    7.2k views
  • OverdriveNTool 0.2.7: Download and Configure AMD GPU Overclocking Software
    5.6k views
  • PolarisBiosEditor 3 PRO: Modify AMD GPU BIOS (Download PBE Crack)
    5.5k views
  • Setting up AMD Radeon VEGA 56/64 for cryptocurrency mining
    5.3k views
  • NiceHash Miner v3.0.0.7: Download NHM for Windows/Linux/MacOS
    5.2k views
  • Nvidia GeForce RTX 3080 Ti: Unlock Mining Hashrate Driver for Windows
    4.7k views
  • SRBPolaris v3.5: Download BIOS Editor AMD GPUs for Windows
    3.9k views
  • NVIDIA NVFlash v5.590.0 (Windows/Linux) – How to flash the BIOS of GPUs NVIDIA?
    2.9k views
  • OhGodAnETHlargementPill: How to increase hashrate in mining on NVIDIA
    2.7k views
  • AMD Blockchain Driver: Radeon Software Crimson ReLive Edition Beta for Blockchain Compute
    2.6k views
  • CPUMINER-OPT v3.8.4: Download Fast CPU Miner for Windows
    2.6k views
  • ATIFlash & AMD VBFlash 2.93: Download BIOS Flashing Tool for AMD GPUs
    2.5k views
  • XMRig v5.6.0 CPU/GPU: Download miner Monero for Windows/Linux
    2.2k views
All Rights Reserved. CRYPTO-MINING.BLOG.
  • English
  • Russian