Fedora Linux Support Community & Resources Center
  #1  
Old 4th April 2009, 07:51 AM
tkalfaoglu Offline
Registered User
 
Join Date: Oct 2007
Posts: 255
ASUS M51VA: Fan always on

On my Fedora 10 ASUS M51VA, the fan starts soon after the machine is booted, and is never turned off.

Right now, sensors displays:
coretemp-isa-0000
Adapter: ISA adapter
Core 0: +31.0°C (high = +100.0°C, crit = +100.0°C)

coretemp-isa-0001
Adapter: ISA adapter
Core 1: +31.0°C (high = +100.0°C, crit = +100.0°C)
and the /proc/acpi/fan directory is empty -- therefore it seems no fan is found.

Does anyone know how to fix it?
Many thanks, -tk
Reply With Quote
  #2  
Old 7th April 2009, 02:46 AM
Dastekcom Offline
Registered User
 
Join Date: Mar 2006
Posts: 25
I have an ASUS F3JP the fan is also running all the time.
Reply With Quote
  #3  
Old 31st August 2009, 11:46 AM
tkalfaoglu Offline
Registered User
 
Join Date: Oct 2007
Posts: 255
linuxfedorafirefox
I found a script which I edited and put into rc.local to run, it sets the fan speed beautifully, depending on the CPU temperature..

Code:
#!/bin/sh

OLD_SPEED="0"
OLD_TEMP="0"

setSpeed () {
	if [ "$1" != "$OLD_SPEED" ]; then
		echo "new speed   $1"
		OLD_SPEED="$1"
		/usr/local/bin/fan "$1" > /dev/null
	fi
}

while [ 1 ]; do
	TEMP=`cat /proc/acpi/thermal_zone/THRM/temperature | awk '{print $2}'`
	if [ "$TEMP" != "$OLD_TEMP" ]; then
		echo "temperature $TEMP C"
		OLD_TEMP="$TEMP"
	fi

	if [ $TEMP -gt 65 ]; then
		setSpeed auto
	elif [ $TEMP -gt 60 ]; then
		setSpeed 13
	elif [ $TEMP -gt 55 ]; then
		setSpeed 11
	elif [ $TEMP -gt 50 ]; then
		setSpeed 9
	else
		setSpeed 1
	fi
	sleep 2
done
Reply With Quote
Reply

Tags
asus, fan, m51va

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
ASUS M51VA Laptop's DVD drive fails at times tkalfaoglu Hardware & Laptops 1 31st August 2009 11:48 AM
ASUS M51VA: Very Low Sound on Microphone tkalfaoglu Hardware & Laptops 2 1st March 2009 08:04 AM
Weird typing problem on Asus M51VA tkalfaoglu Hardware & Laptops 3 13th January 2009 05:21 PM
CDROM issues on ASUS M51VA tkalfaoglu Hardware & Laptops 1 17th December 2008 04:34 AM
Asus M51VA: Firewire not detected tkalfaoglu Hardware & Laptops 0 12th December 2008 10:08 AM


Current GMT-time: 11:29 (Tuesday, 21-05-2013)

TopSubscribe to XML RSS for all Threads in all ForumsFedoraForumDotOrg Archive
logo

All trademarks, and forum posts in this site are property of their respective owner(s).
FedoraForum.org is privately owned and is not directly sponsored by the Fedora Project or Red Hat, Inc.

Privacy Policy | Term of Use | Posting Guidelines | Archive | Contact Us | Founding Members

Powered by vBulletin® Copyright ©2000 - 2012, vBulletin Solutions, Inc.

FedoraForum is Powered by RedHat