- Writers needed:
Spain
Rotterdam
Berlin - Luke and Brie are on a first date
- Sea Legs
- Kung Fu Joe
- The Dark Lurking
- Review of arthouse post apocalyptic flick DUST
- Sundance 2010: Review of French Canadian revenge shocker 7 DAYS
- Victoria Film Festival: Review of Alexandre Franchi`s THE WILD HUNT
- Victoria Film Festival: Review of Sook-Yin Lee's YEAR OF THE CARNIVORE
- Review of SURVIVORS season 2 episode 3
- Review of Irish PA arthouse drama DITCHING
- Review of ZONAD
- Review of FARSCAPE: The Complete Series DVD box
- Review of SURVIVORS season 2 episode 2
- Review of THE BOOK OF ELI
- DVD release finally puts GAMER under my skin
- Re: Ok, I think M Night may have has lost his load (again)
- Re: Do you think you would survive the post apocalypse?
- Re: Do you think you would survive the post apocalypse?
- Ok, I think M Night may have has lost his load (again)
- Re: What PA Fiction are you currently reading?
- Re: What PA Fiction are you currently reading?
- Re: Do you think you would survive the post apocalypse?
- Re: 667
- Re: Do you think you would survive the post apocalypse?
- Summer Film Festivals
- Steven Soderbergh boards plague thriller Contagion
- Review of arthouse post apocalyptic flick DUST
- Trailer for arthouse plague flick THE DEFILED
- Video Game Preview: FALLOUT: NEW VEGAS coming in Fall 2010
- SURVIVORS season two, episode 4 preview
- Review of SURVIVORS season 2 episode 3
- EXCLUSIVE: Trailer for Irish post apocalyptic arthouse drama DITCHING
- Review of Irish PA arthouse drama DITCHING
- Plastic Man goes post apocalyptic and zombie in the teaser for A.D.
- SURVIVORS season two, epsiode 3 preview
- EXAELLA - Post apocalyptic, cyberpunk, anime, stunning
- Eden Lake helmer to remake THE WOMAN IN BLACK
- Review of ZONAD
- Fist teaser for Irish comedy ZONAD
- Plastic Man goes post apocalyptic and zombie in the teaser for A.D.
- IFFR 2010: Clip from THE SENTIMENTAL ENGINE SLAYER
- SUNDANCE 2010: Review of SPLICE, HESHER, HIGH SCHOOL, BOY, and BURIED
- Ricky Gervais taps his working class roots in CEMETERY JUNCTION
- Another Jonathan Lethem adaptation coming in PROMISCUOUS STORIES?
- First teaser for Takeshi Kitano's much anticipated OUTRAGE!
- Official trailer for Vardis Marinakis' bleak period drama BLACK FIELD (Mavro livadi)
- Review of FARSCAPE: The Complete Series DVD box
- SURVIVORS season two, epsiode 3 preview
- EXAELLA - Post apocalyptic, cyberpunk, anime, stunning
- 80s style Rutger Hauer villian in H1N1: VIRUS X
- Awesome trailer for KING CRAB ATTACK!
- Two official UK quads for SHANK
- First look inside crazy Philip K. Dick comic ELECTRIC ANT
- Treasure seekers find more than expected in HANGER NO. 5
- Humanity high-tails it to space in scifi short S.S. HUMANITY
- Review of SURVIVORS season 2 episode 2
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
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