Question #27266 on Ubuntu Eee changed: https://answers.launchpad.net/ubuntu-eee/+question/27266
Status: Open => Answered Byakko proposed the following answer: I had a look around in /proc/acpi/ but couldn't find anything that would help. So I looked at the source in the eee.ko code and found the fan's RPM is called by this: static unsigned int eee_fan_get_rpm(void) { return (eee_ec_read(EC_SC05) << 8) | eee_ec_read(EC_SC06); } where EC_SC05/6 is the memory address: EC_SC05 = 0xF466 // High byte of fan speed (RPM) EC_SC06 = 0xF467 // Low byte of fan speed (RPM) So if someone can provide a command to read from an address in memory you should have your answer. Hopefully I helped a little ^^ -- You received this question notification because you are a member of Ubuntu Eee Coders, which is an answer contact for Ubuntu Eee. _______________________________________________ Mailing list: https://launchpad.net/~ubuntu-eee-coders Post to : ubuntu-eee-coders@lists.launchpad.net Unsubscribe : https://launchpad.net/~ubuntu-eee-coders More help : https://help.launchpad.net/ListHelp