การตั้งค่าขีด จำกัด อุณหภูมิใน i8kmon Ubuntu 14.04


8

ฉันมีปัญหาความร้อนสูงเกินไปกับฉันDell Inspiron 15Rและติดตั้งi8kmonเพื่อควบคุมความเร็วพัดลมบนUbuntu 14.04

นี่คือสำเนาของเอาต์พุต 'lm-sensors':

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

i8k-virtual-0
Adapter: Virtual device
Right Fan:      0 RPM
CPU:          +62.0°C 

แม้ในขณะที่ตั้งค่าขีด จำกัด อุณหภูมิ/etc/i8kmonเป็น:

set config(daemon)      1

# Automatic fan control, override with --auto option
set config(auto)        1

# Report status on stdout, override with --verbose option
set config(verbose) 1

# Status check timeout (seconds), override with --timeout option
set config(timeout) 1

# Temperature thresholds: {fan_speeds low_ac high_ac low_batt high_batt}
set config(0)   {{0 -}  -1  55  -1  55}
set config(1)   {{1 -}  55  70  55  70}
set config(2)   {{2 -}  60  128  60  128}

พัดลมไม่เริ่มทำงานเมื่อควร ความคิดใด ๆ ของสิ่งที่อาจจะผิดหรือเปล่า? นี่คือสำเนาของlogเมื่อทำงานi8kmonด้วยตนเองพร้อม--verboseตัวเลือก:

i8kmon v1.30 11/16/2013 - Copyright (C) 2013 Vitor Augusto <vitorafsr@gmail.com>
config(0)          = {0 0} -1 60 -1 65
config(1)          = {1 0} 50 70 55 75
config(2)          = {1 1} 60 80 65 85
config(3)          = {2 2} 70 128 75 128
config(acpi)       = acpi
config(auto)       = 1
config(daemon)     = 1
config(geometry)   = 
config(i8kfan)     = /usr/bin/i8kfan
config(min_speed)  = 2000
config(sysconfig)  = /etc/i8kmon.conf
config(t_high)     = 80
config(timeout)    = 5
config(unit)       = C
config(use_conf)   = 1
config(userconfig) = ~/.i8kmon
config(verbose)    = 1
status(ac)         = 0
status(acpi_timer) = 0
status(left)       = 
status(leftspeed)  = 0 -1 -1 -1
status(lspeed)     = 0
status(lstate)     = 0
status(lstuck)     = 0
status(nfans)      = 2
status(right)      = 
status(rightspeed) = 0 0 0 0
status(rspeed)     = 0
status(rstate)     = 2
status(rstuck)     = 0
status(state)      = 0
status(t_high)     = 0
status(t_low)      = 0
status(temp)       = 0
status(timer)      = 
status(ui)         = 0
1410467738 acpi: Battery 0: Discharging, 89%, 03:13:17 remaining
temp, left, right, ac state: 60 -1 2 0
# exec /usr/bin/i8kfan 0 0
temp, left, right, ac state: 59 -1 0 0
# exec /usr/bin/i8kfan 0 {}
temp, left, right, ac state: 58 -1 0 0
# exec /usr/bin/i8kfan 0 {}
temp, left, right, ac state: 58 -1 0 0
# exec /usr/bin/i8kfan 0 {}
temp, left, right, ac state: 60 -1 0 0
# exec /usr/bin/i8kfan 0 {}
temp, left, right, ac state: 58 -1 0 0
# exec /usr/bin/i8kfan 0 {}
temp, left, right, ac state: 59 -1 0 0
# exec /usr/bin/i8kfan 0 {}
temp, left, right, ac state: 58 -1 0 0
# exec /usr/bin/i8kfan 0 {}
temp, left, right, ac state: 58 -1 0 0
# exec /usr/bin/i8kfan 0 {}
temp, left, right, ac state: 60 -1 0 0

ดูเหมือนว่าอุณหภูมิผิดปกติและi8kmonไม่ได้เปิดพัดลม

คำตอบ:


8

ตามlm-sensors:

i8k-virtual-0
Adapter: Virtual device
Right Fan:      0 RPM

คุณมีเพียงซ้ายจึงค่าพัดลมควรจะเป็นRight Fan -1คุณต้องเปลี่ยนการตั้งค่าในไฟล์/etc/i8kmon.confเป็นค่าต่อไปนี้:

set config(0)   {{-1 0}  -1  40  -1  40}
set config(1)   {{-1 1}  40  60  40  60}
set config(2)   {{-1 2}  60  128  60  128}
set config(3)   {{-1 2}  60  128  60  128}

ในสถานะ{-1 0}ไม่มีพัดลมด้านซ้ายและพัดลมด้านขวาปิดอยู่ในสถานะ{-1 1}พัดลมขวาควรทำงานที่ความเร็วต่ำในขณะที่อยู่ในสถานะ{-1 2}มันควรทำงานด้วยความเร็วเต็ม ค่าอื่น ๆ เช่น40 60 40 60สอดคล้องกับขีด จำกัด อุณหภูมิ --- นาทีและสูงสุด --- ของแต่ละรัฐโดยมีและไม่มีไฟ AC

คุณต้องเพิ่มตัวเลือกต่อไปนี้:

# Run as daemon, override with --daemon option
set config(daemon)      0

# Automatic fan control, override with --auto option
set config(auto)        1

# Report status on stdout, override with --verbose option
set config(verbose) 1

# Status check timeout (seconds), override with --timeout option
set config(timeout) 20

สุดท้ายคุณก็ต้องสร้างไฟล์i8k.confในมีเส้น/etc/modprobe.d/options i8k force=1

ดูรายละเอียดเพิ่มเติม man i8kmon


ฉันทำการเปลี่ยนแปลงและยังคงเหมือนเดิม ... ปัญหาอาจมาจากการตรวจจับของแฟน ๆ ? มีวิธีที่จะบังคับให้แฟน ๆ ไปที่จริงหรือไม่?
นิโคลัส

@Nicolas ทำงานlm-sensorsเมื่อแฟนของคุณทำงานและตรวจสอบผลลัพธ์Right Fan: 0 RPMหากคุณเห็นการเปลี่ยนแปลงใด ๆ และคำถามพิเศษอีกข้อหนึ่งคุณมีแฟน ๆ ที่ทำงานเมื่อซีพียูสูงกว่าหรือไม่?
αғsнιη

พัดลมกำลังทำงานที่ความเร็วต่ำแน่นในตอนนี้ ... Right Fan: 78000 RPMแต่อุณหภูมิดูค่อนข้างสูง CPU: +69.0°C. มันเริ่มต้นทำงานจริงเมื่อกิจกรรม CPU สูงขึ้น
นิโคลัส

1
@ Nicolas เปลี่ยนชื่อi8kmonเป็นi8kmon.confและตั้งค่าset config(daemon) 1เป็นset config(daemon) 0และset config(timeout) 1ไปset config(timeout) 20ยังและแทนที่-ด้วย-1ค่าในแต่ละรัฐex{- 1}เป็น{-1 1}ans เป็นต้น และในที่สุดก็รันi8kmonในเทอร์มินัลคุณจะเห็นว่าทำงานหรือไม่ คุณสามารถดูaskubuntu.com/a/308548/283843หรือubuntuforums.org/archive/index.php/t-842775.htmlสำหรับรายละเอียดเพิ่มเติม
αғsнιη

1
ขอบคุณ @KasiyA! พัดลมทำงานได้อย่างราบรื่นที่ 78000 รอบต่อนาที :)
นิโคลัส
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.