Software to detect the temperature of the graphics card

Turn this

The sensor is a monitor that displays the hardware temperature in graphical form and also supports the Ubuntu  Unity Indicator.

It can monitor:

  • The temperature of the motherboard and CPU sensor (using lm-sensors)
  • The temperature of the graphics card GPU (using XNVCtrl)
  • The temperature of the hard disk (using hddtemp)
  • Fan rotation speed (using lm-sensors)

    Installation:
    First install lm-sensors:

    1

    sudo apt-get install lm-sensors

    Then detect the hardware sensor:

    1

    sudo sensors-detect

    Run the following command to verify that it works:

    1

    sensors

    It should display some information similar to the following:

    1

    2

    3

    4

    5

    6

    7

    coretemp-isa-0000

    Adapter: ISA adapter

    Core 0: +46.0C (high = +76.0C, crit = +100.0C)

    coretemp-isa-0001

    Adapter: ISA adapter

    Core 1: +44.0C (high = +76.0C, crit = +100.0C)

    Finally install psensor from ppa:

    1

    2

    3

    sudo apt-add-repository ppa:jfi/ppa

    sudo apt-get update

    sudo apt-get install psensor

Guess you like

Origin blog.csdn.net/Gussss/article/details/94550021