Управление соединителями вентиляторов на Формуле Maximus VIII ASUS?

Я сделал некоторый поиск вокруг, но единственной темой, которую мне удалось найти на этом, был другой парень на форумах Asus, задавая тот же самый вопрос, но никакие ответы = (.

В основном я могу контролировать скорость для вентиляторов, подключенных к материнской плате в Ubuntu/Монетном дворе? Мне настраивали каждый заголовок как PWM в BIOS и каждом вентиляторе, который я подключил к ним, PWM-способно, но когда я работаю pwmconfig это просто подходит, говоря, что это ничего не нашло.

Я пропускаю некоторые шаги, или разве это действительно не возможно?.

➜ sensors
coretemp-isa-0000
Adapter: ISA adapter
Package id 0:  +30.0°C  (high = +80.0°C, crit = +100.0°C)
Core 0:        +27.0°C  (high = +80.0°C, crit = +100.0°C)
Core 1:        +29.0°C  (high = +80.0°C, crit = +100.0°C)
Core 2:        +24.0°C  (high = +80.0°C, crit = +100.0°C)
Core 3:        +25.0°C  (high = +80.0°C, crit = +100.0°C)
asus-isa-0000
Adapter: ISA adapter
cpu_fan:        0 RPM
~
➜ sudo pwmconfig
# pwmconfig revision 6243 (2014-03-20)
This program will search your sensors for pulse width modulation (pwm)
controls, and test each one to see if it controls a fan on
your motherboard. Note that many motherboards do not have pwm
circuitry installed, even if your sensor chip supports pwm.
We will attempt to briefly stop each fan using the pwm controls.
The program will attempt to restore each fan to full speed
after testing. However, it is ** very important ** that you
physically verify that the fans have been to full speed
after the program has completed.
/usr/sbin/pwmconfig: There are no pwm-capable sensor modules installed

//Редактирование: Добавление большего количества информации.

~
➜ grep nct /proc/modules
pinctrl_sunrisepoint 28672 0 - Live 0x0000000000000000
pinctrl_intel 20480 1 pinctrl_sunrisepoint, Live 0x0000000000000000
0
задан 2 April 2018 в 10:57

1 ответ

Я сделал это с Z97, и похоже, что Z170 должен работать так же. Необходимо будет настроить /etc/sensors3.conf и /etc/modules использовать nct6775 драйверы. Я смог управлять основными вентиляторами со следующим:

/etc/modules

# Chip drivers
coretemp
nct6775

Добавьте это в конец/etc/sensors3.conf

chip "nct6791-*"
    # For the Asus Z97-A. Based on:
    # http://www.spinics.net/lists/lm-sensors/msg42249.html

    label in0 "CPU Vcc"
        # 'CPU Input Voltage' in UEFI
        compute in0  @ * 2, @ / 2

    label in1 "+5V"
        compute in1 @ * 5, @ / 5
        set in1_min 5 * 0.95
        set in1_max 5 * 1.05

        # From driver: label in2 "AVCC"
        set in3_min 3.3 * 0.95
        set in3_max 3.3 * 1.05

    # From driver: label in3 "+3.3V"
        set in3_min 3.3 * 0.95
        set in3_max 3.3 * 1.05

    label in4 "+12V"
        compute  in4  @ * 12, @ / 12
        set in4_min 12 * 0.95
        set in4_max 12 * 1.05

    # in5: unknown

    label in6 "core 3"
        compute in6 @ * 2, @ / 2

    # From driver: label in7 "3VSB"
    # From driver: label in8 "Vbat"
    # From driver: label in9 "Vcore"

    label in10 "GPU"

    label in11 "sys agent"
        # 'CPU System Agent Voltage Offset Mode Sign' in UEFI

    label in12 "core 2"
        compute in12 @ * 2, @ / 2

    label in13 "core 1"
        compute in13 @ * 2, @ / 2

    label in14 "core 0"
        compute in14 @ * 2, @ / 2

    label fan1 "Fan 1"
    label fan2 "CPU fan"
        # The correponding pwm also controls the 'CPU Opt' fan

    label fan3 "Fan 2"
    label fan4 "Fan 3"
    label fan5 "Fan 4"
    label fan6 "CPU fan 2"
        # 'CPU Opt' header

Можно также попытаться использовать sensors-detect, это генерирует/etc/modules файл.

Добавьте следующее к переменной GRUB_CMDLINE_LINUX_DEFAULT в/etc/default/grub файле: acpi_enforce_resources=lax затем восстанавливают-o личинки-mkconfig конфигурации личинки/boot/grub/grub.cfg

Снова, это было для Z97, возможно, требуется некоторую тонкую настройку для Z170.

0
ответ дан 30 October 2019 в 03:53

Другие вопросы по тегам:

Похожие вопросы: