Looking for suggestions on Conky display.

Add functionality to your desktop
Forum rules
Before you post read how to get help. Topics in this forum are automatically closed 6 months after creation.
User avatar
Koentje
Level 7
Level 7
Posts: 1581
Joined: Tue Jan 04, 2022 6:23 pm
Location: Netherlands

Re: Looking for suggestions on Conky display.

Post by Koentje »

You're welcome! ;)

Me personally i don't use sensors for this because it is more cpu heavy then getting the numbers from a file.
Your fanspeeds are stored in /sys/class/hwmon/hwmonX/fanX_input (were X are numbers).
With the cat command you can get the rpm out of that file and it almost takes no cpu to do! But because these folders sometimes switch it is best to run my script at every boot.
If you run this script (best at every boot via /etc/rc.local) then you have all the hwmon folders and names stored in /etc/hwmon.
Now you know which folder belongs to which HardWareMONitoring device (name).

Code: Select all

#!/bin/bash
###########################################################
#                                                         #
#  Checks which hwmon path belongs to which chipset name  #
#                                                         #
#  Run at boot via rc.local                               #
#                                                         #
###########################################################

hwmonfile="/etc/hwmon"
sudo rm -f "$hwmonfile"

arr=$(ls /sys/class/hwmon)

for hwmon in ${arr[@]}
do

     path="/sys/class/hwmon/$hwmon"
     name=$(cat $path/name)

     # if name = nvme then find out which nvme it is!
     if [ "$name" = "nvme" ]; then
       name=$(find $path/device/ -maxdepth 1 -printf "%f\n" | grep nvme)
       name=${name:0:5}
     fi

     if [ "$1" = "silent" ]; then
      echo "$name $path" | sudo tee -a "$hwmonfile" > /dev/null
     else
      printf "SYSFS HWMON: "
      echo "$name $path" | sudo tee -a "$hwmonfile"
     fi

done
If you have done this, or run it at least once, you get a file /etc/hwmon. Mine shows this:

Code: Select all

acpitz /sys/class/hwmon/hwmon0
nvme0 /sys/class/hwmon/hwmon1
amdgpu /sys/class/hwmon/hwmon2
coretemp /sys/class/hwmon/hwmon3
nct6687 /sys/class/hwmon/hwmon4
Now if i want my temp from the nct6687 chipset i run this command in conky:

Code: Select all

${exec echo $(cat $(cat /etc/hwmon | grep nct6687 | awk '{print $2}')/temp1_input)/1000 | bc}
Temperatures you have to devide by 1000, fanspeeds not.

Fan speed example

Code: Select all

${exec echo $(cat $(cat /etc/hwmon | grep nct6687 | awk '{print $2}')/fan1_input)}
Of course your chipset would be something i8k... you can check this in /etc/hwmon
User avatar
Koentje
Level 7
Level 7
Posts: 1581
Joined: Tue Jan 04, 2022 6:23 pm
Location: Netherlands

Re: Looking for suggestions on Conky display.

Post by Koentje »

The problem with sensors is that it gathers all temp, fanspeed, voltage info's from every device and you just grep 1 thing from it... so the rest what was gathered was useless. But that takes cpuload to do... and everytime you execute sensors it does that... every fanspeed, every temp you ask... if you have your conky set at 1 second that takes a lot of useless cpu load!

The way i just posted it only cats the info from /etc/hwmon and then the fanspeed or temp.. nothing more!
With as much conky's as i have i try to make them as light as possible! ;)
User avatar
Koentje
Level 7
Level 7
Posts: 1581
Joined: Tue Jan 04, 2022 6:23 pm
Location: Netherlands

Re: Looking for suggestions on Conky display.

Post by Koentje »

Btw, i see you're on Mint 21. This has a newer conky and with this version getting fanspeed or temps should be simpler!
hwmon (dev) type n (factor offset)
Hwmon sensor from sysfs (Linux 2.6). Parameter dev may be omitted if you have only one hwmon device. Param‐ eter type is either 'in' or 'vol' meaning voltage; 'fan' meaning fan; 'temp' meaning temperature. Parameter n is number of the sensor. See /sys/class/hwmon/ on your local computer. The optional arguments 'factor' and 'offset' allow precalculation of the raw input, which is being modified as follows: 'input = input * factor + offset'. Note that they have to be given as decimal values (i.e. contain at least one decimal place).
You can try ${hwmon nct6687 temp 1} or ${hwmon nct6687 fan 1}.

Or course you need to replace the chipset's name! I don't know if it's i8k? But you can find it out if you run my bash script.
User avatar
Koentje
Level 7
Level 7
Posts: 1581
Joined: Tue Jan 04, 2022 6:23 pm
Location: Netherlands

Re: Looking for suggestions on Conky display.

Post by Koentje »

And lastly conky has it's own i8k objects.. they are officially for the Inspiron, but you can try if they work on your system!
i8k_ac_status
If running the i8k kernel driver for Inspiron laptops, displays whether ac power is on, as listed in /proc/i8k (translated to human-readable). Beware that this is by default not enabled by i8k itself.

i8k_bios
If running the i8k kernel driver for Inspiron laptops, displays the bios version as listed in /proc/i8k.

i8k_buttons_status
If running the i8k kernel driver for Inspiron laptops, displays the volume buttons status as listed in /proc/i8k.

i8k_cpu_temp
If running the i8k kernel driver for Inspiron laptops, displays the cpu temperature in Celsius, as reported by /proc/i8k.

i8k_left_fan_rpm
If running the i8k kernel driver for Inspiron laptops, displays the left fan's rate of rotation, in revolu‐ tions per minute as listed in /proc/i8k. Beware, some laptops i8k reports these fans in reverse order.

i8k_left_fan_status
If running the i8k kernel driver for Inspiron laptops, displays the left fan status as listed in /proc/i8k (translated to human-readable). Beware, some laptops i8k reports these fans in reverse order.

i8k_right_fan_rpm
If running the i8k kernel driver for Inspiron laptops, displays the right fan's rate of rotation, in revolu‐ tions per minute as listed in /proc/i8k. Beware, some laptops i8k reports these fans in reverse order.

i8k_right_fan_status
If running the i8k kernel driver for Inspiron laptops, displays the right fan status as listed in /proc/i8k (translated to human-readable). Beware, some laptops i8k reports these fans in reverse order.

i8k_serial
If running the i8k kernel driver for Inspiron laptops, displays your laptop serial number as listed in /proc/i8k.

i8k_version
If running the i8k kernel driver for Inspiron laptops, displays the version formatting of /proc/i8k.
Have fun!
User avatar
Logansfury
Level 6
Level 6
Posts: 1237
Joined: Fri Oct 27, 2023 4:08 pm
Location: Las Vegas NV, USA

Re: Looking for suggestions on Conky display.

Post by Logansfury »

Your script is working fine on the Dell. I have rebooted and sensors continue to give fan data.

My second linux box is an HP-Z220-SFF-WORKSTATION.

This box by default cannot get fan speed from sensors either. Is there some kind of workaround like the i8k steps for Dell that would allow my HP to give fanspeed data?
Image <-- Cick for sudo inxi --usb -Fxxxnmprz output, updated hourly!
User avatar
Koentje
Level 7
Level 7
Posts: 1581
Joined: Tue Jan 04, 2022 6:23 pm
Location: Netherlands

Re: Looking for suggestions on Conky display.

Post by Koentje »

Did you read my post about using sensors multiple times in your conky?

If you post the output of inxi -Fxxxn from that system i can see if i can find some info about it.

And you can also try sensors-detect on that system and see if it finds any super I/O chipset.
User avatar
Logansfury
Level 6
Level 6
Posts: 1237
Joined: Fri Oct 27, 2023 4:08 pm
Location: Las Vegas NV, USA

Re: Looking for suggestions on Conky display.

Post by Logansfury »

Koentje wrote: Mon Jan 15, 2024 7:00 pm Did you read my post about using sensors multiple times in your conky?

If you post the output of inxi -Fxxxn from that system i can see if i can find some info about it.
I did see that. I will see about migrating from sensors to hwmon to save resources. At the moment I'm just elated to have successful edits and additional conky displays.

Here is the HP output, thanks for taking the time to look at it:

Code: Select all

logansfury@HP-Z220-SFF-Workstation:~$ inxi -Fxxxn
System:
  Host: HP-Z220-SFF-Workstation Kernel: 6.5.0-14-generic x86_64 bits: 64
    compiler: N/A Desktop: Cinnamon 6.0.4 tk: GTK 3.24.33 wm: muffin vt: 7
    dm: LightDM 1.30.0 Distro: Linux Mint 21.3 Virginia
    base: Ubuntu 22.04 jammy
Machine:
  Type: Desktop System: Hewlett-Packard product: HP Z220 SFF Workstation
    v: N/A serial: <superuser required> Chassis: type: 4
    serial: <superuser required>
  Mobo: Hewlett-Packard model: 1791 serial: <superuser required>
    UEFI: Hewlett-Packard v: K51 v01.83 date: 10/21/2016
CPU:
  Info: quad core model: Intel Core i5-3470 bits: 64 type: MCP
    smt: <unsupported> arch: Ivy Bridge rev: 9 cache: L1: 256 KiB L2: 1024 KiB
    L3: 6 MiB
  Speed (MHz): avg: 2710 high: 3512 min/max: 1600/3600 cores: 1: 3161
    2: 1614 3: 2553 4: 3512 bogomips: 25543
  Flags: avx ht lm nx pae sse sse2 sse3 sse4_1 sse4_2 ssse3 vmx
Graphics:
  Device-1: NVIDIA GK208B [GeForce GT 730] vendor: PNY driver: nvidia
    v: 470.223.02 pcie: speed: 5 GT/s lanes: 4 bus-ID: 01:00.0
    chip-ID: 10de:1287 class-ID: 0300
  Display: x11 server: X.Org v: 1.21.1.4 driver: X: loaded: nvidia
    unloaded: fbdev,modesetting,nouveau,vesa gpu: nvidia display-ID: :0
    screens: 1
  Screen-1: 0 s-res: 8704x2160 s-dpi: 96 s-size: 2303x572mm (90.7x22.5")
    s-diag: 2373mm (93.4")
  Monitor-1: DVI-D-0 pos: primary,center res: 3840x2160 dpi: 61
    size: 1600x900mm (63.0x35.4") diag: 1836mm (72.3")
  Monitor-2: HDMI-0 pos: primary,left res: 3840x2160 dpi: 61
    size: 1600x900mm (63.0x35.4") diag: 1836mm (72.3")
  Monitor-3: VGA-0 pos: right res: 1024x768 dpi: 37
    size: 700x290mm (27.6x11.4") diag: 758mm (29.8")
  OpenGL: renderer: NVIDIA GeForce GT 730/PCIe/SSE2
    v: 4.6.0 NVIDIA 470.223.02 direct render: Yes
Audio:
  Device-1: Intel 7 Series/C216 Family High Definition Audio
    vendor: Hewlett-Packard driver: snd_hda_intel v: kernel bus-ID: 00:1b.0
    chip-ID: 8086:1e20 class-ID: 0403
  Device-2: NVIDIA GK208 HDMI/DP Audio vendor: PNY driver: snd_hda_intel
    v: kernel pcie: speed: 5 GT/s lanes: 4 bus-ID: 01:00.1 chip-ID: 10de:0e0f
    class-ID: 0403
  Sound Server-1: ALSA v: k6.5.0-14-generic running: yes
  Sound Server-2: PulseAudio v: 15.99.1 running: yes
  Sound Server-3: PipeWire v: 0.3.48 running: yes
Network:
  Device-1: Intel 82579LM Gigabit Network vendor: Hewlett-Packard
    driver: e1000e v: kernel port: f040 bus-ID: 00:19.0 chip-ID: 8086:1502
    class-ID: 0200
  IF: eno1 state: down mac: 74:46:a0:b4:01:0c
  Device-2: Realtek 802.11ac NIC type: USB driver: rtl8821cu bus-ID: 3-1:7
    chip-ID: 0bda:c811 class-ID: 0000 serial: 123456
  IF: wlxa0d768221f52 state: up mac: a0:d7:68:22:1f:52
RAID:
  Hardware-1: Intel SATA Controller [RAID mode] driver: ahci v: 3.0
    port: f020 bus-ID: 00:1f.2 chip-ID: 8086:2822 rev: N/A class-ID: 0104
Drives:
  Local Storage: total: 232.89 GiB used: 80.68 GiB (34.6%)
  ID-1: /dev/sda vendor: Western Digital model: WD2500AAKX-22ERMA0
    size: 232.89 GiB speed: 6.0 Gb/s type: N/A serial: WD-WCC2F1361088
    rev: 1H17 scheme: GPT
Partition:
  ID-1: / size: 227.68 GiB used: 80.67 GiB (35.4%) fs: ext4 dev: /dev/sda3
  ID-2: /boot/efi size: 512 MiB used: 6.1 MiB (1.2%) fs: vfat
    dev: /dev/sda2
Swap:
  ID-1: swap-1 type: file size: 2 GiB used: 0 KiB (0.0%) priority: -2
    file: /swapfile
Sensors:
  System Temperatures: cpu: 29.8 C mobo: 27.8 C gpu: nvidia temp: 53 C
  Fan Speeds (RPM): N/A gpu: nvidia fan: 40%
Info:
  Processes: 305 Uptime: 2d 20h 52m wakeups: 0 Memory: 31.28 GiB
  used: 2.71 GiB (8.7%) Init: systemd v: 249 runlevel: 5 Compilers:
  gcc: 11.4.0 alt: 11/12 Packages: 2886 apt: 2860 flatpak: 26 Shell: Bash
  v: 5.1.16 running-in: gnome-terminal inxi: 3.3.13
logansfury@HP-Z220-SFF-Workstation:~$
Image <-- Cick for sudo inxi --usb -Fxxxnmprz output, updated hourly!
User avatar
Koentje
Level 7
Level 7
Posts: 1581
Joined: Tue Jan 04, 2022 6:23 pm
Location: Netherlands

Re: Looking for suggestions on Conky display.

Post by Koentje »

Have you run sudo sensors-detect on that system? Does it show something else then coretemp?
User avatar
Logansfury
Level 6
Level 6
Posts: 1237
Joined: Fri Oct 27, 2023 4:08 pm
Location: Las Vegas NV, USA

Re: Looking for suggestions on Conky display.

Post by Logansfury »

Koentje wrote: Mon Jan 15, 2024 7:17 pm Have you run sudo sensors-detect on that system? Does it show something else then coretemp?
It doesn't look like it:

Code: Select all

logansfury@HP-Z220-SFF-Workstation:~$ sudo sensors-detect
[sudo] password for logansfury:           
# sensors-detect version 3.6.0
# System: Hewlett-Packard HP Z220 SFF Workstation
# Board: Hewlett-Packard 1791
# Kernel: 6.5.0-14-generic x86_64
# Processor: Intel(R) Core(TM) i5-3470 CPU @ 3.20GHz (6/58/9)

This program will help you determine which kernel modules you need
to load to use lm_sensors most effectively. It is generally safe
and recommended to accept the default answers to all questions,
unless you know what you're doing.

Some south bridges, CPUs or memory controllers contain embedded sensors.
Do you want to scan for them? This is totally safe. (YES/no): y
Module cpuid loaded successfully.
Silicon Integrated Systems SIS5595...                       No
VIA VT82C686 Integrated Sensors...                          No
VIA VT8231 Integrated Sensors...                            No
AMD K8 thermal sensors...                                   No
AMD Family 10h thermal sensors...                           No
AMD Family 11h thermal sensors...                           No
AMD Family 12h and 14h thermal sensors...                   No
AMD Family 15h thermal sensors...                           No
AMD Family 16h thermal sensors...                           No
AMD Family 17h thermal sensors...                           No
AMD Family 15h power sensors...                             No
AMD Family 16h power sensors...                             No
Hygon Family 18h thermal sensors...                         No
Intel digital thermal sensor...                             Success!
    (driver `coretemp')
Intel AMB FB-DIMM thermal sensor...                         No
Intel 5500/5520/X58 thermal sensor...                       No
VIA C7 thermal sensor...                                    No
VIA Nano thermal sensor...                                  No

Some Super I/O chips contain embedded sensors. We have to write to
standard I/O ports to probe them. This is usually safe.
Do you want to scan for Super I/O sensors? (YES/no): y
Probing for Super-I/O at 0x2e/0x2f
Trying family `National Semiconductor/ITE'...               Yes
Found unknown chip with ID 0x1c11
Probing for Super-I/O at 0x4e/0x4f
Trying family `National Semiconductor/ITE'...               No
Trying family `SMSC'...                                     No
Trying family `VIA/Winbond/Nuvoton/Fintek'...               No
Trying family `ITE'...                                      No

Some systems (mainly servers) implement IPMI, a set of common interfaces
through which system health data may be retrieved, amongst other things.
We first try to get the information from SMBIOS. If we don't find it
there, we have to read from arbitrary I/O ports to probe for such
interfaces. This is normally safe. Do you want to scan for IPMI
interfaces? (YES/no): y
Probing for `IPMI BMC KCS' at 0xca0...                      No
Probing for `IPMI BMC SMIC' at 0xca8...                     No

Some hardware monitoring chips are accessible through the ISA I/O ports.
We have to write to arbitrary I/O ports to probe them. This is usually
safe though. Yes, you do have ISA I/O ports even if you do not have any
ISA slots! Do you want to scan the ISA I/O ports? (YES/no): y
Probing for `National Semiconductor LM78' at 0x290...       No
Probing for `National Semiconductor LM79' at 0x290...       No
Probing for `Winbond W83781D' at 0x290...                   No
Probing for `Winbond W83782D' at 0x290...                   No

Lastly, we can probe the I2C/SMBus adapters for connected hardware
monitoring devices. This is the most risky part, and while it works
reasonably well on most systems, it has been reported to cause trouble
on some systems.
Do you want to probe the I2C/SMBus adapters now? (YES/no): y
Using driver `i2c-i801' for device 0000:00:1f.3: Intel Panther Point (PCH)

Next adapter: SMBus I801 adapter at f000 (i2c-0)
Do you want to scan it? (YES/no/selectively):
Image <-- Cick for sudo inxi --usb -Fxxxnmprz output, updated hourly!
User avatar
Koentje
Level 7
Level 7
Posts: 1581
Joined: Tue Jan 04, 2022 6:23 pm
Location: Netherlands

Re: Looking for suggestions on Conky display.

Post by Koentje »

Try sudo modprobe k10temp and then run sensors.
If that fails try with the force=1 option..
User avatar
Logansfury
Level 6
Level 6
Posts: 1237
Joined: Fri Oct 27, 2023 4:08 pm
Location: Las Vegas NV, USA

Re: Looking for suggestions on Conky display.

Post by Logansfury »

Koentje wrote: Mon Jan 15, 2024 7:34 pm Try sudo modprobe k10temp and then run sensors.
If that fails try with the force=1 option..
Im afraid that didnt work like the previous tweak worked on the Dell:

Code: Select all

logansfury@HP-Z220-SFF-Workstation:~$ sudo modprobe k10temp
[sudo] password for logansfury:           
logansfury@HP-Z220-SFF-Workstation:~$ sensors
coretemp-isa-0000
Adapter: ISA adapter
Package id 0:  +40.0°C  (high = +85.0°C, crit = +105.0°C)
Core 0:        +40.0°C  (high = +85.0°C, crit = +105.0°C)
Core 1:        +38.0°C  (high = +85.0°C, crit = +105.0°C)
Core 2:        +38.0°C  (high = +85.0°C, crit = +105.0°C)
Core 3:        +36.0°C  (high = +85.0°C, crit = +105.0°C)

acpitz-acpi-0
Adapter: ACPI interface
temp1:        +27.8°C  (crit = +105.0°C)
temp2:        +29.8°C  (crit = +105.0°C)

logansfury@HP-Z220-SFF-Workstation:~$ sudo modprobe k10temp force=1
logansfury@HP-Z220-SFF-Workstation:~$ sensors
coretemp-isa-0000
Adapter: ISA adapter
Package id 0:  +38.0°C  (high = +85.0°C, crit = +105.0°C)
Core 0:        +38.0°C  (high = +85.0°C, crit = +105.0°C)
Core 1:        +37.0°C  (high = +85.0°C, crit = +105.0°C)
Core 2:        +34.0°C  (high = +85.0°C, crit = +105.0°C)
Core 3:        +35.0°C  (high = +85.0°C, crit = +105.0°C)

acpitz-acpi-0
Adapter: ACPI interface
temp1:        +27.8°C  (crit = +105.0°C)
temp2:        +29.8°C  (crit = +105.0°C)

logansfury@HP-Z220-SFF-Workstation:~$
Image <-- Cick for sudo inxi --usb -Fxxxnmprz output, updated hourly!
User avatar
Koentje
Level 7
Level 7
Posts: 1581
Joined: Tue Jan 04, 2022 6:23 pm
Location: Netherlands

Re: Looking for suggestions on Conky display.

Post by Koentje »

Try the following modules with modprobe:
smsc47b397
adt7473
fdc37B72x

And sensors in between..
User avatar
Logansfury
Level 6
Level 6
Posts: 1237
Joined: Fri Oct 27, 2023 4:08 pm
Location: Las Vegas NV, USA

Re: Looking for suggestions on Conky display.

Post by Logansfury »

Koentje wrote: Mon Jan 15, 2024 7:58 pm Try the following modules with modprobe:
smsc47b397
adt7473
fdc37B72x

And sensors in between..
each of these generated an error:

Code: Select all

logansfury@HP-Z220-SFF-Workstation:~$ sudo modprobe smsc47b397
[sudo] password for logansfury:           
modprobe: ERROR: could not insert 'smsc47b397': No such device
logansfury@HP-Z220-SFF-Workstation:~$ sudo modprobe adt7473
modprobe: FATAL: Module adt7473 not found in directory /lib/modules/6.5.0-14-generic
logansfury@HP-Z220-SFF-Workstation:~$ sudo modprobe fdc37B72x
modprobe: FATAL: Module fdc37B72x not found in directory /lib/modules/6.5.0-14-generic
logansfury@HP-Z220-SFF-Workstation:~$ sensors
coretemp-isa-0000
Adapter: ISA adapter
Package id 0:  +38.0°C  (high = +85.0°C, crit = +105.0°C)
Core 0:        +38.0°C  (high = +85.0°C, crit = +105.0°C)
Core 1:        +36.0°C  (high = +85.0°C, crit = +105.0°C)
Core 2:        +35.0°C  (high = +85.0°C, crit = +105.0°C)
Core 3:        +35.0°C  (high = +85.0°C, crit = +105.0°C)

acpitz-acpi-0
Adapter: ACPI interface
temp1:        +27.8°C  (crit = +105.0°C)
temp2:        +29.8°C  (crit = +105.0°C)

logansfury@HP-Z220-SFF-Workstation:~$
Image <-- Cick for sudo inxi --usb -Fxxxnmprz output, updated hourly!
User avatar
Koentje
Level 7
Level 7
Posts: 1581
Joined: Tue Jan 04, 2022 6:23 pm
Location: Netherlands

Re: Looking for suggestions on Conky display.

Post by Koentje »

smsc47b397 gave a different error.. could not insert. Have you tried the force method?

Try also
smsc47m192
smsc47m1

These are often used by HP.
User avatar
Koentje
Level 7
Level 7
Posts: 1581
Joined: Tue Jan 04, 2022 6:23 pm
Location: Netherlands

Re: Looking for suggestions on Conky display.

Post by Koentje »

Also the adt versions...


adt7310
adt7410
adt7411
adt7462
adt7470
adt7475
adt7x10
User avatar
Logansfury
Level 6
Level 6
Posts: 1237
Joined: Fri Oct 27, 2023 4:08 pm
Location: Las Vegas NV, USA

Re: Looking for suggestions on Conky display.

Post by Logansfury »

Koentje wrote: Mon Jan 15, 2024 8:19 pm smsc47b397 gave a different error.. could not insert. Have you tried the force method?

Try also
smsc47m192
smsc47m1

These are often used by HP.
The top one looked like it settled in. It causes no errors even when forced, but it didnt enable fan detection

Code: Select all

logansfury@HP-Z220-SFF-Workstation:~$ sudo modprobe smsc47m192
logansfury@HP-Z220-SFF-Workstation:~$ sensors
coretemp-isa-0000
Adapter: ISA adapter
Package id 0:  +39.0°C  (high = +85.0°C, crit = +105.0°C)
Core 0:        +39.0°C  (high = +85.0°C, crit = +105.0°C)
Core 1:        +36.0°C  (high = +85.0°C, crit = +105.0°C)
Core 2:        +35.0°C  (high = +85.0°C, crit = +105.0°C)
Core 3:        +36.0°C  (high = +85.0°C, crit = +105.0°C)

acpitz-acpi-0
Adapter: ACPI interface
temp1:        +27.8°C  (crit = +105.0°C)
temp2:        +29.8°C  (crit = +105.0°C)

logansfury@HP-Z220-SFF-Workstation:~$ sudo modprobe smsc47m1
modprobe: ERROR: could not insert 'smsc47m1': No such device
logansfury@HP-Z220-SFF-Workstation:~$ sudo modprobe smsc47m192 force=1
logansfury@HP-Z220-SFF-Workstation:~$ sensors
coretemp-isa-0000
Adapter: ISA adapter
Package id 0:  +43.0°C  (high = +85.0°C, crit = +105.0°C)
Core 0:        +43.0°C  (high = +85.0°C, crit = +105.0°C)
Core 1:        +38.0°C  (high = +85.0°C, crit = +105.0°C)
Core 2:        +36.0°C  (high = +85.0°C, crit = +105.0°C)
Core 3:        +36.0°C  (high = +85.0°C, crit = +105.0°C)

acpitz-acpi-0
Adapter: ACPI interface
temp1:        +27.8°C  (crit = +105.0°C)
temp2:        +29.8°C  (crit = +105.0°C)
Image <-- Cick for sudo inxi --usb -Fxxxnmprz output, updated hourly!
User avatar
Logansfury
Level 6
Level 6
Posts: 1237
Joined: Fri Oct 27, 2023 4:08 pm
Location: Las Vegas NV, USA

Re: Looking for suggestions on Conky display.

Post by Logansfury »

Koentje wrote: Mon Jan 15, 2024 8:21 pm Also the adt versions...


adt7310
adt7410
adt7411
adt7462
adt7470
adt7475
adt7x10
all 7 of these modprobed without causing any errors, but none of them enabled fanspeed from sensors afterwards.
Image <-- Cick for sudo inxi --usb -Fxxxnmprz output, updated hourly!
User avatar
Koentje
Level 7
Level 7
Posts: 1581
Joined: Tue Jan 04, 2022 6:23 pm
Location: Netherlands

Re: Looking for suggestions on Conky display.

Post by Koentje »

I'm afraid there isn't any module for that system..
User avatar
Logansfury
Level 6
Level 6
Posts: 1237
Joined: Fri Oct 27, 2023 4:08 pm
Location: Las Vegas NV, USA

Re: Looking for suggestions on Conky display.

Post by Logansfury »

Koentje wrote: Mon Jan 15, 2024 8:38 pm I'm afraid there isn't any module for that system..
That was an absolutely heroic effort on your part to try to get this working. Thank you so much for your time!

I'll just do without fan speed display on the HP. I will check out my hardware and see if I dont have another dell win machine around I can swap OS'es on with the HP.

Have an awesome night!
Image <-- Cick for sudo inxi --usb -Fxxxnmprz output, updated hourly!
User avatar
Koentje
Level 7
Level 7
Posts: 1581
Joined: Tue Jan 04, 2022 6:23 pm
Location: Netherlands

Re: Looking for suggestions on Conky display.

Post by Koentje »

Good luck! And if you have a question about conky or bash scripting, there is a own section for this on the forum!
Post Reply

Return to “Compiz, Conky, Docks & Widgets”