Page 1 of 2 12 LastLast
Results 1 to 10 of 13

Thread: Thermal monitor

  1. #1
    Join Date
    Feb 2011
    Beans
    6

    Thermal monitor problem

    I dindn't get to install Ubuntu yet because of a problem. I need to activate thermal monitor because my laptop overheats, but my BIOS doesn't have any options for thermal monitor and the only way I can enable it is by using RightMark CPU Clock wich only runs in Windows. If I don't enable it, my laptop shuts down when I play a game (it only activates for very short periods and doesn't affect the game performance very much). This is why I'm asking if thermal monitor can be enabled from Ubuntu or maybe if RightMark can run in Wine (although I don't think it can).I know I should do something about the cooling system, but even if I do, considering my laptop is a Acer, you never know when the cooling might fail again.
    Last edited by alextulu; February 27th, 2011 at 11:13 PM.

  2. #2
    Join Date
    Feb 2010
    Location
    Obscurial Springs
    Beans
    15,209
    Distro
    Ubuntu Budgie Development Release

    Re: Thermal monitor

    Hi and Welcome

    Code:
    sudo apt-get install lm-sensors
    and to view CPU temp. run
    Code:
    sensors
    in the terminal
    "Our intention creates our reality. "

    Ubuntu Documentation Search: Popular Pages
    Ubuntu: Security Basics
    Ubuntu: Flavors

  3. #3
    Join Date
    Feb 2011
    Beans
    6

    Re: Thermal monitor

    Does lm-sensors only enable me to view temperatures or does it also enable thermal monitor ?

  4. #4
    Join Date
    Feb 2010
    Location
    Obscurial Springs
    Beans
    15,209
    Distro
    Ubuntu Budgie Development Release

    Re: Thermal monitor

    After you install lm-sensors , at least on the desktop edition , You could install sensors-applet and right click your panel and add it to the panel to display hardware temps.

    It has a a couple of display options in the preference settings , but it is only a display and controls nothing.
    "Our intention creates our reality. "

    Ubuntu Documentation Search: Popular Pages
    Ubuntu: Security Basics
    Ubuntu: Flavors

  5. #5
    Join Date
    Feb 2011
    Beans
    6

    Re: Thermal monitor

    I read the following post on the RightMark forum:

    "Does anyone know of a similar program or linux version of this program that I can run in linux (ubuntu more specifically)?

    Unfortunately, there's no Linux version of RMClock.
    However, there seem to be some Linux kernel modules providing the way of managing CPU performance/power management."

    Can anyone tell me what those modules are ?

  6. #6
    Join Date
    Nov 2009
    Beans
    1,879
    Distro
    Ubuntu Studio 9.10 Karmic Koala

    Re: Thermal monitor

    You are talking about 2 separate things here:
    A thermal monitor will tell you what temperature your CPU is but it won't solve your overheating issue
    A frequency scaling app (like RMClock) will change the speed of your CPU, which causes it to draw less power and thereby runs cooler

    To achieve the latter: Right click the top panel and add an applet, in the list you should see an option for CPU frequency scaling. Select this and set it to whatever level you need to keep the heat down.

  7. #7
    Join Date
    Feb 2011
    Beans
    6

    Re: Thermal monitor

    I'm not talking about a thermal monitoring application, I'm talking about the thermal monitor 1&2 in Intel CPU's. When the CPU reacheas about 2 degrees celsius below maximum temperature, thermal monitor inserts HALT instuctions and also decreases the frequency by half wich cools the CPU. Normally that option is found in the BIOS, but my Acer laptop doesn't have that option in it's BIOS and the only way i can activate it is by using RightMark wich doesn't have a linux version.
    Last edited by alextulu; February 28th, 2011 at 01:30 PM.

  8. #8
    Join Date
    Nov 2009
    Beans
    1,879
    Distro
    Ubuntu Studio 9.10 Karmic Koala

    Re: Thermal monitor

    OK I see what you mean. In any case the solution I posted is still applicable. You could set up a script to throttle at certain temps, or just keep an eye on how hot it is and change when you need to.

    But if your laptop is regularly reaching maximum temps, I would have it looked at, otherwise it won't last very long.

  9. #9
    Join Date
    Feb 2011
    Beans
    6

    Re: Thermal monitor

    In that case please tell me how to make that script.

  10. #10
    Join Date
    Nov 2009
    Beans
    1,879
    Distro
    Ubuntu Studio 9.10 Karmic Koala

    Re: Thermal monitor

    I can show you the basics, but you will have to look up the specifics yourself. Here is what I would do:
    First install lm-sensors and check your temps, using the method frogs hair explained
    Check this guide for how to use cpufreq (which is already installed)
    Open gedit and write want you want done:
    Code:
    #! /bin/bash
    if your commands...
    Save it with an sh extension and allow it to run as a program under properties tab
    Add the script to your autostart menu

    If you don't want to get into all that, just use the applet and set it at half speed permanently. This is probably better for your CPU anyway.

Page 1 of 2 12 LastLast

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
  •