2022-08-11
Linux Fan Not Spinning, Gpu Fan Not Spinning

everytime the fucking machine restarts, it fails devastatingly.

the word: Giving the fans some time to reach full speed...

the script:

1
2
3
4
5
6
7
#!/usr/bin/expect
spawn pwmconfig
#expect "Giving the fans some time to reach full speed..."
expect "If you do not want to do this hit control-C now!!!"
send "\03"
expect eof

hope this shit works?

1
2
3
echo 255 | sudo tee /sys/class/hwmon/hwmon6/pwm3
echo 255 | sudo tee /sys/class/hwmon/hwmon6/pwm1

i have install something other than that. like i8kctl, some thermal controllers by intel (thermald)? but still gpu fan not spinning till now.

1
2
3
4
apt install -y lm-sensors fancontrol
sensors-detect
pwmconfig

already have cpu frequency under control by running temp_throttle.sh

notes: found controllers dell_smm-isa-0000

1
2
3
4
Found the following PWM controls:
hwmon6/pwm1 current value: 255
hwmon6/pwm3 current value: 255

Read More

2022-07-25
Cpu Overheating (Temperature Too High)

linux

cpufrequtils

throttling cpu frequencies by temperature incrementally

the desired temperature is 60.

usually when one throttles the CPU temperature, the GPU cannot be overheated.

it is turning my core i7 into a pentium 3! but not entirely cumbersome.

Read More