Hi,
ich bin Besitzer eines Medion MD40100 (P4 2,8GHz Desktop!!!! und GeForce FX go5300).
Mein Problem: Der Lüfter heult immer wieder (auch im Leerlauf) nervtötend für ein paar Sekunden auf.
Zu einem Medion-NB (auch Desktop-Prozessor) habe ich diese Anleitung/Script gefunden:
http://www.iaccarino.de/silvio/linuxnb.htm#Fan (Das Script, welches ich benutzt habe findet ihr unten im Post)
Leider hat es nichts geholfen (unter meiner Annahme, dass man dieses Script nur in das Verzeichnis /etc/init.d/ kopieren muss und es beim Neustart ausgeführt wird).
Wie kann ich dieses Problem lösen? Mir ist es egal, wenn mein NB deswegen heisser wird.
Cheers
Jonny
#!/bin/sh
# Copyright (c) 2004 Silvio Iaccarino. All rights reserved.
#
# Author: Silvio Iaccarino
#
# /etc/init.d/silence
#
# description: Switches the FANs off
### BEGIN INIT INFO
# Provides: silence
# Required-Start: $acpid
# Required-Stop:
# X-UnitedLinux-Should-Start:
# X-UnitedLinux-Should-Stop:
# Default-Start: 5
# Default-Stop:
# Description: Switches the FANs off
### END INIT INFO
. /etc/rc.status
rc_reset
case "$1" in
start|reload)
echo -n "switching the fans off"
echo -n "80:75:70:60:60" > /proc/acpi/thermal_zone/TZ1/tip_points
echo -n 0 > /proc/acpi/fan/FN1/state
echo -n 0 > /proc/acpi/fan/FN2/state
sleep 1
echo -n 3 > /proc/acpi/fan/FN1/state
echo -n 3 > /proc/acpi/fan/FN2/state
rc_status -v
;;
status)
cat /proc/acpi/fan/FN1/state
cat /proc/acpi/fan/FN2/state
;;
stop)
echo -n "switching the fans on"
echo -n 0 > /proc/acpi/fan/FN1/state
echo -n 0 > /proc/acpi/fan/FN2/state
rc_status -v
;;
esac
rc_exit
geschrieben von
jonnybecker
,
20.01.2006, 13:47 Uhr
, 18 mal gelesen