Im running the latest version on Ubuntu 16, from command line, and none of the tt or r options seem to work. I have a card that stops hashing after an hour or two and a simple restart fixes it - but I have to restart the miner manually, no matter what I do the autorestart wont autorestart. How can I go about troubleshooting why this command doesnt work?
Use this script, run as root:
#!/bin/bash
if [ -z $1 ]
then
echo "gpunum not set"
exit 0
fi
managefilepath="/sys/class/drm/card$1/device/power_dpm_force_performance_level"
fanfilepath=$(find /sys/class/drm/card"$1"/device/hwmon -regextype posix-awk -regex ".*/hwmon[0-9]{1,2}")/pwm1_enable
chmod 666 "$managefilepath"
chmod 666 "$fanfilepath"
echo manual > "$managefilepath"
echo "1" > "$fanfilepath"
put gpu number in parameter, use for each card