Post
Topic
Board Mining (Altcoins)
Re: Open Source ZEC (ZCash) GPU Miner AMD & NVidia (up to 45 sol/s on RX480)
by
FlappySocks
on 29/10/2016, 12:31:43 UTC
Guys. How to change GPU fan speed in ubuntu 16.04 ? and frequencies and voltage?

Code:
apt-get install fancontrol
pwmconfig

and then I wrote this script to set the speed:

Code:
#!/bin/bash

SPEED=${1:-200}

find /sys/devices/pci* -name '*pwm1' | while read line; do
 echo "$SPEED > $line"
 echo $SPEED > $line
done