hardware monitoring

Just started using FreeBSD and love it. I am a old time Linux and Solaris user. I need to be able to monitor CPU temperature/MB temperature and fans if possible. I'm tried sysctl(8) and the various other utilities in ports. I get some data but it's crazy, like 255C.

Any wiki or ideas how to get this working?

thanxs Thanks in advance.
 
Thank you SirDice

I tried loading aibs(4)() and then doing a sysctl dev.aibs.0.{volt,temp,fan}.
It appears to be working as evidenced by the following;

Code:
dev.aibs.0.volt.0: 1328 800 1800
dev.aibs.0.volt.1: 3376 2970 3630
dev.aibs.0.volt.2: 4999 4500 5500
dev.aibs.0.volt.3: 12224 10200 13800
dev.aibs.0.temp.0: 34.0C 60.0C 75.0C
dev.aibs.0.temp.1: 32.0C 45.0C 75.0C
dev.aibs.0.fan.0: 1397 600 7200
dev.aibs.0.fan.1: 2986 600 7200
dev.aibs.0.fan.2: 979 600 7200

So what do you think, success?

Drforbin.
 
I'll support the topic because I stumbled.
I can't understand why the team doesn't want to raise the sensors of the 2016 ASUS motherboard.
# dmidecode -t 2
Bash:
Base Board Information
    Manufacturer: ASUSTeK COMPUTER INC.
    Product Name: AM1M-A
    Version: Rev X.0x
    Serial Number: 151260934300503
    Asset Tag: To be filled by O.E.M.
# sysctl dev.aibs.0.{volt,temp,fan}
Bash:
sysctl: unknown oid 'dev.aibs.0.{volt,temp,fan}'
# dmidecode -t 0
Bash:
BIOS Information
    Vendor: American Megatrends Inc.
    Version: 1501
    Release Date: 04/01/2016
    Address: 0xF0000
    Runtime Size: 64 kB
    ROM Size: 8 MB
    Characteristics:
        PCI is supported
        BIOS is upgradeable
        BIOS shadowing is allowed
        Boot from CD is supported
        Selectable boot is supported
        BIOS ROM is socketed
        EDD is supported
        5.25"/1.2 MB floppy services are supported (int 13h)
        3.5"/720 kB floppy services are supported (int 13h)
        3.5"/2.88 MB floppy services are supported (int 13h)
        Print screen service is supported (int 5h)
        8042 keyboard services are supported (int 9h)
        Serial services are supported (int 14h)
        Printer services are supported (int 17h)
        ACPI is supported
        USB legacy is supported
        BIOS boot specification is supported
        Targeted content distribution is supported
        UEFI is supported
    BIOS Revision: 4.6
# kldstat | grep aibs
Bash:
 2    1 0xffffffff82138000     4178 aibs.ko
 
Back
Top