Dec 14, 2014 Tag: Hardware

Thinkpad T-430

This is a place to collect knowhow about the Lenovo Thinkpad T-430.

Updated on Apr 04, 2016

Fan Control

level  rpm   rpm
0,       0,    0
1,    2567, 2583
2,    3745, 3792
3,    3950, 3982
4,    4130, 4132
5,    4552, 4587
6,    5340, 5347
7,    5340, 5347

Thinkfan

Install:

sudo apt-get install thinkfan

Query temperatures:

find . -type f -name "temp*_input" -exec cat {} \;

or:

cat /sys/devices/platform/coretemp.0/temp1_input
cat /sys/devices/platform/coretemp.0/temp2_input
cat /sys/devices/platform/coretemp.0/temp3_input
cat /sys/devices/virtual/hwmon/hwmon0/temp1_input

or:

sensors; \
echo \
   $(cat /sys/devices/virtual/hwmon/hwmon0/temp1_input) \
   $(cat /sys/devices/platform/coretemp.0/temp1_input) \
   $(cat /sys/devices/platform/coretemp.0/temp2_input) \
   $(cat /sys/devices/platform/coretemp.0/temp3_input)
➜  ~    sensors; \
   echo \
      $(cat /sys/devices/virtual/hwmon/hwmon0/temp1_input) \
      $(cat /sys/devices/platform/coretemp.0/temp1_input) \
      $(cat /sys/devices/platform/coretemp.0/temp2_input) \
      $(cat /sys/devices/platform/coretemp.0/temp3_input)
acpitz-virtual-0
Adapter: Virtual device
temp1:        +61.0°C  (crit = +200.0°C)

coretemp-isa-0000
Adapter: ISA adapter
Physical id 0:  +60.0°C  (high = +87.0°C, crit = +105.0°C)
Core 0:         +59.0°C  (high = +87.0°C, crit = +105.0°C)
Core 1:         +59.0°C  (high = +87.0°C, crit = +105.0°C)

thinkpad-isa-0000
Adapter: ISA adapter
fan1:        1770 RPM

61000 60000 59000 59000

Sensors

Inxi

sudo apt-get install inxi
inxi
inxi --help
inxi -b          # basic info
➜  ~ inxi -s
Sensors:   System Temperatures: cpu: 62.0C mobo: N/A gpu: 56C
           Fan Speeds (in rpm): cpu: 2191

indicator-sensors

Works for Ubuntu:

sudo apt-add-repository ppa:alexmurray/indicator-sensors
sudo apt-get update
sudo apt-get install indicator-sensors

Gnome sensors-applet

Does not work for Ubuntu:

sudo apt-get install sensors-applet

TLP

Was ist TLP? TLP bringt Linux die Feinheiten des Stromsparens bei, ohne dass der Anwender allzuviel Detailwissen mitbringen muss:

sudo tlp;
sudo tlp stat

Previous topic

Troublesome Switching between Tabs and Spaces in PhpStorm

Next topic

Just thinking

Tags

Archives

Languages

Recent Posts

This Page