Radeon RX 570 – Hashrate and Power Consumption

These are the average RX 570 hashrates I have been getting while mining Ethereum.

https://www.msi.com/Graphics-Card/Radeon-RX-570-ARMOR-8G-OC

RX 570 brand MSI Armour

Cost

Cost Used (eBay)
February 2021: $225 – $330

Hasrate and Power Consumption

Ethereum Ethash
Hashrate: 28.5/Mhs

Power Consumption
Range: 111 – 119 W
Average = ~115 W

Settings
Core: 1100
V: 800
Mem : 2000


Average Mhs Per Watt : 0.25/Mhs
Average Watts Per Mhs: 4.04 W

Profitability is about $3.36/day as of February 9, 2021

https://whattomine.com/coins/151-eth-ethash?hr=28.0&p=115.0&fee=0.0&cost=0.1&hcost=0.0&commit=Calculate

Radeon RX 580 – Hashrate and Power Consumption

These are the average RX 580 hashrates I have been getting while mining Ethereum.

https://www.msi.com/Graphics-Card/Radeon-RX-5700-MECH-OC

RX 580 brand MSI Gaming and Armour

Cost

Cost Used (eBay)
February 2021: $300 – $400

Hasrate and Power Consumption

Ethereum Ethash
Hashrate: 30/Mhs

Power Consumption
The power consumption seems to vary a bit between cards, some of them end up doing really well considering how old they are.
Range: 75 – 92 W
Average = ~84 W

Settings
Core: 1100
V: 800
Mem : 2100


Average Mhs Per Watt : 0.36/Mhs
Average Watts Per Mhs: 2.8 W

Profitability is about $3.68/day as of February 9, 2021

https://whattomine.com/coins/151-eth-ethash?hr=30.0&p=84.0&fee=0.0&cost=0.1&hcost=0.0&commit=Calculate

Radeon RX 5600 XT – Hashrate and Power Consumption

These are the average RX 5600 XT hashrate I have been getting while mining Ethereum.

https://www.msi.com/Graphics-Card/RADEON-RX-5600-XT-MECH-OC/

RX 5700 brand MSI

Cost

Cost New (NewEgg)
October 2020: ~$400
February 2021: Unavailable. Similar models $849 – $1000

Cost Used (eBay)
February 2021: $530 – $700

Status: Unavailable… Pretty much everywhere…

Hasrate and Power Consumption

Ethereum Ethash Hashrate
39/Mhs

Note that apparently there are some 5600 XT’s that don’t do as well mining and end up getting mid 30mhs

Power Consumption
Average = ~98 W

Settings
Core: 1400
Mem : 900

Average Mhs Per Watt : 0.39/Mhs
Average Watts Per Mhs: 2.45 W

Profitability is about $5/day as of February 9, 2021

https://whattomine.com/coins/151-eth-ethash?hr=39.0&p=98.0&fee=0.0&cost=0.1&hcost=0.0&commit=Calculate

Radeon RX 5700 – Hashrate and Power Consumption

These are the average RX 5700 hashrates I have been getting while mining Ethereum.

https://www.msi.com/Graphics-Card/Radeon-RX-5700-MECH-OC

RX 5700 brand MSI

Cost

Cost New (NewEgg)
October 2020: ~$500
February 2021: Unavailable. XT version is out of stock, but $900 – $1200

Cost Used (eBay)
February 2021: $650 – $750

Status: Unavailable… Pretty much everywhere…

Hasrate and Power Consumption

Ethereum Ethash Hashrate
Unmodded: 50/Mhs
Modded: 53/Mhs

Power Consumption
Range: 106 – 130 W
Average = ~127 W

Settings
Core: 1300
Mem : 875

Average Mhs Per Watt : 0.041/Mhs
Average Watts Per Mhs: 2.4 W

Profitability is about $7/day as of February 9, 2021

https://whattomine.com/coins/151-eth-ethash?hr=53&p=130&fee=0.0&cost=0.1&hcost=0.0&commit=Calculate

More information can be found at the following link.

I am planning on attaching the vbios for MSI MECH RX 5700 that “makes” it a 5700 XT and increases the hashrate to 53.

Install RX 580 Mining Drivers on Debian Based Distributions

Use wget to download AMD drivers.

wget https://drivers.amd.com/drivers/linux/amdgpu-pro-20.45-1164792-ubuntu-20.04.tar.xz --referer https://support.amd.com

Extract archive.

tar xf amdgpu-pro-20.45-1164792-ubuntu-20.04.tar.xz

Change directory

cd amdgpu-pro-20.45-1164792-ubuntu-20.04

Install AMD Drivers

./amdgpu-pro-install -y --opencl=legacy,rocm --headless

If you run into issues with it saying “Unsupported DEB based OS” Refer to the following article.

Unsupported DEB-based OS: /etc/os-release ID ‘kali’

Unsupported DEB-based OS: /etc/os-release ID ‘kali’

Unsupported DEB-based OS: /etc/os-release ID ‘kali’. You can get the above error if you try to install AMD drivers on Kali Linux. Looks like by default they are looking for a system that is Ubuntu, LinuxMint or Debian.

You can resolve the issue by opening up the “amdgpu-pro-install” file and adding more OS’s that it can check for.

vi ./amdgpu-pro-install

Scroll down to line 147 where is says

ubuntu|linuxmint|debian) 

and change it to

ubuntu|linuxmint|debian|kali)

The code function should look like the following.

142 function os_release() {
143         if [[ -r  /etc/os-release ]]; then
144                 . /etc/os-release
145
146                 case "$ID" in
147                 ubuntu|linuxmint|debian|kali)
148                         :
149                         ;;
150                 *)
151                         echo "Unsupported DEB-based OS: `
152                                 `/etc/os-release ID '$ID'" | stderr
153                         exit 1
154                         ;;
155                 esac
156         else
157                 echo "Unsupported OS" | stderr
158                 exit 1
159         fi
160 }

Save a close the file and install the AMD drivers

./amdgpu-pro-install -y --opencl=legacy,rocm --headless

Looking at trying to install AMD drivers for mining? Check out the following link
Install RX 580 Mining Drivers on Debian Based Distributions

More info on Stack Exchange
https://elementaryos.stackexchange.com/questions/24282/cant-install-amd-drivers-on-elementaryos-hera-unsupported-deb-based-os