View previous topic :: View next topic |
Author |
Message |
dgnome n00b
![n00b n00b](/images/ranks/rank_rect_0.gif)
Joined: 15 Mar 2004 Posts: 1
|
Posted: Mon Mar 15, 2004 7:32 pm Post subject: MSI CoreCell |
|
|
Anybody managed to control fan-speeds and such with CoreCell? The Cool'n'Quiet option keeps the cpufan at a bit too high rpm's... Noisy little bastard this standard a64 cooler ![Very Happy :D](images/smiles/icon_biggrin.gif) |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
f1n4rf1n n00b
![n00b n00b](/images/ranks/rank_rect_0.gif)
Joined: 30 May 2004 Posts: 46 Location: Osnabrueck [ger]
|
Posted: Fri Dec 10, 2004 1:36 pm Post subject: |
|
|
*bump*
/me just loves the windows "speedfan" - there must be something similar... |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
Tuti n00b
![n00b n00b](/images/ranks/rank_rect_0.gif)
Joined: 14 May 2004 Posts: 33
|
Posted: Fri Dec 10, 2004 5:07 pm Post subject: |
|
|
all you need is the fancontrol script from lm-sensors (you don't need to install the entire package)
and a little init scipt like:
Quote: |
#!/sbin/runscript
start() {
ebegin "Starting fancontrol"
start-stop-daemon --start --background --pidfile /var/run/fancontrol.pid --exec /usr/sbin/fancontrol
eend ${?} "Failed to start fancontrol"
}
stop() {
ebegin "Stopping fancontrol"
start-stop-daemon --stop --pidfile /var/run/fancontrol.pid
eend ${?} "Failed to stop fancontrol"
} |
from an old post somewhere |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
tarzan420 Tux's lil' helper
![Tux's lil' helper Tux's lil' helper](/images/ranks/rank_rect_1.gif)
Joined: 05 Jul 2003 Posts: 81 Location: Fairbanks AK
|
Posted: Thu Dec 16, 2004 11:34 pm Post subject: |
|
|
on an opteron box myself, just got fancontrol from this thread, but added modfied the above initscript:
Code: | #!/sbin/runscript
depend() {
need lm_sensors
}
start() {
ebegin "Starting fancontrol"
start-stop-daemon --start --background --pidfile /var/run/fancontrol.pid --exec /usr/sbin/fancontrol
eend ${?} "Failed to start fancontrol"
}
stop() {
ebegin "Stopping fancontrol"
start-stop-daemon --stop --pidfile /var/run/fancontrol.pid
eend ${?} "Failed to stop fancontrol"
}
|
_________________ The power of Unix coupled with a pleasing interface and scores of usable desktop applications is a disgusting perversion of everything Unix stands for. |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
|