Results 1 to 10 of 50

Thread: How do I Install k10temp?

Threaded View

  1. #1
    Join Date
    Mar 2009
    Beans
    927
    Distro
    Ubuntu 12.04 Precise Pangolin

    Post How do I Install k10temp?

    1. Make a new directory and open it:
      Code:
      mkdir -p 'k10temp'
      cd 'k10temp'
    2. Download the file as k10temp.c:
      Code:
      wget -O 'k10temp.c' 'http://lists.lm-sensors.org/pipermail/lm-sensors/attachments/20080718/d51be536/attachment.bin'
    3. Create a makefile:
      Code:
      echo 'obj-m := k10temp.o
      KDIR := /lib/modules/$(shell uname -r)/build
      PWD := $(shell pwd)
      default:
      $(MAKE) -C $(KDIR) SUBDIRS=$(PWD) modules' > Makefile
    4. Download the Linux headers (you may need to specify the version):
      Code:
      sudo apt-get install linux-headers
    5. Run the make file:
      Code:
      sudo make -C /lib/modules/$(uname -r)/build M=$(pwd) modules
    6. Temporarily add the k10temp module:
      Code:
      sudo insmod k10temp.ko
    7. Test if the sensors work (do not continue if the sensors do not work):
      Code:
      sensors
    8. Permanently add the k10temp module:
      Code:
      sudo cp k10temp.ko /lib/modules/$(uname -r)/kernel/drivers/hwmon
    9. Rebuild modules.dep file:
      Code:
      sudo depmod
    10. Do some modprobing stuff:
      Code:
      sudo modprobe k10temp
    11. Add k10temp to the startup list:
      Code:
      echo 'k10temp' | sudo tee -a /etc/modules >/dev/null
    12. Restart your computer.
    13. Test if the sensors work:
      Code:
      sensors



    Original Question:
    ----------------------------------------

    I'm trying to get my fans to adjust their speed according to the temperature in my computer. I followed a guide and installed lm-senesors, but when I ran it (and after answering yes to all the questions) I receive this output:
    Code:
    #----cut here----
    # Chip drivers
    # no driver for AMD K10 thermal sensors yet
    #----cut here----
    But I can see a lot about k10temp 'patches' on the internet, I was wondering if installing one of these will get the sensor working and if so, how I can actually install the patch. I'm asking because I don't know much about any of this and would rather not have my CPU melt because of some stupid mistake I made with the fan driver.

    My Hardware:
    • Case: Antec 300
    • PSU: Antec EarthWatts 750W
    • Motherboard: Gigabyte GA-MA790FXT-UD5P 790FX
    • CPU: AMD Phenom II X3 710 2.6GHz
    • GPU: ATi Radeon 3850
    Last edited by Penguin Guy; September 22nd, 2010 at 05:49 PM.

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •