Guys. How to change GPU fan speed in ubuntu 16.04 ? and frequencies and voltage?
apt-get install fancontrol
pwmconfig
and then I wrote this script to set the speed:
#!/bin/bash
SPEED=${1:-200}
find /sys/devices/pci* -name '*pwm1' | while read line; do
echo "$SPEED > $line"
echo $SPEED > $line
done