- Writers needed:
Spain
Rotterdam
Berlin - Luke and Brie are on a first date
- Sea Legs
- Kung Fu Joe
- The Dark Lurking
- SXSW 2010: Review of SKATELAND
- SXSW 2010: Review of TUCKER & DALE VS EVIL
- First English review of Swiss scifi thriller CARGO
- SXSW 2010: Review of Neil Marshall's CENTURION
- SXSW 2010: Review of MONSTERS
- SXSW 2010: Review of A SERBIAN FILM (SRPSKI FILM)
- SXSW 2010: Review of KICK ASS
- SXSW 2010: Review of THE GIRL WITH THE DRAGON TATTOO
- Review of Jean Reno's L'IMMORTEL (22 BULLETS)
- Review of Tim Burton's ALICE IN WONDERLAND
- Book Review: AMERICAN APOCALYPSE - THE BEGINNING
- Re: What would you call your Post Apocalyptic Group?
- Re: 667 Comments
- Re: 667 Comments
- Re: What would you call your Post Apocalyptic Group?
- Re: 667 Comments
- What would you call your Post Apocalyptic Group?
- THE BRONX WARRIOR TRILOGY
- Re: Ok, I think M Night may have has lost his load (again)
- Re: Hello is anybody there?
- Re: Hello is anybody there?
- First English review of Swiss scifi thriller CARGO
- Coming to the BBC.. a new 6 part post apocalyptic comic adaptation FALLOUT
- EXCLUSIVE: Kyle Rankin of Infestation fame is back with the PA NUCLEAR FAMILY
- Trailer for post-apocalyptic creature feature DARK NEMESIS
- Chris Gorak teams with Timur Bekmambetov on new PA flick!
- First look at DANISH post-apocalyptic actioner EASTERN ARMY
- Watch the full PA short CONNECTED now!
- Trailer for Capcom's live action DEAD RISING movie... seriously
- Leaked promo reel for UK PA zombie flick DEVIL'S PLAYGROUND
- Trailer for post-apocalyptic video game METRO 2033
- Retro Slave: the apocalypse gets silly in AMERICA 3000
- EXCLUSIVE: Kyle Rankin of Infestation fame is back with the PA NUCLEAR FAMILY
- Trailer for X-Men spoof MUTANT GIRLS SQUAD
- Promo reel for NEMESIS v2.0
- SXSW 2010: First clip from MONSTERS
- Finally, a trailer for THE DISAPPEARANCE OF ALICE CREED
- It's here! First trailer for vampire musical mash-up SUCK
- Oh snap! TRON LEGACY trailer is awesome!
- Win a STINGRAY SAM DVD and soundtrack!
- Trailer for ZATOICHI: THE LAST
- The official trailer for Jay Baruchel's commie comedy THE TROTSKY
- Poster and new trailer for intriguing coming-of-ager DESERT SON
- Trailer for post-apocalyptic creature feature DARK NEMESIS
- Review of Jean Reno's L'IMMORTEL (22 BULLETS)
- Chris Gorak teams with Timur Bekmambetov on new PA flick!
- SXSW 2010: Full trailer for EARTHLING
- Review of Tim Burton's ALICE IN WONDERLAND
- Partial SCI-FI LONDON lineup includes PkD's RADIO FREE ALBEMUTH!
- The great Michael Biehn makes directorial debut with BLOOD BOND
- Crazy a** stills from demonic biker flick HARD RIDE TO HELL
- SXSW 2010: Trailer for David Robert Mitchell’s THE MYTH OF THE AMERICAN SLEEPOVER
News
Reviews
Forums
Post apocalyptic list

Yes, we've sold out.

Join QE!
Upcoming Reviews
Latest Reviews
Latest Forum Posts
PA News
Older News

Posted on Sunday, October 1st, 2006 3:47:00 GMT by: quietearth
Posted under: ubuntu lm-sensors temperate
One of the basic things you need, especially if you build your own boxes like I do, is to be able to watch cpu temperatures, voltages, fan speeds, etc. This is easily done with the lm-sensors package in conjuction with code which is available for most types of motherboards in the kernel. This is pretty straightforward, first off lets install lm-sensors:
# apt-get install lm-sensorsOnce that's done we need to create the i2c device files and unfortunately this isn't done automatically, so we can grab the necessary script from the lm-sensors source package, use this link, or cut-n-paste this:
--cut here--
#!/bin/bash
# Here you can set several defaults.
# The number of devices to create (max: 256)
NUMBER=32
# The owner and group of the devices
OUSER=root
OGROUP=root
# The mode of the devices
MODE=600
# This script doesn't need to be run if devfs is used
if [ -r /proc/mounts ] ; then
if grep -q "/dev devfs" /proc/mounts ; then
echo "You do not need to run this script as your system uses devfs."
exit;
fi
fi
i=0;
while [ $i -lt $NUMBER ] ; do
echo /dev/i2c-$i
mknod -m $MODE /dev/i2c-$i c 89 $i || exit
chown "$OUSER:$OGROUP" /dev/i2c-$i || exit
i=$[$i + 1]
done
--cut here--After running that script, we can then run sensors-detect to figure out our motherboard type:
# sensors-detectThis might hang your system while probing for the right motherboard, but if it doesn't all the questions are pretty straightforward and you can usually just hit enter for everything. At the end it will ask if you want to add the necessary kernel modules to /etc/modules, answer YES. You can then reboot to load everything, or take a look at /etc/modules and manually modprobe each one IN THE ORDER it's in the file. Then run the sensors command and we get this:
# sensors
V1.5: +2.467 V (min = +1.42 V, max = +1.58 V) ALARM
VCore: +1.479 V (min = +1.48 V, max = +1.63 V) ALARM
V3.3: +3.373 V (min = +3.13 V, max = +3.47 V)
V5: +5.000 V (min = +4.74 V, max = +5.26 V)
V12: +11.734 V (min = +11.38 V, max = +12.62 V)
CPU_Fan: 2299 RPM (min = 4000 RPM) ALARM
fan2: 0 RPM (min = 0 RPM)
fan3: 1057 RPM (min = 0 RPM)
fan4: 0 RPM (min = 0 RPM)
CPU: +41.50°C (low = +10°C, high = +50°C)
Board: +35.25°C (low = +10°C, high = +35°C)
Remote: +35.50°C (low = +10°C, high = +35°C) ALARM
CPU_PWM: 144
Fan2_PWM: 112
Fan3_PWM: 112
vid: +1.550 V (VRM Version 9.0)If you want to monitor things under gnome their is a handy applet for that:
# apt-get install sensors-appletBut really at this point you should reboot. If you need to change incorrect scaling or set temperature lower/upper limits, just modify /etc/sensors.conf.
Tested under dapper and edgy.
Under feisty, you do not need to install any packages or run the above script. Just run sensors-detect and reboot. The sensors applet is the same place as always.
Pingbacks
Pingback from http://techxplorer.wordpress.com/2006/10/22/pc-case-modification-front-view/
RSS Feed for commentsComments
Posted by: tiamatu | March 4, 2007 12:14:34 am | permalink
Posted by: Anonymous | March 16, 2007 10:17:04 pm | permalink
Posted by: Joe | June 7, 2007 04:31:16 pm | permalink
Posted by: greg | June 8, 2007 03:03:22 am | permalink
Posted by: Anonymous | November 3, 2007 12:03:50 pm | permalink
Posted by: Anonymous | October 23, 2008 02:51:45 pm | permalink
Posted by: Anonymous | November 28, 2009 06:59:23 pm | permalink
Posted by: chuckles | December 11, 2009 06:51:24 pm | permalink
Posted by: sin2x | March 20, 2010 01:52:19 pm | permalink
Post a comment
Related articles
rss | subscribe via email | the team | contact us | mobile
© 2006-2009 Don Neumann (except where applicable)
We are looking for free hosting with a cut of sales, you'll get a link right here.
If you want news of your film posted, use our contact page and we'll check it out
Permission is granted to use material from this site if you provide a reference to us via a link and DO NOT HOTLINK.
GenreBanners.com Banner Exchange