User Tools

Site Tools


mining:gminer

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
mining:gminer [2022/07/22 07:13] – created Sean Rhonemining:gminer [2023/06/29 15:26] (current) – removed Sean Rhone
Line 1: Line 1:
-====== Information ====== 
- 
-  * https://github.com/develsoftware/GMinerRelease 
-  * NVIDIA CUDA 
- 
-====== TODO ====== 
- 
-  * :!: This needs to be a systemd background task as this doesn't automatically restart upon any kind of failure 
-  * TODO: See if the above is true for GMiner 
- 
-====== Install ====== 
- 
-  * https://github.com/develsoftware/GMinerRelease/releases/tag/2.91 
-  * This uses 2.91 because it's the last release with LHR tuning, instead of an attempt at full unlock that only works on older drivers 
- 
-  cd ~ && rm -Rfv '/tmp/gminer' ~/'.local/bin/gminer/miner' && mkdir -p '/tmp/gminer' && cd '/tmp/gminer' && wget -O '/tmp/gminer/gminer.tar.xz' 'https://github.com/develsoftware/GMinerRelease/releases/download/2.91/gminer_2_91_linux64.tar.xz' && tar --extract --xz --verbose --file '/tmp/gminer/gminer.tar.xz' && mkdir -p ~/'.local/bin/gminer' && mv '/tmp/gminer/miner' ~/'.local/bin/gminer' && chmod +x ~/'.local/bin/gminer/miner' && rm -Rf '/tmp/gminer' && cd ~ && sync 
- 
-===== SELinux ===== 
- 
-**** 
- 
-  sudo restorecon -F -I -R ~/'.local/bin/gminer/miner' && sync 
- 
-====== Nightwane ====== 
- 
- 
-===== Game ===== 
- 
-  * Sets CPU governor to ''performance'' 
-  * Resets GPU fan and clock speeds to factory-defaults 
-  * Sets GPU power limit to device-specific max 156W 
-  * Overclocks GPU core clock to 2723 (2723MHz) 
-  * Overclocks GPU memory clock to 1100 (2200MHz) 
-  * :!: Useful to run before gaming in order to reset the core underclock and/or boost from stock limits 
- 
-  mkdir -p ~/'.local/bin/gminer/Nightwane' && nano ~/'.local/bin/gminer/Nightwane/Game.sh' && chmod +x ~/'.local/bin/gminer/Nightwane/Game.sh' 
- 
-<code> 
-#!/bin/sh 
- 
-sync 
- 
-# CPU Tuning 
-sudo cpupower frequency-set --governor 'performance' 
- 
-# GPU Reset 
-'rocm-smi' --resetfans --resetclocks --setpoweroverdrive '156' --autorespond 'yes' 
- 
-# GPU Tuning 
-echo 's 1 2723' | sudo tee '/sys/class/drm/card'*'/device/pp_od_clk_voltage' 
-echo 'm 1 1100' | sudo tee '/sys/class/drm/card'*'/device/pp_od_clk_voltage' 
-echo 'c' | sudo tee '/sys/class/drm/card'*'/device/pp_od_clk_voltage' 
- 
-sync 
-echo 'Game tune complete!' 
-sleep '5'</code> 
- 
-==== Keyboard Shortcut ==== 
- 
-  * GNOME 
-  * F6 
- 
-  gnome-terminal -- sh -c ~/'.local/bin/gminer/Nightwane/Game.sh' 
- 
-===== Miner ===== 
- 
-  * Sets CPU governor to ''schedutil'' (dynamic) 
-  * Resets GPU fan and clock speeds to factory-defaults 
-  * Sets GPU power limit to device-specific max 156W 
-  * Underclocks GPU core clock to 1100 (1100MHz) 
-  * Overclocks GPU memory clock to 1100 (2200MHz) 
- 
-  * Averages 31Mh/s 
-  * :!: Change ''x'' at bottom of script to BTC wallet address 
- 
-  mkdir -p ~/'.local/bin/teamredminer/Nightwane' && nano ~/'.local/bin/teamredminer/Nightwane/Miner.sh' && chmod +x ~/'.local/bin/teamredminer/Nightwane/Miner.sh' 
- 
-<code> 
-#!/bin/sh 
- 
-sync 
- 
-# CPU Tuning 
-sudo cpupower frequency-set --governor 'schedutil' 
- 
-# GPU Reset 
-'/usr/bin/rocm-smi' --resetfans --resetclocks --setpoweroverdrive '156' --autorespond 'yes' 
- 
-# GPU Tuning 
-echo 's 1 1100' | sudo tee '/sys/class/drm/card'*'/device/pp_od_clk_voltage' 
-echo 'm 1 1100' | sudo tee '/sys/class/drm/card'*'/device/pp_od_clk_voltage' 
-echo 'c' | sudo tee '/sys/class/drm/card'*'/device/pp_od_clk_voltage' 
- 
-sync 
- 
-# Miner 
-~/'.local/bin/teamredminer/teamredminer' --algo='ethash' --url='stratum+ssl://daggerhashimoto.auto.nicehash.com:443' --user='x.Nightwane'</code> 
- 
-==== Keyboard Shortcut ==== 
- 
-  * GNOME 
-  * F8 
- 
-  gnome-terminal -- sh -c ~/'.local/bin/gminer/Nightwane/Miner.sh' 
  
/var/www/wiki/data/attic/mining/gminer.1658488431.txt.gz · Last modified: 2022/07/22 07:13 by Sean Rhone