2012-06-09 14:40:12 +00:00
|
|
|
Fan-Control-Daemon
|
|
|
|
====================
|
|
|
|
|
|
|
|
Introduction
|
|
|
|
---------------------
|
2012-08-23 20:32:49 +00:00
|
|
|
This is an enhanced version of [Allan McRae mbpfan](http://allanmcrae.com/2010/05/simple-macbook-pro-fan-daemon/)
|
2012-06-09 14:25:28 +00:00
|
|
|
|
|
|
|
Fan-Control-Daemon is a daemon that uses input from coretemp module and sets the fan speed using the applesmc module.
|
|
|
|
This enhanced version assumes any number of processors and fans (max. 10).
|
|
|
|
|
2012-06-11 19:43:53 +00:00
|
|
|
* It only uses the temperatures from the processors as input.
|
|
|
|
* It requires coretemp and applesmc kernel modules to be loaded.
|
|
|
|
* It requires root use
|
2012-07-03 08:39:30 +00:00
|
|
|
* It daemonizes or stays in foreground
|
|
|
|
* Verbose mode for both syslog and stdout
|
2012-08-22 13:05:52 +00:00
|
|
|
* Users can configure it using the file /etc/mbpfan.conf
|
2012-06-09 14:25:28 +00:00
|
|
|
|
|
|
|
|
2012-08-23 09:08:17 +00:00
|
|
|
Supported GNU/Linux Distributions
|
|
|
|
---------------------------------
|
|
|
|
We provide scripts to to load mbpfan daemon at system boot for many distros.
|
2012-10-20 15:18:30 +00:00
|
|
|
Please note that the support is provided by volunteers. mbpfan needs tests and bug reports.
|
2012-08-23 09:08:17 +00:00
|
|
|
|
|
|
|
Supported distributions:
|
|
|
|
|
|
|
|
- Ubuntu
|
|
|
|
- Debian
|
2013-10-13 16:18:17 +00:00
|
|
|
- Archlinux
|
2012-08-23 09:08:17 +00:00
|
|
|
- Fedora
|
|
|
|
- RedHat
|
|
|
|
- CentOS
|
|
|
|
- Gentoo
|
|
|
|
|
|
|
|
|
|
|
|
Tested Macbook Models
|
2012-06-09 14:40:12 +00:00
|
|
|
---------------------
|
2013-10-13 16:18:17 +00:00
|
|
|
- MacBook Pro 9,2 13" (Intel i5/i7 - Linux 3.10)
|
2012-10-24 20:37:53 +00:00
|
|
|
- Macbook Pro 8,2 15" (Intel i7 - Linux 3.6.2)
|
|
|
|
- MacBook Pro 8,1 13" (Intel i7 - Linux 3.2.0)
|
|
|
|
- Macbook Pro 6,2 15" (Intel i7 - Linux 3.5.0)
|
|
|
|
- MacBook Pro 6,2 15" (Intel i7 - Linux 3.2.0)
|
2012-08-23 09:08:17 +00:00
|
|
|
- MacBook Pro 2,2 15" (Intel Core 2 Duo - Linux 3.4.4)
|
|
|
|
|
2012-06-09 14:40:12 +00:00
|
|
|
|
2012-08-23 09:08:17 +00:00
|
|
|
Warning
|
|
|
|
-------
|
|
|
|
Be sure to load the kernel modules **applesmc** and **coretemp**.
|
|
|
|
|
|
|
|
|
2013-10-13 16:27:52 +00:00
|
|
|
Arch Linux
|
|
|
|
---------
|
|
|
|
See [mbpfan-git at AUR](https://aur.archlinux.org/packages/mbpfan-git/).
|
|
|
|
Otherwise, please refer to the Generic Instructions.
|
|
|
|
|
|
|
|
|
|
|
|
Ubuntu
|
|
|
|
------
|
|
|
|
|
|
|
|
Install the ```build-essential``` package.
|
|
|
|
Then, refer to the Generic Install Instructions.
|
|
|
|
|
|
|
|
|
|
|
|
Generic Install Instructions
|
|
|
|
-------------------------
|
2012-06-09 14:25:28 +00:00
|
|
|
Compile with
|
2012-08-23 09:08:17 +00:00
|
|
|
|
|
|
|
make
|
2012-06-09 14:40:12 +00:00
|
|
|
|
2012-06-15 19:12:51 +00:00
|
|
|
Install with
|
2012-06-15 19:47:23 +00:00
|
|
|
|
2012-08-23 09:08:17 +00:00
|
|
|
sudo make install
|
2012-06-15 19:47:23 +00:00
|
|
|
|
2012-08-22 13:05:52 +00:00
|
|
|
It copies mbpfan to /usr/sbin and mbpfan.conf to /etc
|
2012-06-15 19:47:23 +00:00
|
|
|
|
2012-06-15 19:12:51 +00:00
|
|
|
|
2012-08-22 13:05:52 +00:00
|
|
|
Run The Tests (Recommended)
|
|
|
|
---------------------------
|
|
|
|
It is recommended to run the tests after installing the program
|
2012-07-31 17:09:20 +00:00
|
|
|
|
2012-08-23 09:08:17 +00:00
|
|
|
sudo ./bin/mbpfan -t
|
|
|
|
|
2012-08-22 13:05:52 +00:00
|
|
|
or
|
2012-06-09 14:25:28 +00:00
|
|
|
|
2012-08-23 09:08:17 +00:00
|
|
|
sudo make tests
|
2012-08-22 13:05:52 +00:00
|
|
|
|
2012-06-15 19:12:51 +00:00
|
|
|
|
2012-06-09 14:40:12 +00:00
|
|
|
Run Instructions
|
2012-08-22 13:05:52 +00:00
|
|
|
----------------
|
2012-06-15 19:47:23 +00:00
|
|
|
If not installed, run with
|
2012-08-23 09:08:17 +00:00
|
|
|
|
|
|
|
sudo bin/mbpfan
|
2012-06-09 14:40:12 +00:00
|
|
|
|
2012-06-15 19:47:23 +00:00
|
|
|
If installed, manually run with
|
2012-08-23 09:08:17 +00:00
|
|
|
|
|
|
|
sudo mbpfan
|
2012-06-15 19:47:23 +00:00
|
|
|
|
|
|
|
If installed and using the init file, run with (Ubuntu example)
|
2012-08-23 09:08:17 +00:00
|
|
|
|
|
|
|
sudo service mbpfan start
|
2012-06-15 19:47:23 +00:00
|
|
|
|
2012-08-22 13:05:52 +00:00
|
|
|
|
|
|
|
Starting at boot
|
|
|
|
----------------
|
2012-08-22 13:53:07 +00:00
|
|
|
**Ubuntu**
|
|
|
|
For upstart based init systems (Ubuntu), an example upstart job has been
|
|
|
|
provided for use in place of the LSB-style init script.
|
|
|
|
To use, execute:
|
2012-08-23 09:08:17 +00:00
|
|
|
|
|
|
|
sudo cp mbpfan.upstart /etc/init/mbpfan.conf
|
|
|
|
sudo start mbpfan
|
2012-08-22 13:53:07 +00:00
|
|
|
|
|
|
|
**Debian**
|
|
|
|
An init file suitable for /lib/lsb/init-functions (Debian)
|
2012-08-22 13:05:52 +00:00
|
|
|
is located in the main folder of the source files, called mbpfan.init.debian
|
|
|
|
Rename it to mbpfan, give it execution permissions (chmod +x mbpfan)
|
|
|
|
and move it to /etc/init.d
|
2012-08-23 09:08:17 +00:00
|
|
|
Then, add it to the default runlevels with (as root):
|
|
|
|
|
|
|
|
sudo update-rc.d mbpfan defaults
|
2012-08-22 13:05:52 +00:00
|
|
|
|
2012-08-22 13:53:07 +00:00
|
|
|
**Redhat, CentOS, Fedora**
|
|
|
|
An init file suitable for /etc/rc.d/init.d/functions
|
2012-08-22 13:05:52 +00:00
|
|
|
(RHEL/CentOS & Fedora) is also located at the same place, this file is called
|
|
|
|
mbpfan.init.redhat. Also rename it to mbpfan, give it execution permissions
|
|
|
|
and move it to /etc/init.d
|
|
|
|
To add the script to the default runlevels, run the following as root:
|
2012-08-23 09:08:17 +00:00
|
|
|
|
|
|
|
chkconfig --level 2345 mbpfan on && chkconfig --level 016 mbpfan off
|
|
|
|
|
|
|
|
**Gentoo**
|
|
|
|
An init file is available for gentoo users: mbpfan.init.gentoo
|
|
|
|
To install, run as root:
|
|
|
|
|
|
|
|
cp mbpfan.init.gentoo /etc/init.d/mbpfan
|
|
|
|
|
|
|
|
To automatically run mbpfan at boot, run as root:
|
|
|
|
|
|
|
|
rc-update add mbpfan default
|
|
|
|
|
2012-08-22 13:05:52 +00:00
|
|
|
|
2012-08-22 13:53:07 +00:00
|
|
|
**systemd**
|
2012-08-22 13:05:52 +00:00
|
|
|
As a special bonus, a service file for systemd is also included. To use it,
|
2012-08-23 09:08:17 +00:00
|
|
|
execute the following (as root):
|
|
|
|
|
|
|
|
sudo cp mbpfan.service /usr/lib/systemd/system
|
|
|
|
sudo ln -s /usr/lib/systemd/system/mbpfan.service /etc/systemd/system/mbpfan.service
|
|
|
|
sudo systemctl daemon-reload
|
|
|
|
sudo systemctl start mbpfan.service
|
2012-08-22 13:53:07 +00:00
|
|
|
|
2012-08-22 13:05:52 +00:00
|
|
|
To start the service automatically at boot, also execute the following:
|
2012-08-23 09:08:17 +00:00
|
|
|
|
|
|
|
sudo systemctl enable mbpfan.service
|
2012-08-22 13:05:52 +00:00
|
|
|
|
|
|
|
|
2012-07-03 08:39:30 +00:00
|
|
|
Usage
|
|
|
|
-------
|
|
|
|
|
2012-08-23 09:08:17 +00:00
|
|
|
Usage: ./mbpfan OPTION(S)
|
|
|
|
|
|
|
|
-h Show the help screen
|
|
|
|
-f Run in foreground
|
|
|
|
-t Run the tests
|
|
|
|
-v Be (a lot) verbose
|
2012-07-03 08:39:30 +00:00
|
|
|
|
2012-06-09 14:40:12 +00:00
|
|
|
|
|
|
|
License
|
|
|
|
---------------------
|
|
|
|
GNU General Public License version 3
|
2012-06-09 14:25:28 +00:00
|
|
|
|
2012-01-25 15:26:01 +00:00
|
|
|
|
2012-06-09 14:40:12 +00:00
|
|
|
Based On
|
|
|
|
---------------------
|
2012-06-11 19:43:53 +00:00
|
|
|
* http://allanmcrae.com/2010/05/simple-macbook-pro-fan-daemon/
|
|
|
|
* http://allanmcrae.com/2011/08/mbp-fan-daemon-update/
|
|
|
|
* https://launchpad.net/macfanctld
|
|
|
|
* http://paste2.org/p/862259
|
2013-10-13 16:18:17 +00:00
|
|
|
* http://www.lobotomo.com/products/FanControl/
|