Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature Request: show temperature #48

Closed
Firminator opened this issue Nov 4, 2021 · 100 comments
Closed

Feature Request: show temperature #48

Firminator opened this issue Nov 4, 2021 · 100 comments
Assignees
Labels
enhancement New feature or request

Comments

@Firminator
Copy link

Firminator commented Nov 4, 2021

For NVMe:

the NVMe HWMON support to allow reporting the current NVMe drive temperature sensor(s) and min/max thresholds via this kernel infrastructure. This in turn allows user-space to simply query the data over sysfs without the need for any utilities, no root requirement, and should gracefully work with the various programs that report HWMON sensor readings to Linux desktop users.

source https://www.phoronix.com/scan.php?page=news_item&px=Linux-5.5-NVMe-HWMON-Support

  • possible since 5.5 kernel (current ShredOS runs 5.6.3)
  • grep . /sys/class/nvme/nvme0/device/hwmon/hwmon[1-9]/{name,temp1_input}
    The number 1 to 9 probably depends on the mainboard/device and will list temperatures from other devices as well.
    Example on my box:
    cat /sys/class/nvme/nvme0/device/hwmon/hwmon3/temp1_input
    The value that it spits out (e.g. 31850] needs to be divided by 1000 for human readable format, i.e. 31.85 Celsius
  • or use nvme-cli: nvme smart-log /dev/nvme0 | grep -i '^temperature'

For SATA:

@Firminator
Copy link
Author

Firminator commented Nov 4, 2021

since we have already smartmontools present in ShredOS the following commands could be used as fallback in case drivetemp doesn't deliver...
NVMe: smartctl -A /dev/nvme0 | grep -i temperature | awk '{print $2,$3}'
SAS: smartctl -A /dev/sdX | grep -i 'current drive temperature' | awk '{print $4,$5}'
SATA: smartctl -x /dev/sdX | grep -i '^194' | awk '{print $8}'

@PartialVolume PartialVolume self-assigned this Nov 4, 2021
@PartialVolume PartialVolume added the enhancement New feature or request label Nov 4, 2021
@PartialVolume PartialVolume added this to the v2020.05.017_x86-64_0.33 milestone Nov 4, 2021
@PartialVolume
Copy link
Owner

Thanks for that info, saves me a lot of time and should be quick to implement. In fact after adding the code so SATA shows up on your controller as well as SAS, I think I'll add these next. I would think an update interval of 20 seconds should be sufficient? I wouldn't have thought the drive temperature changes too fast. Maybe even once a minute.

@Firminator
Copy link
Author

Firminator commented Nov 4, 2021

Minute should be fine until proven otherwise :)

I'd think that drivetemp would be the prefered first way as it's agnostic and doesn't rely on 3rd-party tools. Since it's using common ATA commands it should cover IDE, SATA, SAS and possibly even NVMe drives. As a fallback it will readout the temperature from SMART accd. to their documentation:

"If supported, it uses the ATA SCT Command Transport feature to read the current drive temperature and, if available, temperature limits as well as historic minimum and maximum temperatures. If SCT Command Transport is not supported, the driver uses SMART attributes to read the drive temperature."

The temperature is SMART attribute 194 btw. Some (a lot) (of older) drives don't have that attribute, or the FW has it implemented wrong or some other other odd reason out of our control, so even that can fail. If that fails then even smartctl/smartmontools or other 3rd party tools will ALSO not be able to tell you the temp.

@PartialVolume
Copy link
Owner

PartialVolume commented Nov 5, 2021

Drivetemp it is, I'll leave this link here as a reminder https://www.kernel.org/doc/html/latest/hwmon/drivetemp.html for next week

@Firminator
Copy link
Author

Firminator commented Nov 5, 2021

If there is GUI space I'd would like to see something like this (using the WD drive in your screenshot):
2. /dev/sdb SATA-2 (3.0 GBit/s) (2 TB) (33 C)

@Firminator
Copy link
Author

Firminator commented Nov 5, 2021

Just some work notes

  • hddtemp is 3rd-party and can be deprecated at some point. also needs sudo.
  • rather get temperature from user space with the help of drivetemp kernel module available in kernel 5.6 or later. uses kernel API hwmon so temp is returned with sensors tool.

Sample output for sensors

$ sensors
drivetemp-scsi-0-0
Adapter: SCSI adapter
temp1:        +31.0°C  (low  =  +0.0°C, high = +70.0°C)
                       (crit low =  -5.0°C, crit = +75.0°C)
                       (lowest = +28.0°C, highest = +38.0°C)

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

drivetemp-scsi-1-0
Adapter: SCSI adapter
temp1:        +31.0°C  (low  =  +0.0°C, high = +70.0°C)
                       (crit low =  -5.0°C, crit = +75.0°C)
                       (lowest = +28.0°C, highest = +37.0°C)

coretemp-isa-0000
Adapter: ISA adapter
Package id 0:  +42.0°C  (high = +85.0°C, crit = +105.0°C)
Core 0:        +41.0°C  (high = +85.0°C, crit = +105.0°C)
Core 1:        +41.0°C  (high = +85.0°C, crit = +105.0°C)
Core 2:        +42.0°C  (high = +85.0°C, crit = +105.0°C)
Core 3:        +41.0°C  (high = +85.0°C, crit = +105.0°C)

nvme-pci-0200
Adapter: PCI adapter
Composite:    +32.9°C 

drivetemp-scsi-0-0 and drivetemp-scsi-1-0 are actually SATA SSDs hooked up to onboard SATA ports.
Adapter: ISA adapter is a 4-core CPU
nvme-pci-0200 is a NVMe PCIe SSD drive

@Firminator
Copy link
Author

cross-reference martijnvanbrummelen/nwipe#290

@PartialVolume
Copy link
Owner

Temperature feature currently being written: Hopefully I will have a version ready for testing by the end of this week.

@Firminator
Copy link
Author

Nice. Looking forward to it. Thanks so much.

@PartialVolume
Copy link
Owner

Here's a few screenshots from the first working version. Below are three screenshots showing the temperature rise after 15 minutes. The ambient room temperature during this wipe is 17.5C with the side taken off the PC. Must admit I was surprised how the drive temperature increased by 10C after 15 minutes and it's not like this room is particularly warm. I believe the max and critical temperatures for this drive are 55C and 60C (I need to check the log). The nwipe -v option shows all available temperatures for the drive including:..

temp1_input		Current drive temperature
temp1_lcrit		Minimum temperature limit. Operating the device below
			this temperature may cause physical damage to the
			device.
temp1_min		Minimum recommended continuous operating limit
temp1_max		Maximum recommended continuous operating temperature
temp1_crit		Maximum temperature limit. Operating the device above
			this temperature may cause physical damage to the
			device.
temp1_lowest		Minimum temperature seen this power cycle
temp1_highest		Maximum temperature seen this power cycle

(from [https://github.com/groeck/drivetemp](https://github.com/groeck/drivetemp)

I've got a couple of additional changes to make:

  1. Change those ( 30C ) round brackets to square [ 30C ] to be consistent with the rest of the line.
  2. Add additional code that changes the color of the temperature to RED once MAX temperature is reached than flash the temperature when critical is reached. As mentioned above Operating the device above this temperature may cause physical damage to the device.
    temp1
    temp2
    temp3

@PartialVolume
Copy link
Owner

Now at 51C, just goes to show, if the ambient room temperature was closer to 30C, that disk may be operating at 60C. This Dell optiflex has no specific cooling for the disks and also the side of the PC is off so that will affect the airflow. Having the temperature reported by nwipe seems to be quite a useful feature to have.
temp4

@PartialVolume
Copy link
Owner

PartialVolume commented Nov 10, 2021

A couple of other things that I've noticed.

  1. hwmon drivetemp doesn't appear to work with SATA discs attached via a USB/SATA adapter, even if that adapter is known to have a chipset that supports ATA pass through. I've left a message with the developer of drivetemp in regards to this. If drivetemp can't implement USB/SATA support for adapters that use a chipset that supports ATA pass through then I'll need to investigate other methods to retrieve temperature information from USB devices that run along side or in addition to drivetemp. When a temperature can't be obtained [ --C ] is displayed.
  2. I've found my SanDisk 500 GB SSD does provide 'temp1_input' i.e. the current drive temperature but does not provide any of the other temperature details. So drives that behave like that, will need to be handled appropriately in the code in regards to max/min and lower/upper critical flagging in the GUI. Even so just the fact it gives the temperature should be ok for most uses.

One other thought: In regards to the meaning of the colours that are used to display temperature:

Color/status of temperature readout Meaning
White Within operating temperature
Red Maximum continuous operating temperature reached
Red Flashing Critical temperature reached, damage may occur
Black Minimum continuous operating temperature reached
Black flashing Minimum critical temperature reached, damage may occur

@Firminator
Copy link
Author

Thorough! Hats off. Nothing to add really. This is it.

Maybe one side note to put things into perspective: USB/SATA adapters seem to get really hot, too. Due to the sustained max data transfers during the wipe the IC/chips seem to be able to reach a critical (undocumented) temperature much quicker... and fail. Way earlier than the drive would fail ;) I've had this happen with a cheap adapter in the past. This is just anecdotal and I'm not saying it happens all the time or with all adapters. But something to consider.

@PartialVolume
Copy link
Owner

PartialVolume commented Nov 10, 2021

I have the same problem with USB adapters, even had one smoke and go pop ! I tend use an ATX PSU now to power the 3.5" drives I plug into the USB port, especially if I'm using an older drive that pulls a lot more startup current.

I've added a little demo routine (which wil get stripped out now it's working) just to test the gui logic in terms of displaying the temperature in it's different forms. The limits I've set are not real world but they will do just to test the code. The real limits will be obtained from the drive and if not available the temperature will remain the default white text on blue background.

nwipe_demo_temperature-2021-11-10_22.47.24.mp4

@PartialVolume
Copy link
Owner

committed martijnvanbrummelen/nwipe#360

@Firminator
Copy link
Author

Thanks for the video. Seems to work as intended. I looked at the committed code and was surprised how much work had to be put in. This should be a reminder anytime a feature addition is requested :)

@PartialVolume
Copy link
Owner

Thanks for the video. Seems to work as intended. I looked at the committed code and was surprised how much work had to be put in. This should be a reminder anytime a feature addition is requesteir of d :)

No problem, regarding the amount of work, yes indeed. For what on the face of it is a small addition it does take a fair amount of code and time. But then nwipe is, I suppose, a fairly complex program, what with it's multiple threads and it's ncurses interface. I just did a search on line to see how much a C programmer in the US gets paid, apparently $40 per hour (I'm assuming that's full time, rather than contract), but based on that hourly rate, adding the temperature feature would have resulted in a invoice of about $900 and that's before I even make the package changes to ShredOS and add the latest nwipe. Luckily I do it for the love of coding :-)

BTW I'll be uploading the latest ShredOS with the nwipe v0.32.003 (temperature edition) this evening.

@PartialVolume
Copy link
Owner

Now the major part of adding the temperature feature is done, making other additions, like having an nwipe option that either pauses a given thread or even shuts down the computer when the temperature reaches critical should be fairly straightforward (famous last words) :-)

nwipe --temperature_critical=ACTION

Command ACTION Info
nwipe --tempcritical= pause_wipe just the drives that are critical
nwipe --tempcritical= pause_all_wipes All drives critical or not
nwipe --tempcritical= shutdown computer

@PartialVolume
Copy link
Owner

@Firminator @Carl-Wilhelm shredos-2020.05.017_x86-64_0.32.003_20211111.img
New release for testing, in particular the temperature monitoring should work for all smart drives, but currently will not work with USB drives yet but I'm hoping the developer for the drivetemp module may be able to help with that. If not then I can do some sort of workaround using smartmontools.

@Firminator
Copy link
Author

OK thank you so much for the IMG. That'll help testing on different platforms.

I did a quick test earlier compiling NWIPE on my production box (without running an actual wipe) and the log said it detected the temperature on 2 out of 4 drives. So that's quite something already. One of the two failed drives was a SATA SSD with a botched/buggy FW, so drivetemp basically failed with it's native capabilities ("it uses the ATA SCT Command Transport feature to read the current drive temperature") and also it's fallback (reading out SMART attribute 194). Nothing anyone can do here.
The other drive is a PCIe NVMe drive. I tried GSmartControl and it also failed to read the temperature. I did then test nvme-cli and it was able to read the temperature. I'll test another NVMe SSD tomorrow on another computer.

@Firminator
Copy link
Author

One more addition... drivetemp detects the temperature of the NVMe drive:
grep . /sys/class/hwmon/*/name

/sys/class/hwmon/hwmon0/name:acpitz
/sys/class/hwmon/hwmon1/name:nvme (this is one of the two drives not detected in current NWIPE)
/sys/class/hwmon/hwmon2/name:asus
/sys/class/hwmon/hwmon3/name:coretemp
/sys/class/hwmon/hwmon4/name:drivetemp (these are the two drives that are detected in current NWIPE)
/sys/class/hwmon/hwmon5/name:drivetemp (these are the two drives that are detected in current NWIPE)

So sensors (hwmon drivetemp output using lm-sensors) shows me the NVMe temp:

nvme-pci-0200
Adapter: PCI adapter
Composite: +33.9°C

@PartialVolume
Copy link
Owner

PartialVolume commented Nov 12, 2021

/sys/class/hwmon/hwmon1/name:nvme (this is one of the two drives not detected in current NWIPE)

That's great, thanks for the detailed explanation. Regarding that nvme drive that doesn't show up in nwipe but does appear in hwmon, can you give me a list of all the files/directories under sys/class/hwmon/hwmon1 for that nvme drive. I'm assuming the data files are maybe named differently, so instead of temp1_input etc it's something else.

@PartialVolume
Copy link
Owner

As a reminder to myself, if we end up using smartmontools data extensively in the new user interface, then I should consider using the --json ouput mode of smartctl and combing that with the json parser library https://github.com/PartialVolume/jsmn to generate a structure in C containing the smartmontools output. Currently I'm simply parsing the text output using string manipulations which is ok for the serial number info as it's only one item (and relies upon smartmontools not drastically changing their current text format) but if I'm going to start pulling more data out of smartmontools a more formal approach would be preferable using the jsmn library.

@PartialVolume
Copy link
Owner

I did a quick test earlier compiling NWIPE on my production box (without running an actual wipe) and the log said it detected the temperature on 2 out of 4 drives.

I think I'll put the temperature in the drive selection menu as well (if it's not too involved)

@PartialVolume
Copy link
Owner

.iso now available for v2020.05.017_x86-64_0.32.003

@Firminator
Copy link
Author

Firminator commented Nov 12, 2021

That's great, thanks for the detailed explanation. Regarding that nvme drive that doesn't show up in nwipe but does appear in hwmon, can you give me a list of all the files/directories under sys/class/hwmon/hwmon1 for that nvme drive. I'm assuming the data files are maybe named differently, so instead of temp1_input etc it's something else.

I'll try to get the data from that other device. I dont have it available right now.
However on a good note, on a different computer with a NVMe drive current NWIPE detects the temperature :)

[2021/11/12 11:23:07] info: nwipe 0.32.003
[2021/11/12 11:23:07] notice: Found /dev/nvme0n1, NVME, SM951 NVMe SAMSUNG 512GB, 512 GB, S/N=
[2021/11/12 11:23:07] info: Automatically enumerated 1 devices.
[2021/11/12 11:23:07] notice: hwmon: Module drivetemp loaded, drive temperatures available

... so I think this is a local issue just on my production box. I'll check "all the files/directories under sys/class/hwmon/hwmon1" on that box later this evening.

I think I'll put the temperature in the drive selection menu as well (if it's not too involved)

That would be super-helpful. 👍

Thanks for the ISO also. Much appreciated.

@Firminator
Copy link
Author

Yes ls- al shows nvme0n1 as a directory:

total 0
drwxr-xr-x  4 root root    0 Nov 17 12:20 .
drwxr-xr-x  3 root root    0 Nov 17 12:20 ..
-r--r--r--  1 root root 4096 Nov 17 13:53 address
-r--r--r--  1 root root 4096 Nov 17 13:53 cntlid
-r--r--r--  1 root root 4096 Nov 17 13:53 dev
lrwxrwxrwx  1 root root    0 Nov 17 13:53 device -> ../../../0000:3d:00.0
-r--r--r--  1 root root 4096 Nov 17 13:53 firmware_rev
-r--r--r--  1 root root 4096 Nov 17 13:53 model
-r--r--r--  1 root root 4096 Nov 17 13:53 numa_node
drwxr-xr-x 13 root root    0 Nov 17 13:53 nvme0n1
drwxr-xr-x  2 root root    0 Nov 17 13:53 power
-r--r--r--  1 root root 4096 Nov 17 13:53 queue_count
--w-------  1 root root 4096 Nov 17 13:53 rescan_controller
--w-------  1 root root 4096 Nov 17 13:53 reset_controller
-r--r--r--  1 root root 4096 Nov 17 13:53 serial
-r--r--r--  1 root root 4096 Nov 17 13:53 sqsize
-r--r--r--  1 root root 4096 Nov 17 13:53 state
-r--r--r--  1 root root 4096 Nov 17 13:53 subsysnqn
lrwxrwxrwx  1 root root    0 Nov 17 13:53 subsystem -> ../../../../../../class/nvme
-r--r--r--  1 root root 4096 Nov 17 13:53 transport
-rw-r--r--  1 root root 4096 Nov 17 13:53 uevent

@Firminator
Copy link
Author

Firminator commented Nov 17, 2021

and then cd'ing into /sys/class/hwmon/hwmon3/device/nvme/nvme0/nvme0n1/ and ls'ing show the partitions you were mentioning:

total 0
drwxr-xr-x 13 root root    0 Nov 17 13:53 .
drwxr-xr-x  4 root root    0 Nov 17 12:20 ..
-r--r--r--  1 root root 4096 Nov 17 13:56 alignment_offset
lrwxrwxrwx  1 root root    0 Nov 17 13:56 bdi -> ../../../../../../virtual/bdi/259:0
-r--r--r--  1 root root 4096 Nov 17 13:56 capability
-r--r--r--  1 root root 4096 Nov 17 13:56 dev
lrwxrwxrwx  1 root root    0 Nov 17 13:56 device -> ../../nvme0
-r--r--r--  1 root root 4096 Nov 17 13:56 discard_alignment
-r--r--r--  1 root root 4096 Nov 17 13:56 eui
-r--r--r--  1 root root 4096 Nov 17 13:56 events
-r--r--r--  1 root root 4096 Nov 17 13:56 events_async
-rw-r--r--  1 root root 4096 Nov 17 13:56 events_poll_msecs
-r--r--r--  1 root root 4096 Nov 17 13:56 ext_range
-r--r--r--  1 root root 4096 Nov 17 13:56 hidden
drwxr-xr-x  2 root root    0 Nov 17 13:56 holders
-r--r--r--  1 root root 4096 Nov 17 13:56 inflight
drwxr-xr-x  2 root root    0 Nov 17 13:56 integrity
drwxr-xr-x  2 root root    0 Nov 17 13:56 lightnvm
drwxr-xr-x  6 root root    0 Nov 17 13:56 mq
-r--r--r--  1 root root 4096 Nov 17 13:56 nsid
drwxr-xr-x  5 root root    0 Nov 17 13:56 nvme0n1p1
drwxr-xr-x  5 root root    0 Nov 17 13:56 nvme0n1p2
drwxr-xr-x  5 root root    0 Nov 17 13:56 nvme0n1p3
drwxr-xr-x  2 root root    0 Nov 17 13:56 power
drwxr-xr-x  2 root root    0 Nov 17 13:56 queue
-r--r--r--  1 root root 4096 Nov 17 13:56 range
-r--r--r--  1 root root 4096 Nov 17 13:56 removable
-r--r--r--  1 root root 4096 Nov 17 13:56 ro
-r--r--r--  1 root root 4096 Nov 17 13:56 size
drwxr-xr-x  2 root root    0 Nov 17 13:56 slaves
-r--r--r--  1 root root 4096 Nov 17 13:56 stat
lrwxrwxrwx  1 root root    0 Nov 17 13:56 subsystem -> ../../../../../../../class/block
drwxr-xr-x  2 root root    0 Nov 17 13:56 trace
-rw-r--r--  1 root root 4096 Nov 17 13:56 uevent
-r--r--r--  1 root root 4096 Nov 17 13:56 wwid

@PartialVolume
Copy link
Owner

Yes ls- al shows nvme0n1 as a directory:

Perfect, that will give me the match I need to match the device detected by the 'ped_device_get_next' function (libparted) against the correct hwmon directory.

@Firminator
Copy link
Author

hallejujah. we are getting there.

@PartialVolume
Copy link
Owner

I am wondering though if the temperatures found in /sys/class/hwmon/hwmon3 are actually the nvme controllers temperatures? I guess we would only know if we had two nvme disks on a controller or/and multiple nvme controllers and multiple nvme disks. I'll set it up with what we know so far then when we comes across multiple nvme disks we'll have to take it from there. I've made the changes just commiting the code now.

@Firminator
Copy link
Author

Good point. Only time will tell. I have another device with an NVME disk available later today and can test it on there as well... even though it wouldn't give a definite answer to your thought.

@PartialVolume
Copy link
Owner

Uploaded latest martijnvanbrummelen/nwipe#380

@Firminator
Copy link
Author

Works:
Screenshot from 2021-11-17 14-40-08

Log has some odd errors though

[2021/11/17 14:39:52]    info: nwipe 0.32.012
[2021/11/17 14:39:52]    info: Linux version 5.11.0-40-generic (buildd@lgw01-am
                               d64-010) (gcc (Ubuntu 9.3.0-17ubuntu1~20.04) 9.
                               3.0, GNU ld (GNU Binutils for Ubuntu) 2.34) #44
                               ~20.04.2-Ubuntu SMP Tue Oct 26 18:07:44 UTC 202
                               1
[2021/11/17 14:39:52]   debug: Readlink: ../devices/pci0000:00/0000:00:1d.0/0000:3d:00.0/nvme/nvme0/nvme0n1 
[2021/11/17 14:39:52]   debug: smartctl: smartctl 7.1 2019-12-30 r5022 [x86_64-linux-5.11.0-40-generic] (local build) 
[2021/11/17 14:39:52]   debug: smartctl: Copyright (C) 2002-19, Bruce Allen, Christian Franke, www.smartmontools.org 
[2021/11/17 14:39:52]   debug: smartctl: === START OF INFORMATION SECTION === 
[2021/11/17 14:39:52]   debug: smartctl: Model Number:                       SM951 NVMe SAMSUNG 512GB 
[2021/11/17 14:39:52]   debug: smartctl: Serial Number:                      XXXXXXXXXXXXXX 
[2021/11/17 14:39:52]   debug: smartctl: Firmware Version:                   BXW75D0Q 
[2021/11/17 14:39:52]   debug: smartctl: PCI Vendor/Subsystem ID:            0x144d 
[2021/11/17 14:39:52]   debug: smartctl: IEEE OUI Identifier:                0x002538 
[2021/11/17 14:39:52]   debug: smartctl: Controller ID:                      1 
[2021/11/17 14:39:52]   debug: smartctl: Number of Namespaces:               1 
[2021/11/17 14:39:52]   debug: smartctl: Namespace 1 Size/Capacity:          512,110,190,592 [512 GB] 
[2021/11/17 14:39:52]   debug: smartctl: Namespace 1 Utilization:            409,939,124,224 [409 GB] 
[2021/11/17 14:39:52]   debug: smartctl: Namespace 1 Formatted LBA Size:     512 
[2021/11/17 14:39:52]   debug: smartctl: Namespace 1 IEEE EUI-64:            002538 656100b8f9 
[2021/11/17 14:39:52]   debug: smartctl: Local Time is:                      Wed Nov 17 14:39:52 2021 EST 
[2021/11/17 14:39:52]  notice: Found /dev/nvme0n1, NVME, SM951 NVMe SAMSUNG 512GB, 512 GB, S/N=XXXXXXXXXXXXXXX
[2021/11/17 14:39:52]    info: Automatically enumerated 1 devices.
[2021/11/17 14:39:52]  notice: bios-version = 1.23.3
[2021/11/17 14:39:52]  notice: bios-release-date = 09/03/2021
[2021/11/17 14:39:52]  notice: system-manufacturer = Dell Inc.
[2021/11/17 14:39:52]  notice: system-product-name = Precision 7510
[2021/11/17 14:39:52]  notice: system-version = Not Specified
[2021/11/17 14:39:52]  notice: system-serial-number = XXXXXXXXXXXXXXX
[2021/11/17 14:39:52]  notice: system-uuid = XXXXXXXXXXXXXXX
[2021/11/17 14:39:52]  notice: baseboard-manufacturer = Dell Inc.
[2021/11/17 14:39:52]  notice: baseboard-product-name = 0M91XC
[2021/11/17 14:39:52]  notice: baseboard-version = A00
[2021/11/17 14:39:52]  notice: baseboard-serial-number = XXXXXXXXXXXXXXX
[2021/11/17 14:39:52]  notice: baseboard-asset-tag = XXXXXXXXXXXXXXX
[2021/11/17 14:39:52]  notice: chassis-manufacturer = Dell Inc.
[2021/11/17 14:39:52]  notice: chassis-type = Laptop
[2021/11/17 14:39:52]  notice: chassis-version = Not Specified
[2021/11/17 14:39:52]  notice: chassis-serial-number = XXXXXXXXXXXXXXX
[2021/11/17 14:39:52]  notice: chassis-asset-tag = XXXXXXXXXXXXXXX
[2021/11/17 14:39:52]  notice: processor-family = Core i7
[2021/11/17 14:39:52]  notice: processor-manufacturer = Intel(R) Corporation
[2021/11/17 14:39:52]  notice: processor-version = Intel(R) Core(TM) i7-6820HQ CPU @ 2.70GHz
[2021/11/17 14:39:52]  notice: processor-frequency = 2700 MHz
[2021/11/17 14:39:52]  notice: Opened entropy source '/dev/urandom'.
[2021/11/17 14:39:52]  notice: hwmon: Module drivetemp loaded, drive temperatures available
[2021/11/17 14:39:52]   error: hwmon: Can't open /sys/class/hwmon/hwmonX/block or ../hwmonX/device/nvme/nvme0
[2021/11/17 14:39:52]   error: hwmon: Can't open /sys/class/hwmon/hwmonX/block or ../hwmonX/device/nvme/nvme0
[2021/11/17 14:39:52]   error: hwmon: Can't open /sys/class/hwmon/hwmonX/block or ../hwmonX/device/nvme/nvme0
[2021/11/17 14:39:52]   error: hwmon: Can't open /sys/class/hwmon/hwmonX/block or ../hwmonX/device/nvme/nvme0
[2021/11/17 14:39:52]   error: hwmon: Can't open /sys/class/hwmon/hwmonX/block or ../hwmonX/device/nvme/nvme0
[2021/11/17 14:39:52]   error: hwmon: Can't open /sys/class/hwmon/hwmonX/block or ../hwmonX/device/nvme/nvme0
[2021/11/17 14:39:52]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/nvme/nvme0
[2021/11/17 14:39:52]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/nvme/nvme0/.
[2021/11/17 14:39:52]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/nvme/nvme0/..
[2021/11/17 14:39:52]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/nvme/nvme0/uevent
[2021/11/17 14:39:52]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/nvme/nvme0/nvme0n1
[2021/11/17 14:39:52]  notice: hwmon: Device nvme0n1 has 'hwmon' temperature monitoring
[2021/11/17 14:39:52]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/nvme/nvme0/cntlid
[2021/11/17 14:39:52]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/nvme/nvme0/address
[2021/11/17 14:39:52]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/nvme/nvme0/reset_controller
[2021/11/17 14:39:52]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/nvme/nvme0/sqsize
[2021/11/17 14:39:52]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/nvme/nvme0/queue_count
[2021/11/17 14:39:52]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/nvme/nvme0/transport
[2021/11/17 14:39:52]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/nvme/nvme0/subsysnqn
[2021/11/17 14:39:52]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/nvme/nvme0/power
[2021/11/17 14:39:52]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/nvme/nvme0/rescan_controller
[2021/11/17 14:39:52]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/nvme/nvme0/numa_node
[2021/11/17 14:39:52]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/nvme/nvme0/model
[2021/11/17 14:39:52]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/nvme/nvme0/dev
[2021/11/17 14:39:52]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/nvme/nvme0/device
[2021/11/17 14:39:52]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/nvme/nvme0/firmware_rev
[2021/11/17 14:39:52]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/nvme/nvme0/subsystem
[2021/11/17 14:39:52]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/nvme/nvme0/state
[2021/11/17 14:39:52]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/nvme/nvme0/serial
[2021/11/17 14:39:52]   error: hwmon: Can't open /sys/class/hwmon/hwmonX/block or ../hwmonX/device/nvme/nvme0
[2021/11/17 14:39:52]  notice: hwmon: Device /dev/nvme0n1 hwmon path = /sys/class/hwmon/hwmon3
[2021/11/17 14:39:52]  notice: hwmon: Unable to  open /sys/class/hwmon/hwmon3/temp1_crit
[2021/11/17 14:39:52]  notice: hwmon: Unable to  open /sys/class/hwmon/hwmon3/temp1_highest
[2021/11/17 14:39:52]  notice: hwmon: /sys/class/hwmon/hwmon3/temp1_input 30C
[2021/11/17 14:39:52]  notice: hwmon: Unable to  open /sys/class/hwmon/hwmon3/temp1_lcrit
[2021/11/17 14:39:52]  notice: hwmon: Unable to  open /sys/class/hwmon/hwmon3/temp1_lowest
[2021/11/17 14:39:52]  notice: hwmon: Unable to  open /sys/class/hwmon/hwmon3/temp1_max
[2021/11/17 14:39:52]  notice: hwmon: Unable to  open /sys/class/hwmon/hwmon3/temp1_min
[2021/11/17 14:41:14]    info: Exit in progress
[2021/11/17 14:41:14]    info: Cancelling the GUI thread.
[2021/11/17 14:41:14]    info: GUI compute_stats thread has been cancelled
[2021/11/17 14:41:14]    info: Nwipe was aborted by the user prior to the wipe starting.

@PartialVolume
Copy link
Owner

@Firminator Did you want me to update shredos with nwipe v0.32.012 ? It will take a couple of hours to build, I'll set it going before hitting the sack, so will be available about 10:00hrs UTC+0 tomorrow UK

@Firminator
Copy link
Author

I think we should be good to go regarding the temperature readout for now. Take your time though with the compile. There is no pressure. It can wait.
So what's the deal with these error messages? It says "Module drivetemp loaded, drive temperatures available", but then

[2021/11/17 14:39:52]   error: hwmon: Can't open /sys/class/hwmon/hwmonX/block or ../hwmonX/device/nvme/nvme0
[2021/11/17 14:39:52]   error: hwmon: Can't open /sys/class/hwmon/hwmonX/block or ../hwmonX/device/nvme/nvme0
[2021/11/17 14:39:52]   error: hwmon: Can't open /sys/class/hwmon/hwmonX/block or ../hwmonX/device/nvme/nvme0
[2021/11/17 14:39:52]   error: hwmon: Can't open /sys/class/hwmon/hwmonX/block or ../hwmonX/device/nvme/nvme0
[2021/11/17 14:39:52]   error: hwmon: Can't open /sys/class/hwmon/hwmonX/block or ../hwmonX/device/nvme/nvme0
[2021/11/17 14:39:52]   error: hwmon: Can't open /sys/class/hwmon/hwmonX/block or ../hwmonX/device/nvme/nvme0

@PartialVolume
Copy link
Owner

That error message needs rewording. It should say "error: hwmon: Can't open /sys/class/hwmon/hwmonX/block" as it first tries to open block devices. I need to correct that. It's also (or should be) a verbose message so normally won't appear in the logs

@Firminator
Copy link
Author

I see. For clarification: this output was done with -v so I guess there is nothing to fix there except for your mentioned wording.

@Firminator
Copy link
Author

I have another device with an NVME disk available later today and can test it on there as well...

The drive is not M.2 formfactor, but it's a PCIe slot add-in card. Temperature is not detected on that PC:
Screenshot from 2021-11-17 22-53-30

Here's the log:

[2021/11/17 22:59:14]    info: nwipe 0.32.012
[2021/11/17 22:59:14]    info: Linux version 5.13.0-21-generic (buildd@lgw01-am
                               d64-043) (gcc (Ubuntu 9.3.0-17ubuntu1~20.04) 9.
                               3.0, GNU ld (GNU Binutils for Ubuntu) 2.34) #21
                               ~20.04.1-Ubuntu SMP Tue Oct 26 15:49:20 UTC 202
                               1
[2021/11/17 22:59:14]   debug: Readlink: ../devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda 
[2021/11/17 22:59:14]   debug: smartctl: smartctl 7.1 2019-12-30 r5022 [x86_64-linux-5.13.0-21-generic] (local build) 
[2021/11/17 22:59:14]   debug: smartctl: Copyright (C) 2002-19, Bruce Allen, Christian Franke, www.smartmontools.org 
[2021/11/17 22:59:14]   debug: smartctl: === START OF INFORMATION SECTION === 
[2021/11/17 22:59:14]   debug: smartctl: Model Family:     Crucial/Micron BX/MX1/2/3/500, M5/600, 1100 SSDs 
[2021/11/17 22:59:14]   debug: smartctl: Device Model:     Crucial_CT512MX100SSD1 
[2021/11/17 22:59:14]   debug: smartctl: Serial Number:    XXXXXXXXXXXX 
[2021/11/17 22:59:14]   debug: smartctl: LU WWN Device Id: X XXXXXX XXXXXXXXX 
[2021/11/17 22:59:14]   debug: smartctl: Firmware Version: MU03 
[2021/11/17 22:59:14]   debug: smartctl: User Capacity:    512,110,190,592 bytes [512 GB] 
[2021/11/17 22:59:14]   debug: smartctl: Sector Sizes:     512 bytes logical, 4096 bytes physical 
[2021/11/17 22:59:14]   debug: smartctl: Rotation Rate:    Solid State Device 
[2021/11/17 22:59:14]   debug: smartctl: Form Factor:      2.5 inches 
[2021/11/17 22:59:14]   debug: smartctl: Device is:        In smartctl database [for details use: -P show] 
[2021/11/17 22:59:14]   debug: smartctl: ATA Version is:   ACS-2, ATA8-ACS T13/1699-D revision 6 
[2021/11/17 22:59:14]   debug: smartctl: SATA Version is:  SATA 3.1, 6.0 Gb/s (current: 6.0 Gb/s) 
[2021/11/17 22:59:14]   debug: smartctl: Local Time is:    Wed Nov 17 22:59:14 2021 EST 
[2021/11/17 22:59:14]   debug: smartctl: SMART support is: Available - device has SMART capability. 
[2021/11/17 22:59:14]   debug: smartctl: SMART support is: Enabled 
[2021/11/17 22:59:14]  notice: Found /dev/sda,  ATA, Crucial_CT512MX1, 512 GB, S/N=XXXXXXXXXXXXXXX
[2021/11/17 22:59:14]   debug: Readlink: ../devices/pci0000:00/0000:00:1f.2/ata2/host1/target1:0:0/1:0:0:0/block/sdb 
[2021/11/17 22:59:14]   debug: smartctl: smartctl 7.1 2019-12-30 r5022 [x86_64-linux-5.13.0-21-generic] (local build) 
[2021/11/17 22:59:14]   debug: smartctl: Copyright (C) 2002-19, Bruce Allen, Christian Franke, www.smartmontools.org 
[2021/11/17 22:59:14]   debug: smartctl: === START OF INFORMATION SECTION === 
[2021/11/17 22:59:14]   debug: smartctl: Model Family:     Crucial/Micron BX/MX1/2/3/500, M5/600, 1100 SSDs 
[2021/11/17 22:59:14]   debug: smartctl: Device Model:     Crucial_CT128MX100SSD1 
[2021/11/17 22:59:14]   debug: smartctl: Serial Number:    XXXXXXXXXXXX 
[2021/11/17 22:59:14]   debug: smartctl: LU WWN Device Id: X XXXXXX XXXXXXXXX 
[2021/11/17 22:59:14]   debug: smartctl: Firmware Version: MU03 
[2021/11/17 22:59:14]   debug: smartctl: User Capacity:    128,035,676,160 bytes [128 GB] 
[2021/11/17 22:59:14]   debug: smartctl: Sector Sizes:     512 bytes logical, 4096 bytes physical 
[2021/11/17 22:59:14]   debug: smartctl: Rotation Rate:    Solid State Device 
[2021/11/17 22:59:14]   debug: smartctl: Form Factor:      2.5 inches 
[2021/11/17 22:59:14]   debug: smartctl: Device is:        In smartctl database [for details use: -P show] 
[2021/11/17 22:59:14]   debug: smartctl: ATA Version is:   ACS-2, ATA8-ACS T13/1699-D revision 6 
[2021/11/17 22:59:14]   debug: smartctl: SATA Version is:  SATA 3.1, 6.0 Gb/s (current: 6.0 Gb/s) 
[2021/11/17 22:59:14]   debug: smartctl: Local Time is:    Wed Nov 17 22:59:14 2021 EST 
[2021/11/17 22:59:14]   debug: smartctl: SMART support is: Available - device has SMART capability. 
[2021/11/17 22:59:14]   debug: smartctl: SMART support is: Enabled 
[2021/11/17 22:59:14]  notice: Found /dev/sdb,  ATA, Crucial_CT128MX1, 128 GB, S/N=XXXXXXXXXXXXXXX
[2021/11/17 22:59:14]   debug: Readlink: ../devices/pci0000:00/0000:00:1f.2/ata3/host2/target2:0:0/2:0:0:0/block/sdc 
[2021/11/17 22:59:14]   debug: smartctl: smartctl 7.1 2019-12-30 r5022 [x86_64-linux-5.13.0-21-generic] (local build) 
[2021/11/17 22:59:14]   debug: smartctl: Copyright (C) 2002-19, Bruce Allen, Christian Franke, www.smartmontools.org 
[2021/11/17 22:59:14]   debug: smartctl: === START OF INFORMATION SECTION === 
[2021/11/17 22:59:14]   debug: smartctl: Model Family:     Intel 330/335 Series SSDs 
[2021/11/17 22:59:14]   debug: smartctl: Device Model:     INTEL SSDSC2CT120A3 
[2021/11/17 22:59:14]   debug: smartctl: Serial Number:    XXXXXXXXXXXXXXXXXX 
[2021/11/17 22:59:14]   debug: smartctl: LU WWN Device Id: X XXXXXX XXXXXXXXX 
[2021/11/17 22:59:14]   debug: smartctl: Firmware Version: 300i 
[2021/11/17 22:59:14]   debug: smartctl: User Capacity:    120,034,123,776 bytes [120 GB] 
[2021/11/17 22:59:14]   debug: smartctl: Sector Size:      512 bytes logical/physical 
[2021/11/17 22:59:14]   debug: smartctl: Rotation Rate:    Solid State Device 
[2021/11/17 22:59:14]   debug: smartctl: Device is:        In smartctl database [for details use: -P show] 
[2021/11/17 22:59:14]   debug: smartctl: ATA Version is:   ACS-2 T13/2015-D revision 3 
[2021/11/17 22:59:14]   debug: smartctl: SATA Version is:  SATA 3.0, 3.0 Gb/s (current: 3.0 Gb/s) 
[2021/11/17 22:59:14]   debug: smartctl: Local Time is:    Wed Nov 17 22:59:14 2021 EST 
[2021/11/17 22:59:14]   debug: smartctl: SMART support is: Available - device has SMART capability. 
[2021/11/17 22:59:14]   debug: smartctl: SMART support is: Enabled 
[2021/11/17 22:59:14]  notice: Found /dev/sdc,  ATA, INTEL SSDSC2CT12, 120 GB, S/N=XXXXXXXXXXXXXXX
[2021/11/17 22:59:14]   debug: Readlink: ../devices/pci0000:00/0000:00:1f.2/ata5/host4/target4:0:0/4:0:0:0/block/sdd 
[2021/11/17 22:59:14]   debug: smartctl: smartctl 7.1 2019-12-30 r5022 [x86_64-linux-5.13.0-21-generic] (local build) 
[2021/11/17 22:59:14]   debug: smartctl: Copyright (C) 2002-19, Bruce Allen, Christian Franke, www.smartmontools.org 
[2021/11/17 22:59:14]   debug: smartctl: === START OF INFORMATION SECTION === 
[2021/11/17 22:59:14]   debug: smartctl: Model Family:     Intel 330/335 Series SSDs 
[2021/11/17 22:59:14]   debug: smartctl: Device Model:     INTEL SSDSC2CT120A3 
[2021/11/17 22:59:14]   debug: smartctl: Serial Number:    XXXXXXXXXXXXXXXXXX 
[2021/11/17 22:59:14]   debug: smartctl: LU WWN Device Id: X XXXXXX XXXXXXXXX 
[2021/11/17 22:59:14]   debug: smartctl: Firmware Version: 300i 
[2021/11/17 22:59:14]   debug: smartctl: User Capacity:    120,034,123,776 bytes [120 GB] 
[2021/11/17 22:59:14]   debug: smartctl: Sector Size:      512 bytes logical/physical 
[2021/11/17 22:59:14]   debug: smartctl: Rotation Rate:    Solid State Device 
[2021/11/17 22:59:14]   debug: smartctl: Device is:        In smartctl database [for details use: -P show] 
[2021/11/17 22:59:14]   debug: smartctl: ATA Version is:   ACS-2 T13/2015-D revision 3 
[2021/11/17 22:59:14]   debug: smartctl: SATA Version is:  SATA 3.0, 3.0 Gb/s (current: 3.0 Gb/s) 
[2021/11/17 22:59:14]   debug: smartctl: Local Time is:    Wed Nov 17 22:59:14 2021 EST 
[2021/11/17 22:59:14]   debug: smartctl: SMART support is: Available - device has SMART capability. 
[2021/11/17 22:59:14]   debug: smartctl: SMART support is: Enabled 
[2021/11/17 22:59:14]  notice: Found /dev/sdd,  ATA, INTEL SSDSC2CT12, 120 GB, S/N=XXXXXXXXXXXXXXX
[2021/11/17 22:59:14]   debug: Readlink: ../devices/pci0000:00/0000:00:1c.7/0000:06:00.0/ata9/host8/target8:0:0/8:0:0:0/block/sde 
[2021/11/17 22:59:14]   debug: smartctl: smartctl 7.1 2019-12-30 r5022 [x86_64-linux-5.13.0-21-generic] (local build) 
[2021/11/17 22:59:14]   debug: smartctl: Copyright (C) 2002-19, Bruce Allen, Christian Franke, www.smartmontools.org 
[2021/11/17 22:59:14]   debug: smartctl: === START OF INFORMATION SECTION === 
[2021/11/17 22:59:14]   debug: smartctl: Model Family:     Western Digital Re 
[2021/11/17 22:59:14]   debug: smartctl: Device Model:     WDC WD3000FYYZ-01UL1B1 
[2021/11/17 22:59:14]   debug: smartctl: Serial Number:    XXXXXXXXXXXXXXX 
[2021/11/17 22:59:14]   debug: smartctl: LU WWN Device Id: X XXXXXX XXXXXXXXX 
[2021/11/17 22:59:14]   debug: smartctl: Firmware Version: 01.01K02 
[2021/11/17 22:59:14]   debug: smartctl: User Capacity:    3,000,592,982,016 bytes [3.00 TB] 
[2021/11/17 22:59:14]   debug: smartctl: Sector Size:      512 bytes logical/physical 
[2021/11/17 22:59:14]   debug: smartctl: Rotation Rate:    7200 rpm 
[2021/11/17 22:59:14]   debug: smartctl: Device is:        In smartctl database [for details use: -P show] 
[2021/11/17 22:59:14]   debug: smartctl: ATA Version is:   ATA8-ACS (minor revision not indicated) 
[2021/11/17 22:59:14]   debug: smartctl: SATA Version is:  SATA 3.0, 6.0 Gb/s (current: 6.0 Gb/s) 
[2021/11/17 22:59:14]   debug: smartctl: Local Time is:    Wed Nov 17 22:59:14 2021 EST 
[2021/11/17 22:59:14]   debug: smartctl: SMART support is: Available - device has SMART capability. 
[2021/11/17 22:59:14]   debug: smartctl: SMART support is: Enabled 
[2021/11/17 22:59:14]  notice: Found /dev/sde,  ATA, WDC WD3000FYYZ-0,   3 TB, S/N=XXXXXXXXXXXXXXX
[2021/11/17 22:59:14]   debug: Readlink: ../devices/pci0000:00/0000:00:1c.7/0000:06:00.0/ata10/host9/target9:0:0/9:0:0:0/block/sdf 
[2021/11/17 22:59:14]   debug: smartctl: smartctl 7.1 2019-12-30 r5022 [x86_64-linux-5.13.0-21-generic] (local build) 
[2021/11/17 22:59:14]   debug: smartctl: Copyright (C) 2002-19, Bruce Allen, Christian Franke, www.smartmontools.org 
[2021/11/17 22:59:14]   debug: smartctl: === START OF INFORMATION SECTION === 
[2021/11/17 22:59:14]   debug: smartctl: Model Family:     Western Digital VelociRaptor 
[2021/11/17 22:59:14]   debug: smartctl: Device Model:     WDC WD6000HLHX-01JJPV0 
[2021/11/17 22:59:14]   debug: smartctl: Serial Number:    XXXXXXXXXXXXXXX 
[2021/11/17 22:59:14]   debug: smartctl: LU WWN Device Id: X XXXXXX XXXXXXXXX 
[2021/11/17 22:59:14]   debug: smartctl: Firmware Version: 04.05G04 
[2021/11/17 22:59:14]   debug: smartctl: User Capacity:    600,127,266,816 bytes [600 GB] 
[2021/11/17 22:59:14]   debug: smartctl: Sector Size:      512 bytes logical/physical 
[2021/11/17 22:59:14]   debug: smartctl: Rotation Rate:    10000 rpm 
[2021/11/17 22:59:14]   debug: smartctl: Device is:        In smartctl database [for details use: -P show] 
[2021/11/17 22:59:14]   debug: smartctl: ATA Version is:   ATA8-ACS (minor revision not indicated) 
[2021/11/17 22:59:14]   debug: smartctl: SATA Version is:  SATA 2.6, 6.0 Gb/s 
[2021/11/17 22:59:14]   debug: smartctl: Local Time is:    Wed Nov 17 22:59:14 2021 EST 
[2021/11/17 22:59:14]   debug: smartctl: SMART support is: Available - device has SMART capability. 
[2021/11/17 22:59:14]   debug: smartctl: SMART support is: Enabled 
[2021/11/17 22:59:14]  notice: Found /dev/sdf,  ATA, WDC WD6000HLHX-0, 600 GB, S/N=XXXXXXXXXXXXXXX
[2021/11/17 22:59:14]   debug: Readlink: ../devices/pci0000:00/0000:00:1c.0/0000:02:00.0/nvme/nvme0/nvme0n1 
[2021/11/17 22:59:14]   debug: smartctl: smartctl 7.1 2019-12-30 r5022 [x86_64-linux-5.13.0-21-generic] (local build) 
[2021/11/17 22:59:14]   debug: smartctl: Copyright (C) 2002-19, Bruce Allen, Christian Franke, www.smartmontools.org 
[2021/11/17 22:59:14]   debug: smartctl: === START OF INFORMATION SECTION === 
[2021/11/17 22:59:14]   debug: smartctl: Model Number:                       INTEL SSDPEDMW400G4 
[2021/11/17 22:59:14]   debug: smartctl: Serial Number:                      XXXXXXXXXXXXXXXXXX 
[2021/11/17 22:59:14]   debug: smartctl: Firmware Version:                   8EV101H0 
[2021/11/17 22:59:14]   debug: smartctl: PCI Vendor/Subsystem ID:            0x8086 
[2021/11/17 22:59:14]   debug: smartctl: IEEE OUI Identifier:                0x5cd2e4 
[2021/11/17 22:59:14]   debug: smartctl: Controller ID:                      0 
[2021/11/17 22:59:14]   debug: smartctl: Number of Namespaces:               1 
[2021/11/17 22:59:14]   debug: smartctl: Namespace 1 Size/Capacity:          400,088,457,216 [400 GB] 
[2021/11/17 22:59:14]   debug: smartctl: Namespace 1 Formatted LBA Size:     512 
[2021/11/17 22:59:14]   debug: smartctl: Local Time is:                      Wed Nov 17 22:59:14 2021 EST 
[2021/11/17 22:59:14]  notice: Found /dev/nvme0n1, NVME, INTEL SSDPEDMW400G4, 400 GB, S/N=XXXXXXXXXXXXXXX
[2021/11/17 22:59:14]    info: Automatically enumerated 7 devices.
[2021/11/17 22:59:14]  notice: bios-version = 2104
[2021/11/17 22:59:14]  notice: bios-release-date = 08/13/2013
[2021/11/17 22:59:14]  notice: system-manufacturer = System manufacturer
[2021/11/17 22:59:14]  notice: system-product-name = System Product Name
[2021/11/17 22:59:14]  notice: system-version = System Version
[2021/11/17 22:59:14]  notice: system-serial-number = XXXXXXXXXXXXXXX
[2021/11/17 22:59:14]  notice: system-uuid = XXXXXXXXXXXXXXX
[2021/11/17 22:59:14]  notice: baseboard-manufacturer = ASUSTeK COMPUTER INC.
[2021/11/17 22:59:14]  notice: baseboard-product-name = SABERTOOTH Z77
[2021/11/17 22:59:14]  notice: baseboard-version = Rev 1.xx
[2021/11/17 22:59:14]  notice: baseboard-serial-number = XXXXXXXXXXXXXXX
[2021/11/17 22:59:14]  notice: baseboard-asset-tag = XXXXXXXXXXXXXXX
[2021/11/17 22:59:14]  notice: chassis-manufacturer = Chassis Manufacture
[2021/11/17 22:59:14]  notice: chassis-type = Desktop
[2021/11/17 22:59:14]  notice: chassis-version = Chassis Version
[2021/11/17 22:59:14]  notice: chassis-serial-number = XXXXXXXXXXXXXXX
[2021/11/17 22:59:14]  notice: chassis-asset-tag = XXXXXXXXXXXXXXX
[2021/11/17 22:59:14]  notice: processor-family = Core 2 Duo
[2021/11/17 22:59:14]  notice: processor-manufacturer = Intel
[2021/11/17 22:59:14]  notice: processor-version = Intel(R) Core(TM) i7-3770 CPU @ 3.40GHz
[2021/11/17 22:59:14]  notice: processor-frequency = 3426 MHz
[2021/11/17 22:59:14]  notice: Opened entropy source '/dev/urandom'.
[2021/11/17 22:59:14]  notice: hwmon: Module drivetemp loaded, drive temperatures available
[2021/11/17 22:59:14]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon6/device/block
[2021/11/17 22:59:14]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon6/device/block/.
[2021/11/17 22:59:14]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon6/device/block/..
[2021/11/17 22:59:14]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon6/device/block/sde
[2021/11/17 22:59:14]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon4/device/block
[2021/11/17 22:59:14]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon4/device/block/.
[2021/11/17 22:59:14]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon4/device/block/..
[2021/11/17 22:59:14]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon4/device/block/sda
[2021/11/17 22:59:14]  notice: hwmon: Device sda has 'hwmon' temperature monitoring
[2021/11/17 22:59:14]   error: hwmon: Can't open /sys/class/hwmon/hwmonX/block or ../hwmonX/device/nvme/nvme0
[2021/11/17 22:59:14]   error: hwmon: Can't open /sys/class/hwmon/hwmonX/block or ../hwmonX/device/nvme/nvme0
[2021/11/17 22:59:14]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon7/device/block
[2021/11/17 22:59:14]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon7/device/block/.
[2021/11/17 22:59:14]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon7/device/block/..
[2021/11/17 22:59:14]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon7/device/block/sdf
[2021/11/17 22:59:14]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon5/device/block
[2021/11/17 22:59:14]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon5/device/block/.
[2021/11/17 22:59:14]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon5/device/block/..
[2021/11/17 22:59:14]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon5/device/block/sdb
[2021/11/17 22:59:14]   error: hwmon: Can't open /sys/class/hwmon/hwmonX/block or ../hwmonX/device/nvme/nvme0
[2021/11/17 22:59:14]   error: hwmon: Can't open /sys/class/hwmon/hwmonX/block or ../hwmonX/device/nvme/nvme0
[2021/11/17 22:59:14]  notice: hwmon: Device /dev/sda hwmon path = /sys/class/hwmon/hwmon4
[2021/11/17 22:59:14]  notice: hwmon: /sys/class/hwmon/hwmon4/temp1_crit 75C
[2021/11/17 22:59:14]  notice: hwmon: /sys/class/hwmon/hwmon4/temp1_highest 39C
[2021/11/17 22:59:14]  notice: hwmon: /sys/class/hwmon/hwmon4/temp1_input 39C
[2021/11/17 22:59:14]  notice: hwmon: /sys/class/hwmon/hwmon4/temp1_lcrit -5C
[2021/11/17 22:59:14]  notice: hwmon: /sys/class/hwmon/hwmon4/temp1_lowest 29C
[2021/11/17 22:59:14]  notice: hwmon: /sys/class/hwmon/hwmon4/temp1_max 70C
[2021/11/17 22:59:14]  notice: hwmon: /sys/class/hwmon/hwmon4/temp1_min 0C
[2021/11/17 22:59:14]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon6/device/block
[2021/11/17 22:59:14]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon6/device/block/.
[2021/11/17 22:59:14]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon6/device/block/..
[2021/11/17 22:59:14]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon6/device/block/sde
[2021/11/17 22:59:14]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon4/device/block
[2021/11/17 22:59:14]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon4/device/block/.
[2021/11/17 22:59:14]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon4/device/block/..
[2021/11/17 22:59:14]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon4/device/block/sda
[2021/11/17 22:59:14]   error: hwmon: Can't open /sys/class/hwmon/hwmonX/block or ../hwmonX/device/nvme/nvme0
[2021/11/17 22:59:14]   error: hwmon: Can't open /sys/class/hwmon/hwmonX/block or ../hwmonX/device/nvme/nvme0
[2021/11/17 22:59:14]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon7/device/block
[2021/11/17 22:59:14]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon7/device/block/.
[2021/11/17 22:59:14]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon7/device/block/..
[2021/11/17 22:59:14]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon7/device/block/sdf
[2021/11/17 22:59:14]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon5/device/block
[2021/11/17 22:59:14]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon5/device/block/.
[2021/11/17 22:59:14]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon5/device/block/..
[2021/11/17 22:59:14]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon5/device/block/sdb
[2021/11/17 22:59:14]  notice: hwmon: Device sdb has 'hwmon' temperature monitoring
[2021/11/17 22:59:14]   error: hwmon: Can't open /sys/class/hwmon/hwmonX/block or ../hwmonX/device/nvme/nvme0
[2021/11/17 22:59:14]   error: hwmon: Can't open /sys/class/hwmon/hwmonX/block or ../hwmonX/device/nvme/nvme0
[2021/11/17 22:59:14]  notice: hwmon: Device /dev/sdb hwmon path = /sys/class/hwmon/hwmon5
[2021/11/17 22:59:14]  notice: hwmon: /sys/class/hwmon/hwmon5/temp1_crit 75C
[2021/11/17 22:59:14]  notice: hwmon: /sys/class/hwmon/hwmon5/temp1_highest 40C
[2021/11/17 22:59:15]  notice: hwmon: /sys/class/hwmon/hwmon5/temp1_input 40C
[2021/11/17 22:59:15]  notice: hwmon: /sys/class/hwmon/hwmon5/temp1_lcrit -5C
[2021/11/17 22:59:15]  notice: hwmon: /sys/class/hwmon/hwmon5/temp1_lowest 30C
[2021/11/17 22:59:15]  notice: hwmon: /sys/class/hwmon/hwmon5/temp1_max 70C
[2021/11/17 22:59:15]  notice: hwmon: /sys/class/hwmon/hwmon5/temp1_min 0C
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon6/device/block
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon6/device/block/.
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon6/device/block/..
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon6/device/block/sde
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon4/device/block
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon4/device/block/.
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon4/device/block/..
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon4/device/block/sda
[2021/11/17 22:59:15]   error: hwmon: Can't open /sys/class/hwmon/hwmonX/block or ../hwmonX/device/nvme/nvme0
[2021/11/17 22:59:15]   error: hwmon: Can't open /sys/class/hwmon/hwmonX/block or ../hwmonX/device/nvme/nvme0
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon7/device/block
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon7/device/block/.
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon7/device/block/..
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon7/device/block/sdf
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon5/device/block
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon5/device/block/.
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon5/device/block/..
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon5/device/block/sdb
[2021/11/17 22:59:15]   error: hwmon: Can't open /sys/class/hwmon/hwmonX/block or ../hwmonX/device/nvme/nvme0
[2021/11/17 22:59:15]   error: hwmon: Can't open /sys/class/hwmon/hwmonX/block or ../hwmonX/device/nvme/nvme0
[2021/11/17 22:59:15]  notice: hwmon: Device /dev/sdc hwmon path = 
[2021/11/17 22:59:15]  notice: hwmon: Unable to  open /temp1_crit
[2021/11/17 22:59:15]  notice: hwmon: Unable to  open /temp1_highest
[2021/11/17 22:59:15]  notice: hwmon: Unable to  open /temp1_input
[2021/11/17 22:59:15]  notice: hwmon: Unable to  open /temp1_lcrit
[2021/11/17 22:59:15]  notice: hwmon: Unable to  open /temp1_lowest
[2021/11/17 22:59:15]  notice: hwmon: Unable to  open /temp1_max
[2021/11/17 22:59:15]  notice: hwmon: Unable to  open /temp1_min
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon6/device/block
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon6/device/block/.
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon6/device/block/..
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon6/device/block/sde
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon4/device/block
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon4/device/block/.
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon4/device/block/..
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon4/device/block/sda
[2021/11/17 22:59:15]   error: hwmon: Can't open /sys/class/hwmon/hwmonX/block or ../hwmonX/device/nvme/nvme0
[2021/11/17 22:59:15]   error: hwmon: Can't open /sys/class/hwmon/hwmonX/block or ../hwmonX/device/nvme/nvme0
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon7/device/block
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon7/device/block/.
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon7/device/block/..
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon7/device/block/sdf
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon5/device/block
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon5/device/block/.
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon5/device/block/..
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon5/device/block/sdb
[2021/11/17 22:59:15]   error: hwmon: Can't open /sys/class/hwmon/hwmonX/block or ../hwmonX/device/nvme/nvme0
[2021/11/17 22:59:15]   error: hwmon: Can't open /sys/class/hwmon/hwmonX/block or ../hwmonX/device/nvme/nvme0
[2021/11/17 22:59:15]  notice: hwmon: Device /dev/sdd hwmon path = 
[2021/11/17 22:59:15]  notice: hwmon: Unable to  open /temp1_crit
[2021/11/17 22:59:15]  notice: hwmon: Unable to  open /temp1_highest
[2021/11/17 22:59:15]  notice: hwmon: Unable to  open /temp1_input
[2021/11/17 22:59:15]  notice: hwmon: Unable to  open /temp1_lcrit
[2021/11/17 22:59:15]  notice: hwmon: Unable to  open /temp1_lowest
[2021/11/17 22:59:15]  notice: hwmon: Unable to  open /temp1_max
[2021/11/17 22:59:15]  notice: hwmon: Unable to  open /temp1_min
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon6/device/block
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon6/device/block/.
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon6/device/block/..
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon6/device/block/sde
[2021/11/17 22:59:15]  notice: hwmon: Device sde has 'hwmon' temperature monitoring
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon4/device/block
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon4/device/block/.
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon4/device/block/..
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon4/device/block/sda
[2021/11/17 22:59:15]   error: hwmon: Can't open /sys/class/hwmon/hwmonX/block or ../hwmonX/device/nvme/nvme0
[2021/11/17 22:59:15]   error: hwmon: Can't open /sys/class/hwmon/hwmonX/block or ../hwmonX/device/nvme/nvme0
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon7/device/block
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon7/device/block/.
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon7/device/block/..
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon7/device/block/sdf
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon5/device/block
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon5/device/block/.
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon5/device/block/..
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon5/device/block/sdb
[2021/11/17 22:59:15]   error: hwmon: Can't open /sys/class/hwmon/hwmonX/block or ../hwmonX/device/nvme/nvme0
[2021/11/17 22:59:15]   error: hwmon: Can't open /sys/class/hwmon/hwmonX/block or ../hwmonX/device/nvme/nvme0
[2021/11/17 22:59:15]  notice: hwmon: Device /dev/sde hwmon path = /sys/class/hwmon/hwmon6
[2021/11/17 22:59:15]  notice: hwmon: /sys/class/hwmon/hwmon6/temp1_crit 85C
[2021/11/17 22:59:15]  notice: hwmon: /sys/class/hwmon/hwmon6/temp1_highest 46C
[2021/11/17 22:59:15]  notice: hwmon: /sys/class/hwmon/hwmon6/temp1_input 46C
[2021/11/17 22:59:15]  notice: hwmon: /sys/class/hwmon/hwmon6/temp1_lcrit -41C
[2021/11/17 22:59:15]  notice: hwmon: /sys/class/hwmon/hwmon6/temp1_lowest 30C
[2021/11/17 22:59:15]  notice: hwmon: /sys/class/hwmon/hwmon6/temp1_max 60C
[2021/11/17 22:59:15]  notice: hwmon: /sys/class/hwmon/hwmon6/temp1_min 0C
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon6/device/block
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon6/device/block/.
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon6/device/block/..
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon6/device/block/sde
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon4/device/block
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon4/device/block/.
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon4/device/block/..
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon4/device/block/sda
[2021/11/17 22:59:15]   error: hwmon: Can't open /sys/class/hwmon/hwmonX/block or ../hwmonX/device/nvme/nvme0
[2021/11/17 22:59:15]   error: hwmon: Can't open /sys/class/hwmon/hwmonX/block or ../hwmonX/device/nvme/nvme0
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon7/device/block
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon7/device/block/.
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon7/device/block/..
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon7/device/block/sdf
[2021/11/17 22:59:15]  notice: hwmon: Device sdf has 'hwmon' temperature monitoring
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon5/device/block
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon5/device/block/.
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon5/device/block/..
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon5/device/block/sdb
[2021/11/17 22:59:15]   error: hwmon: Can't open /sys/class/hwmon/hwmonX/block or ../hwmonX/device/nvme/nvme0
[2021/11/17 22:59:15]   error: hwmon: Can't open /sys/class/hwmon/hwmonX/block or ../hwmonX/device/nvme/nvme0
[2021/11/17 22:59:15]  notice: hwmon: Device /dev/sdf hwmon path = /sys/class/hwmon/hwmon7
[2021/11/17 22:59:15]  notice: hwmon: /sys/class/hwmon/hwmon7/temp1_crit 85C
[2021/11/17 22:59:15]  notice: hwmon: /sys/class/hwmon/hwmon7/temp1_highest 44C
[2021/11/17 22:59:15]  notice: hwmon: /sys/class/hwmon/hwmon7/temp1_input 44C
[2021/11/17 22:59:15]  notice: hwmon: /sys/class/hwmon/hwmon7/temp1_lcrit -41C
[2021/11/17 22:59:15]  notice: hwmon: /sys/class/hwmon/hwmon7/temp1_lowest 18C
[2021/11/17 22:59:15]  notice: hwmon: /sys/class/hwmon/hwmon7/temp1_max 60C
[2021/11/17 22:59:15]  notice: hwmon: /sys/class/hwmon/hwmon7/temp1_min 0C
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon6/device/block
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon6/device/block/.
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon6/device/block/..
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon6/device/block/sde
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon4/device/block
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon4/device/block/.
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon4/device/block/..
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon4/device/block/sda
[2021/11/17 22:59:15]   error: hwmon: Can't open /sys/class/hwmon/hwmonX/block or ../hwmonX/device/nvme/nvme0
[2021/11/17 22:59:15]   error: hwmon: Can't open /sys/class/hwmon/hwmonX/block or ../hwmonX/device/nvme/nvme0
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon7/device/block
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon7/device/block/.
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon7/device/block/..
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon7/device/block/sdf
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon5/device/block
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon5/device/block/.
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon5/device/block/..
[2021/11/17 22:59:15]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon5/device/block/sdb
[2021/11/17 22:59:15]   error: hwmon: Can't open /sys/class/hwmon/hwmonX/block or ../hwmonX/device/nvme/nvme0
[2021/11/17 22:59:15]   error: hwmon: Can't open /sys/class/hwmon/hwmonX/block or ../hwmonX/device/nvme/nvme0
[2021/11/17 22:59:15]  notice: hwmon: Device /dev/nvme0n1 hwmon path = 
[2021/11/17 22:59:15]  notice: hwmon: Unable to  open /temp1_crit
[2021/11/17 22:59:15]  notice: hwmon: Unable to  open /temp1_highest
[2021/11/17 22:59:15]  notice: hwmon: Unable to  open /temp1_input
[2021/11/17 22:59:15]  notice: hwmon: Unable to  open /temp1_lcrit
[2021/11/17 22:59:15]  notice: hwmon: Unable to  open /temp1_lowest
[2021/11/17 22:59:15]  notice: hwmon: Unable to  open /temp1_max
[2021/11/17 22:59:15]  notice: hwmon: Unable to  open /temp1_min
[2021/11/17 22:59:22]    info: Exit in progress
[2021/11/17 22:59:22]    info: Cancelling the GUI thread.
[2021/11/17 22:59:22]    info: GUI compute_stats thread has been cancelled
[2021/11/17 22:59:22]    info: Nwipe was aborted by the user prior to the wipe starting.

Here's is output of ls -al /sys/class/hwmon/hwmon1/ :

total 0
drwxr-xr-x 3 root root    0 Nov 17 22:48 .
drwxr-xr-x 6 root root    0 Nov 17 22:48 ..
lrwxrwxrwx 1 root root    0 Nov 17 22:48 device -> ../../nvme0
-r--r--r-- 1 root root 4096 Nov 17 22:48 name
drwxr-xr-x 2 root root    0 Nov 17 23:13 power
lrwxrwxrwx 1 root root    0 Nov 17 22:48 subsystem -> ../../../../../../../class/hwmon
-r--r--r-- 1 root root 4096 Nov 17 22:48 temp1_alarm
-r--r--r-- 1 root root 4096 Nov 17 22:48 temp1_input
-r--r--r-- 1 root root 4096 Nov 17 22:48 temp1_label
-rw-r--r-- 1 root root 4096 Nov 17 22:48 uevent

And hre's output of ls -al /sys/class/hwmon/hwmon1/device/ :

total 0
drwxr-xr-x  6 root root    0 Nov 17 22:48 .
drwxr-xr-x  3 root root    0 Nov 17 22:48 ..
-r--r--r--  1 root root 4096 Nov 17 23:14 address
-r--r--r--  1 root root 4096 Nov 17 23:14 cntlid
-r--r--r--  1 root root 4096 Nov 17 23:14 dev
lrwxrwxrwx  1 root root    0 Nov 17 22:48 device -> ../../../0000:02:00.0
-r--r--r--  1 root root 4096 Nov 17 22:48 firmware_rev
drwxr-xr-x  3 root root    0 Nov 17 22:48 hwmon1
-r--r--r--  1 root root 4096 Nov 17 23:14 kato
-r--r--r--  1 root root 4096 Nov 17 22:48 model
drwxr-xr-x  3 root root    0 Nov 17 22:48 ng0n1
-r--r--r--  1 root root 4096 Nov 17 23:14 numa_node
drwxr-xr-x 11 root root    0 Nov 17 22:48 nvme0n1
drwxr-xr-x  2 root root    0 Nov 17 23:14 power
-r--r--r--  1 root root 4096 Nov 17 23:14 queue_count
--w-------  1 root root 4096 Nov 17 23:14 rescan_controller
--w-------  1 root root 4096 Nov 17 23:14 reset_controller
-r--r--r--  1 root root 4096 Nov 17 22:48 serial
-r--r--r--  1 root root 4096 Nov 17 23:14 sqsize
-r--r--r--  1 root root 4096 Nov 17 23:14 state
-r--r--r--  1 root root 4096 Nov 17 23:14 subsysnqn
lrwxrwxrwx  1 root root    0 Nov 17 22:48 subsystem -> ../../../../../../class/nvme
-r--r--r--  1 root root 4096 Nov 17 23:14 transport
-rw-r--r--  1 root root 4096 Nov 17 22:48 uevent

@PartialVolume
Copy link
Owner

PartialVolume commented Nov 18, 2021

I need to add a third path to look for this device /sys/class/hwmon/hwmonX/device/ So far, we've found device names will appear in:

`/sys/class/hwmon/hwmonX/device/block` (for traditional /dev/sdX devices)
`/sys/class/hwmon/hwmonX/device/nvme/` (for nvme devices behind a nvme controller)
and
`/sys/class/hwmon/hwmonX/device/` (also for nvme)

I'll make the changes this morning and let you know when it's ready.

Regarding the blank screen issue, I've build a version of shredos with framebuffer support, so commands like fbgrab image.png or fbgrab -C2 image.png now work for taking a snapshot of the three virtual screens. Tested in both legacy and UEFI. Legacy defaults to 640x480 on my DELL optiplex and I see the video resolution switch as it boots up and hopefully the resolution should be user switchable via the command line or linux kernel line.

In UEFI it comes up in 1024x768. I'm using a 4:3 monitor hence the resolutions it's defaulting to. Fingers crossed this will fix the blank screen issue. fbgrab -v image.png will tell you what mode your in.

Regarding devices /dev/sdc and /dev/sdd above, do they output any temperature info via smartctl -a or are they the drives that don't seem to produce any temperature data?

@PartialVolume
Copy link
Owner

Latest nwipe available for testing martijnvanbrummelen/nwipe#381 Updated hwmon search path to handle more nvme devices.

@Firminator
Copy link
Author

Regarding devices /dev/sdc and /dev/sdd above, do they output any temperature info via smartctl -a or are they the drives that don't seem to produce any temperature data?

Yes, there is no temp output from smartctl. I checked recently and found that the firmware doesn't even provide the SMART attribute 194 for temp. The tech specs for that drive series don't mention it at all. My guess is that INTEL decided to not put a temp. sensor in the drives (to drive costs down maybe). It's odd as you would expect that INTEL drives do have all the features. It's not that temp reading in storage is a new thing.

@Firminator
Copy link
Author

Firminator commented Nov 18, 2021

Latest nwipe available for testing martijnvanbrummelen/nwipe#381 Updated hwmon search path to handle more nvme devices.

Screenshot from 2021-11-18 06-35-45

[2021/11/18 06:35:36]  notice: Opened entropy source '/dev/urandom'.
[2021/11/18 06:35:36]  notice: hwmon: Module drivetemp loaded, drive temperatures available
[2021/11/18 06:35:36]   debug: hwmon:
[2021/11/18 06:35:36]   debug: hwmon: Found /sys/class/hwmon/hwmon6/device/block
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon6/device/block/.
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon6/device/block/..
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon6/device/block/sde
[2021/11/18 06:35:36]   debug: hwmon:
[2021/11/18 06:35:36]   debug: hwmon: Found /sys/class/hwmon/hwmon4/device/block
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon4/device/block/.
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon4/device/block/..
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon4/device/block/sda
[2021/11/18 06:35:36]  notice: hwmon: sda has temperature monitoring
[2021/11/18 06:35:36]   debug: hwmon: sda found in /sys/class/hwmon/hwmon4/device/block)
[2021/11/18 06:35:36]   debug: hwmon:
[2021/11/18 06:35:36]   debug: hwmon: /sys/class/hwmon/hwmon2/device/block doesn't exist, trying next path
[2021/11/18 06:35:36]   debug: hwmon: /sys/class/hwmon/hwmon2/device/nvme/nvme0 doesn't exist, trying next path
[2021/11/18 06:35:36]   debug: hwmon: Found /sys/class/hwmon/hwmon2/device
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/.
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/..
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/uevent
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/power
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/driver
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/driver_override
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/subsystem
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/cpufv
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/input
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/hwmon
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/modalias
[2021/11/18 06:35:36]   debug: hwmon:
[2021/11/18 06:35:36]   debug: hwmon: /sys/class/hwmon/hwmon0/device/block doesn't exist, trying next path
[2021/11/18 06:35:36]   debug: hwmon: /sys/class/hwmon/hwmon0/device/nvme/nvme0 doesn't exist, trying next path
[2021/11/18 06:35:36]   debug: hwmon: Found /sys/class/hwmon/hwmon0/device
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/.
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/..
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/uevent
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev0_weight
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_5_temp
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev2_trip_point
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_3_type
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev1_weight
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev3
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev2_weight
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev3_weight
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_4_temp
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_2_type
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/mode
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/power
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev1
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev0_trip_point
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev4_weight
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/available_policies
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/device
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/policy
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_3_temp
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_1_type
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/k_d
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/sustainable_power
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/type
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/hwmon0
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev3_trip_point
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/offset
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/slope
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_2_temp
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_0_type
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev4
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/emul_temp
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/k_po
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/integral_cutoff
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/subsystem
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev1_trip_point
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/k_i
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_1_temp
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev2
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/k_pu
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/temp
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_5_type
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev0
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_0_temp
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev4_trip_point
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_4_type
[2021/11/18 06:35:36]   debug: hwmon:
[2021/11/18 06:35:36]   debug: hwmon: Found /sys/class/hwmon/hwmon7/device/block
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon7/device/block/.
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon7/device/block/..
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon7/device/block/sdf
[2021/11/18 06:35:36]   debug: hwmon:
[2021/11/18 06:35:36]   debug: hwmon: Found /sys/class/hwmon/hwmon5/device/block
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon5/device/block/.
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon5/device/block/..
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon5/device/block/sdb
[2021/11/18 06:35:36]   debug: hwmon:
[2021/11/18 06:35:36]   debug: hwmon: /sys/class/hwmon/hwmon3/device/block doesn't exist, trying next path
[2021/11/18 06:35:36]   debug: hwmon: /sys/class/hwmon/hwmon3/device/nvme/nvme0 doesn't exist, trying next path
[2021/11/18 06:35:36]   debug: hwmon: Found /sys/class/hwmon/hwmon3/device
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/.
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/..
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/uevent
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/power
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/driver
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/driver_override
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/subsystem
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/hwmon
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/modalias
[2021/11/18 06:35:36]   debug: hwmon:
[2021/11/18 06:35:36]   debug: hwmon: /sys/class/hwmon/hwmon1/device/block doesn't exist, trying next path
[2021/11/18 06:35:36]   debug: hwmon: /sys/class/hwmon/hwmon1/device/nvme/nvme0 doesn't exist, trying next path
[2021/11/18 06:35:36]   debug: hwmon: Found /sys/class/hwmon/hwmon1/device
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/.
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/..
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/uevent
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/nvme0n1
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/cntlid
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/address
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/reset_controller
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/sqsize
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/queue_count
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/transport
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/subsysnqn
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/power
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/rescan_controller
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/numa_node
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/model
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/dev
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/device
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/firmware_rev
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/ng0n1
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/subsystem
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/state
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/kato
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/serial
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/hwmon1
[2021/11/18 06:35:36]  notice: hwmon: Device /dev/sda hwmon path = /sys/class/hwmon/hwmon4
[2021/11/18 06:35:36]  notice: hwmon: /sys/class/hwmon/hwmon4/temp1_crit 75C
[2021/11/18 06:35:36]  notice: hwmon: /sys/class/hwmon/hwmon4/temp1_highest 43C
[2021/11/18 06:35:36]  notice: hwmon: /sys/class/hwmon/hwmon4/temp1_input 36C
[2021/11/18 06:35:36]  notice: hwmon: /sys/class/hwmon/hwmon4/temp1_lcrit -5C
[2021/11/18 06:35:36]  notice: hwmon: /sys/class/hwmon/hwmon4/temp1_lowest 29C
[2021/11/18 06:35:36]  notice: hwmon: /sys/class/hwmon/hwmon4/temp1_max 70C
[2021/11/18 06:35:36]  notice: hwmon: /sys/class/hwmon/hwmon4/temp1_min 0C
[2021/11/18 06:35:36]   debug: hwmon:
[2021/11/18 06:35:36]   debug: hwmon: Found /sys/class/hwmon/hwmon6/device/block
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon6/device/block/.
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon6/device/block/..
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon6/device/block/sde
[2021/11/18 06:35:36]   debug: hwmon:
[2021/11/18 06:35:36]   debug: hwmon: Found /sys/class/hwmon/hwmon4/device/block
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon4/device/block/.
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon4/device/block/..
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon4/device/block/sda
[2021/11/18 06:35:36]   debug: hwmon:
[2021/11/18 06:35:36]   debug: hwmon: /sys/class/hwmon/hwmon2/device/block doesn't exist, trying next path
[2021/11/18 06:35:36]   debug: hwmon: /sys/class/hwmon/hwmon2/device/nvme/nvme0 doesn't exist, trying next path
[2021/11/18 06:35:36]   debug: hwmon: Found /sys/class/hwmon/hwmon2/device
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/.
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/..
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/uevent
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/power
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/driver
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/driver_override
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/subsystem
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/cpufv
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/input
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/hwmon
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/modalias
[2021/11/18 06:35:36]   debug: hwmon:
[2021/11/18 06:35:36]   debug: hwmon: /sys/class/hwmon/hwmon0/device/block doesn't exist, trying next path
[2021/11/18 06:35:36]   debug: hwmon: /sys/class/hwmon/hwmon0/device/nvme/nvme0 doesn't exist, trying next path
[2021/11/18 06:35:36]   debug: hwmon: Found /sys/class/hwmon/hwmon0/device
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/.
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/..
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/uevent
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev0_weight
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_5_temp
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev2_trip_point
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_3_type
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev1_weight
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev3
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev2_weight
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev3_weight
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_4_temp
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_2_type
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/mode
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/power
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev1
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev0_trip_point
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev4_weight
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/available_policies
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/device
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/policy
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_3_temp
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_1_type
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/k_d
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/sustainable_power
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/type
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/hwmon0
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev3_trip_point
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/offset
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/slope
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_2_temp
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_0_type
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev4
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/emul_temp
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/k_po
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/integral_cutoff
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/subsystem
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev1_trip_point
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/k_i
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_1_temp
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev2
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/k_pu
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/temp
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_5_type
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev0
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_0_temp
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev4_trip_point
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_4_type
[2021/11/18 06:35:36]   debug: hwmon:
[2021/11/18 06:35:36]   debug: hwmon: Found /sys/class/hwmon/hwmon7/device/block
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon7/device/block/.
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon7/device/block/..
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon7/device/block/sdf
[2021/11/18 06:35:36]   debug: hwmon:
[2021/11/18 06:35:36]   debug: hwmon: Found /sys/class/hwmon/hwmon5/device/block
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon5/device/block/.
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon5/device/block/..
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon5/device/block/sdb
[2021/11/18 06:35:36]  notice: hwmon: sdb has temperature monitoring
[2021/11/18 06:35:36]   debug: hwmon: sdb found in /sys/class/hwmon/hwmon5/device/block)
[2021/11/18 06:35:36]   debug: hwmon:
[2021/11/18 06:35:36]   debug: hwmon: /sys/class/hwmon/hwmon3/device/block doesn't exist, trying next path
[2021/11/18 06:35:36]   debug: hwmon: /sys/class/hwmon/hwmon3/device/nvme/nvme0 doesn't exist, trying next path
[2021/11/18 06:35:36]   debug: hwmon: Found /sys/class/hwmon/hwmon3/device
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/.
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/..
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/uevent
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/power
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/driver
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/driver_override
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/subsystem
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/hwmon
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/modalias
[2021/11/18 06:35:36]   debug: hwmon:
[2021/11/18 06:35:36]   debug: hwmon: /sys/class/hwmon/hwmon1/device/block doesn't exist, trying next path
[2021/11/18 06:35:36]   debug: hwmon: /sys/class/hwmon/hwmon1/device/nvme/nvme0 doesn't exist, trying next path
[2021/11/18 06:35:36]   debug: hwmon: Found /sys/class/hwmon/hwmon1/device
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/.
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/..
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/uevent
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/nvme0n1
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/cntlid
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/address
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/reset_controller
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/sqsize
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/queue_count
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/transport
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/subsysnqn
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/power
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/rescan_controller
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/numa_node
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/model
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/dev
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/device
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/firmware_rev
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/ng0n1
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/subsystem
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/state
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/kato
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/serial
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/hwmon1
[2021/11/18 06:35:36]  notice: hwmon: Device /dev/sdb hwmon path = /sys/class/hwmon/hwmon5
[2021/11/18 06:35:36]  notice: hwmon: /sys/class/hwmon/hwmon5/temp1_crit 75C
[2021/11/18 06:35:36]  notice: hwmon: /sys/class/hwmon/hwmon5/temp1_highest 40C
[2021/11/18 06:35:36]  notice: hwmon: /sys/class/hwmon/hwmon5/temp1_input 37C
[2021/11/18 06:35:36]  notice: hwmon: /sys/class/hwmon/hwmon5/temp1_lcrit -5C
[2021/11/18 06:35:36]  notice: hwmon: /sys/class/hwmon/hwmon5/temp1_lowest 30C
[2021/11/18 06:35:36]  notice: hwmon: /sys/class/hwmon/hwmon5/temp1_max 70C
[2021/11/18 06:35:36]  notice: hwmon: /sys/class/hwmon/hwmon5/temp1_min 0C
[2021/11/18 06:35:36]   debug: hwmon:
[2021/11/18 06:35:36]   debug: hwmon: Found /sys/class/hwmon/hwmon6/device/block
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon6/device/block/.
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon6/device/block/..
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon6/device/block/sde
[2021/11/18 06:35:36]   debug: hwmon:
[2021/11/18 06:35:36]   debug: hwmon: Found /sys/class/hwmon/hwmon4/device/block
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon4/device/block/.
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon4/device/block/..
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon4/device/block/sda
[2021/11/18 06:35:36]   debug: hwmon:
[2021/11/18 06:35:36]   debug: hwmon: /sys/class/hwmon/hwmon2/device/block doesn't exist, trying next path
[2021/11/18 06:35:36]   debug: hwmon: /sys/class/hwmon/hwmon2/device/nvme/nvme0 doesn't exist, trying next path
[2021/11/18 06:35:36]   debug: hwmon: Found /sys/class/hwmon/hwmon2/device
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/.
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/..
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/uevent
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/power
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/driver
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/driver_override
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/subsystem
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/cpufv
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/input
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/hwmon
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/modalias
[2021/11/18 06:35:36]   debug: hwmon:
[2021/11/18 06:35:36]   debug: hwmon: /sys/class/hwmon/hwmon0/device/block doesn't exist, trying next path
[2021/11/18 06:35:36]   debug: hwmon: /sys/class/hwmon/hwmon0/device/nvme/nvme0 doesn't exist, trying next path
[2021/11/18 06:35:36]   debug: hwmon: Found /sys/class/hwmon/hwmon0/device
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/.
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/..
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/uevent
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev0_weight
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_5_temp
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev2_trip_point
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_3_type
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev1_weight
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev3
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev2_weight
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev3_weight
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_4_temp
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_2_type
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/mode
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/power
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev1
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev0_trip_point
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev4_weight
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/available_policies
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/device
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/policy
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_3_temp
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_1_type
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/k_d
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/sustainable_power
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/type
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/hwmon0
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev3_trip_point
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/offset
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/slope
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_2_temp
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_0_type
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev4
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/emul_temp
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/k_po
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/integral_cutoff
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/subsystem
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev1_trip_point
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/k_i
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_1_temp
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev2
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/k_pu
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/temp
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_5_type
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev0
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_0_temp
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev4_trip_point
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_4_type
[2021/11/18 06:35:36]   debug: hwmon:
[2021/11/18 06:35:36]   debug: hwmon: Found /sys/class/hwmon/hwmon7/device/block
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon7/device/block/.
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon7/device/block/..
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon7/device/block/sdf
[2021/11/18 06:35:36]   debug: hwmon:
[2021/11/18 06:35:36]   debug: hwmon: Found /sys/class/hwmon/hwmon5/device/block
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon5/device/block/.
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon5/device/block/..
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon5/device/block/sdb
[2021/11/18 06:35:36]   debug: hwmon:
[2021/11/18 06:35:36]   debug: hwmon: /sys/class/hwmon/hwmon3/device/block doesn't exist, trying next path
[2021/11/18 06:35:36]   debug: hwmon: /sys/class/hwmon/hwmon3/device/nvme/nvme0 doesn't exist, trying next path
[2021/11/18 06:35:36]   debug: hwmon: Found /sys/class/hwmon/hwmon3/device
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/.
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/..
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/uevent
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/power
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/driver
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/driver_override
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/subsystem
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/hwmon
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/modalias
[2021/11/18 06:35:36]   debug: hwmon:
[2021/11/18 06:35:36]   debug: hwmon: /sys/class/hwmon/hwmon1/device/block doesn't exist, trying next path
[2021/11/18 06:35:36]   debug: hwmon: /sys/class/hwmon/hwmon1/device/nvme/nvme0 doesn't exist, trying next path
[2021/11/18 06:35:36]   debug: hwmon: Found /sys/class/hwmon/hwmon1/device
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/.
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/..
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/uevent
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/nvme0n1
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/cntlid
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/address
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/reset_controller
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/sqsize
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/queue_count
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/transport
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/subsysnqn
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/power
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/rescan_controller
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/numa_node
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/model
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/dev
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/device
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/firmware_rev
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/ng0n1
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/subsystem
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/state
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/kato
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/serial
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/hwmon1
[2021/11/18 06:35:36]  notice: hwmon: Device /dev/sdc hwmon path = 
[2021/11/18 06:35:36]  notice: hwmon: Unable to  open /temp1_crit
[2021/11/18 06:35:36]  notice: hwmon: Unable to  open /temp1_highest
[2021/11/18 06:35:36]  notice: hwmon: Unable to  open /temp1_input
[2021/11/18 06:35:36]  notice: hwmon: Unable to  open /temp1_lcrit
[2021/11/18 06:35:36]  notice: hwmon: Unable to  open /temp1_lowest
[2021/11/18 06:35:36]  notice: hwmon: Unable to  open /temp1_max
[2021/11/18 06:35:36]  notice: hwmon: Unable to  open /temp1_min
[2021/11/18 06:35:36]   debug: hwmon:
[2021/11/18 06:35:36]   debug: hwmon: Found /sys/class/hwmon/hwmon6/device/block
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon6/device/block/.
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon6/device/block/..
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon6/device/block/sde
[2021/11/18 06:35:36]   debug: hwmon:
[2021/11/18 06:35:36]   debug: hwmon: Found /sys/class/hwmon/hwmon4/device/block
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon4/device/block/.
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon4/device/block/..
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon4/device/block/sda
[2021/11/18 06:35:36]   debug: hwmon:
[2021/11/18 06:35:36]   debug: hwmon: /sys/class/hwmon/hwmon2/device/block doesn't exist, trying next path
[2021/11/18 06:35:36]   debug: hwmon: /sys/class/hwmon/hwmon2/device/nvme/nvme0 doesn't exist, trying next path
[2021/11/18 06:35:36]   debug: hwmon: Found /sys/class/hwmon/hwmon2/device
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/.
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/..
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/uevent
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/power
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/driver
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/driver_override
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/subsystem
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/cpufv
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/input
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/hwmon
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/modalias
[2021/11/18 06:35:36]   debug: hwmon:
[2021/11/18 06:35:36]   debug: hwmon: /sys/class/hwmon/hwmon0/device/block doesn't exist, trying next path
[2021/11/18 06:35:36]   debug: hwmon: /sys/class/hwmon/hwmon0/device/nvme/nvme0 doesn't exist, trying next path
[2021/11/18 06:35:36]   debug: hwmon: Found /sys/class/hwmon/hwmon0/device
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/.
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/..
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/uevent
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev0_weight
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_5_temp
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev2_trip_point
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_3_type
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev1_weight
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev3
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev2_weight
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev3_weight
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_4_temp
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_2_type
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/mode
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/power
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev1
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev0_trip_point
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev4_weight
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/available_policies
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/device
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/policy
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_3_temp
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_1_type
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/k_d
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/sustainable_power
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/type
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/hwmon0
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev3_trip_point
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/offset
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/slope
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_2_temp
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_0_type
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev4
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/emul_temp
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/k_po
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/integral_cutoff
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/subsystem
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev1_trip_point
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/k_i
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_1_temp
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev2
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/k_pu
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/temp
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_5_type
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev0
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_0_temp
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev4_trip_point
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_4_type
[2021/11/18 06:35:36]   debug: hwmon:
[2021/11/18 06:35:36]   debug: hwmon: Found /sys/class/hwmon/hwmon7/device/block
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon7/device/block/.
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon7/device/block/..
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon7/device/block/sdf
[2021/11/18 06:35:36]   debug: hwmon:
[2021/11/18 06:35:36]   debug: hwmon: Found /sys/class/hwmon/hwmon5/device/block
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon5/device/block/.
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon5/device/block/..
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon5/device/block/sdb
[2021/11/18 06:35:36]   debug: hwmon:
[2021/11/18 06:35:36]   debug: hwmon: /sys/class/hwmon/hwmon3/device/block doesn't exist, trying next path
[2021/11/18 06:35:36]   debug: hwmon: /sys/class/hwmon/hwmon3/device/nvme/nvme0 doesn't exist, trying next path
[2021/11/18 06:35:36]   debug: hwmon: Found /sys/class/hwmon/hwmon3/device
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/.
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/..
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/uevent
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/power
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/driver
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/driver_override
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/subsystem
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/hwmon
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/modalias
[2021/11/18 06:35:36]   debug: hwmon:
[2021/11/18 06:35:36]   debug: hwmon: /sys/class/hwmon/hwmon1/device/block doesn't exist, trying next path
[2021/11/18 06:35:36]   debug: hwmon: /sys/class/hwmon/hwmon1/device/nvme/nvme0 doesn't exist, trying next path
[2021/11/18 06:35:36]   debug: hwmon: Found /sys/class/hwmon/hwmon1/device
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/.
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/..
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/uevent
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/nvme0n1
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/cntlid
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/address
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/reset_controller
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/sqsize
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/queue_count
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/transport
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/subsysnqn
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/power
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/rescan_controller
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/numa_node
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/model
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/dev
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/device
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/firmware_rev
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/ng0n1
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/subsystem
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/state
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/kato
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/serial
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/hwmon1
[2021/11/18 06:35:36]  notice: hwmon: Device /dev/sdd hwmon path = 
[2021/11/18 06:35:36]  notice: hwmon: Unable to  open /temp1_crit
[2021/11/18 06:35:36]  notice: hwmon: Unable to  open /temp1_highest
[2021/11/18 06:35:36]  notice: hwmon: Unable to  open /temp1_input
[2021/11/18 06:35:36]  notice: hwmon: Unable to  open /temp1_lcrit
[2021/11/18 06:35:36]  notice: hwmon: Unable to  open /temp1_lowest
[2021/11/18 06:35:36]  notice: hwmon: Unable to  open /temp1_max
[2021/11/18 06:35:36]  notice: hwmon: Unable to  open /temp1_min
[2021/11/18 06:35:36]   debug: hwmon:
[2021/11/18 06:35:36]   debug: hwmon: Found /sys/class/hwmon/hwmon6/device/block
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon6/device/block/.
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon6/device/block/..
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon6/device/block/sde
[2021/11/18 06:35:36]  notice: hwmon: sde has temperature monitoring
[2021/11/18 06:35:36]   debug: hwmon: sde found in /sys/class/hwmon/hwmon6/device/block)
[2021/11/18 06:35:36]   debug: hwmon:
[2021/11/18 06:35:36]   debug: hwmon: Found /sys/class/hwmon/hwmon4/device/block
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon4/device/block/.
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon4/device/block/..
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon4/device/block/sda
[2021/11/18 06:35:36]   debug: hwmon:
[2021/11/18 06:35:36]   debug: hwmon: /sys/class/hwmon/hwmon2/device/block doesn't exist, trying next path
[2021/11/18 06:35:36]   debug: hwmon: /sys/class/hwmon/hwmon2/device/nvme/nvme0 doesn't exist, trying next path
[2021/11/18 06:35:36]   debug: hwmon: Found /sys/class/hwmon/hwmon2/device
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/.
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/..
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/uevent
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/power
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/driver
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/driver_override
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/subsystem
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/cpufv
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/input
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/hwmon
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/modalias
[2021/11/18 06:35:36]   debug: hwmon:
[2021/11/18 06:35:36]   debug: hwmon: /sys/class/hwmon/hwmon0/device/block doesn't exist, trying next path
[2021/11/18 06:35:36]   debug: hwmon: /sys/class/hwmon/hwmon0/device/nvme/nvme0 doesn't exist, trying next path
[2021/11/18 06:35:36]   debug: hwmon: Found /sys/class/hwmon/hwmon0/device
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/.
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/..
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/uevent
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev0_weight
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_5_temp
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev2_trip_point
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_3_type
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev1_weight
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev3
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev2_weight
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev3_weight
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_4_temp
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_2_type
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/mode
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/power
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev1
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev0_trip_point
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev4_weight
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/available_policies
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/device
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/policy
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_3_temp
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_1_type
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/k_d
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/sustainable_power
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/type
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/hwmon0
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev3_trip_point
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/offset
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/slope
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_2_temp
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_0_type
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev4
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/emul_temp
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/k_po
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/integral_cutoff
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/subsystem
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev1_trip_point
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/k_i
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_1_temp
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev2
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/k_pu
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/temp
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_5_type
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev0
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_0_temp
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev4_trip_point
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_4_type
[2021/11/18 06:35:36]   debug: hwmon:
[2021/11/18 06:35:36]   debug: hwmon: Found /sys/class/hwmon/hwmon7/device/block
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon7/device/block/.
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon7/device/block/..
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon7/device/block/sdf
[2021/11/18 06:35:36]   debug: hwmon:
[2021/11/18 06:35:36]   debug: hwmon: Found /sys/class/hwmon/hwmon5/device/block
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon5/device/block/.
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon5/device/block/..
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon5/device/block/sdb
[2021/11/18 06:35:36]   debug: hwmon:
[2021/11/18 06:35:36]   debug: hwmon: /sys/class/hwmon/hwmon3/device/block doesn't exist, trying next path
[2021/11/18 06:35:36]   debug: hwmon: /sys/class/hwmon/hwmon3/device/nvme/nvme0 doesn't exist, trying next path
[2021/11/18 06:35:36]   debug: hwmon: Found /sys/class/hwmon/hwmon3/device
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/.
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/..
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/uevent
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/power
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/driver
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/driver_override
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/subsystem
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/hwmon
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/modalias
[2021/11/18 06:35:36]   debug: hwmon:
[2021/11/18 06:35:36]   debug: hwmon: /sys/class/hwmon/hwmon1/device/block doesn't exist, trying next path
[2021/11/18 06:35:36]   debug: hwmon: /sys/class/hwmon/hwmon1/device/nvme/nvme0 doesn't exist, trying next path
[2021/11/18 06:35:36]   debug: hwmon: Found /sys/class/hwmon/hwmon1/device
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/.
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/..
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/uevent
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/nvme0n1
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/cntlid
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/address
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/reset_controller
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/sqsize
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/queue_count
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/transport
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/subsysnqn
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/power
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/rescan_controller
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/numa_node
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/model
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/dev
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/device
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/firmware_rev
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/ng0n1
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/subsystem
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/state
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/kato
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/serial
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/hwmon1
[2021/11/18 06:35:36]  notice: hwmon: Device /dev/sde hwmon path = /sys/class/hwmon/hwmon6
[2021/11/18 06:35:36]  notice: hwmon: /sys/class/hwmon/hwmon6/temp1_crit 85C
[2021/11/18 06:35:36]  notice: hwmon: /sys/class/hwmon/hwmon6/temp1_highest 46C
[2021/11/18 06:35:36]  notice: hwmon: /sys/class/hwmon/hwmon6/temp1_input 44C
[2021/11/18 06:35:36]  notice: hwmon: /sys/class/hwmon/hwmon6/temp1_lcrit -41C
[2021/11/18 06:35:36]  notice: hwmon: /sys/class/hwmon/hwmon6/temp1_lowest 30C
[2021/11/18 06:35:36]  notice: hwmon: /sys/class/hwmon/hwmon6/temp1_max 60C
[2021/11/18 06:35:36]  notice: hwmon: /sys/class/hwmon/hwmon6/temp1_min 0C
[2021/11/18 06:35:36]   debug: hwmon:
[2021/11/18 06:35:36]   debug: hwmon: Found /sys/class/hwmon/hwmon6/device/block
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon6/device/block/.
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon6/device/block/..
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon6/device/block/sde
[2021/11/18 06:35:36]   debug: hwmon:
[2021/11/18 06:35:36]   debug: hwmon: Found /sys/class/hwmon/hwmon4/device/block
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon4/device/block/.
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon4/device/block/..
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon4/device/block/sda
[2021/11/18 06:35:36]   debug: hwmon:
[2021/11/18 06:35:36]   debug: hwmon: /sys/class/hwmon/hwmon2/device/block doesn't exist, trying next path
[2021/11/18 06:35:36]   debug: hwmon: /sys/class/hwmon/hwmon2/device/nvme/nvme0 doesn't exist, trying next path
[2021/11/18 06:35:36]   debug: hwmon: Found /sys/class/hwmon/hwmon2/device
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/.
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/..
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/uevent
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/power
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/driver
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/driver_override
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/subsystem
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/cpufv
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/input
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/hwmon
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/modalias
[2021/11/18 06:35:36]   debug: hwmon:
[2021/11/18 06:35:36]   debug: hwmon: /sys/class/hwmon/hwmon0/device/block doesn't exist, trying next path
[2021/11/18 06:35:36]   debug: hwmon: /sys/class/hwmon/hwmon0/device/nvme/nvme0 doesn't exist, trying next path
[2021/11/18 06:35:36]   debug: hwmon: Found /sys/class/hwmon/hwmon0/device
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/.
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/..
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/uevent
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev0_weight
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_5_temp
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev2_trip_point
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_3_type
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev1_weight
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev3
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev2_weight
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev3_weight
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_4_temp
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_2_type
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/mode
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/power
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev1
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev0_trip_point
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev4_weight
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/available_policies
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/device
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/policy
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_3_temp
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_1_type
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/k_d
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/sustainable_power
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/type
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/hwmon0
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev3_trip_point
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/offset
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/slope
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_2_temp
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_0_type
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev4
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/emul_temp
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/k_po
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/integral_cutoff
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/subsystem
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev1_trip_point
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/k_i
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_1_temp
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev2
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/k_pu
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/temp
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_5_type
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev0
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_0_temp
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev4_trip_point
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_4_type
[2021/11/18 06:35:36]   debug: hwmon:
[2021/11/18 06:35:36]   debug: hwmon: Found /sys/class/hwmon/hwmon7/device/block
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon7/device/block/.
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon7/device/block/..
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon7/device/block/sdf
[2021/11/18 06:35:36]  notice: hwmon: sdf has temperature monitoring
[2021/11/18 06:35:36]   debug: hwmon: sdf found in /sys/class/hwmon/hwmon7/device/block)
[2021/11/18 06:35:36]   debug: hwmon:
[2021/11/18 06:35:36]   debug: hwmon: Found /sys/class/hwmon/hwmon5/device/block
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon5/device/block/.
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon5/device/block/..
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon5/device/block/sdb
[2021/11/18 06:35:36]   debug: hwmon:
[2021/11/18 06:35:36]   debug: hwmon: /sys/class/hwmon/hwmon3/device/block doesn't exist, trying next path
[2021/11/18 06:35:36]   debug: hwmon: /sys/class/hwmon/hwmon3/device/nvme/nvme0 doesn't exist, trying next path
[2021/11/18 06:35:36]   debug: hwmon: Found /sys/class/hwmon/hwmon3/device
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/.
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/..
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/uevent
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/power
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/driver
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/driver_override
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/subsystem
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/hwmon
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/modalias
[2021/11/18 06:35:36]   debug: hwmon:
[2021/11/18 06:35:36]   debug: hwmon: /sys/class/hwmon/hwmon1/device/block doesn't exist, trying next path
[2021/11/18 06:35:36]   debug: hwmon: /sys/class/hwmon/hwmon1/device/nvme/nvme0 doesn't exist, trying next path
[2021/11/18 06:35:36]   debug: hwmon: Found /sys/class/hwmon/hwmon1/device
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/.
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/..
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/uevent
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/nvme0n1
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/cntlid
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/address
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/reset_controller
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/sqsize
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/queue_count
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/transport
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/subsysnqn
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/power
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/rescan_controller
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/numa_node
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/model
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/dev
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/device
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/firmware_rev
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/ng0n1
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/subsystem
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/state
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/kato
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/serial
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/hwmon1
[2021/11/18 06:35:36]  notice: hwmon: Device /dev/sdf hwmon path = /sys/class/hwmon/hwmon7
[2021/11/18 06:35:36]  notice: hwmon: /sys/class/hwmon/hwmon7/temp1_crit 85C
[2021/11/18 06:35:36]  notice: hwmon: /sys/class/hwmon/hwmon7/temp1_highest 44C
[2021/11/18 06:35:36]  notice: hwmon: /sys/class/hwmon/hwmon7/temp1_input 41C
[2021/11/18 06:35:36]  notice: hwmon: /sys/class/hwmon/hwmon7/temp1_lcrit -41C
[2021/11/18 06:35:36]  notice: hwmon: /sys/class/hwmon/hwmon7/temp1_lowest 18C
[2021/11/18 06:35:36]  notice: hwmon: /sys/class/hwmon/hwmon7/temp1_max 60C
[2021/11/18 06:35:36]  notice: hwmon: /sys/class/hwmon/hwmon7/temp1_min 0C
[2021/11/18 06:35:36]   debug: hwmon:
[2021/11/18 06:35:36]   debug: hwmon: Found /sys/class/hwmon/hwmon6/device/block
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon6/device/block/.
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon6/device/block/..
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon6/device/block/sde
[2021/11/18 06:35:36]   debug: hwmon:
[2021/11/18 06:35:36]   debug: hwmon: Found /sys/class/hwmon/hwmon4/device/block
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon4/device/block/.
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon4/device/block/..
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon4/device/block/sda
[2021/11/18 06:35:36]   debug: hwmon:
[2021/11/18 06:35:36]   debug: hwmon: /sys/class/hwmon/hwmon2/device/block doesn't exist, trying next path
[2021/11/18 06:35:36]   debug: hwmon: /sys/class/hwmon/hwmon2/device/nvme/nvme0 doesn't exist, trying next path
[2021/11/18 06:35:36]   debug: hwmon: Found /sys/class/hwmon/hwmon2/device
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/.
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/..
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/uevent
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/power
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/driver
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/driver_override
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/subsystem
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/cpufv
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/input
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/hwmon
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon2/device/modalias
[2021/11/18 06:35:36]   debug: hwmon:
[2021/11/18 06:35:36]   debug: hwmon: /sys/class/hwmon/hwmon0/device/block doesn't exist, trying next path
[2021/11/18 06:35:36]   debug: hwmon: /sys/class/hwmon/hwmon0/device/nvme/nvme0 doesn't exist, trying next path
[2021/11/18 06:35:36]   debug: hwmon: Found /sys/class/hwmon/hwmon0/device
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/.
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/..
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/uevent
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev0_weight
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_5_temp
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev2_trip_point
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_3_type
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev1_weight
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev3
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev2_weight
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev3_weight
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_4_temp
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_2_type
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/mode
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/power
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev1
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev0_trip_point
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev4_weight
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/available_policies
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/device
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/policy
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_3_temp
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_1_type
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/k_d
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/sustainable_power
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/type
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/hwmon0
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev3_trip_point
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/offset
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/slope
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_2_temp
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_0_type
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev4
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/emul_temp
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/k_po
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/integral_cutoff
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/subsystem
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev1_trip_point
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/k_i
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_1_temp
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev2
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/k_pu
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/temp
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_5_type
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev0
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_0_temp
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/cdev4_trip_point
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon0/device/trip_point_4_type
[2021/11/18 06:35:36]   debug: hwmon:
[2021/11/18 06:35:36]   debug: hwmon: Found /sys/class/hwmon/hwmon7/device/block
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon7/device/block/.
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon7/device/block/..
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon7/device/block/sdf
[2021/11/18 06:35:36]   debug: hwmon:
[2021/11/18 06:35:36]   debug: hwmon: Found /sys/class/hwmon/hwmon5/device/block
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon5/device/block/.
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon5/device/block/..
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon5/device/block/sdb
[2021/11/18 06:35:36]   debug: hwmon:
[2021/11/18 06:35:36]   debug: hwmon: /sys/class/hwmon/hwmon3/device/block doesn't exist, trying next path
[2021/11/18 06:35:36]   debug: hwmon: /sys/class/hwmon/hwmon3/device/nvme/nvme0 doesn't exist, trying next path
[2021/11/18 06:35:36]   debug: hwmon: Found /sys/class/hwmon/hwmon3/device
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/.
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/..
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/uevent
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/power
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/driver
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/driver_override
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/subsystem
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/hwmon
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon3/device/modalias
[2021/11/18 06:35:36]   debug: hwmon:
[2021/11/18 06:35:36]   debug: hwmon: /sys/class/hwmon/hwmon1/device/block doesn't exist, trying next path
[2021/11/18 06:35:36]   debug: hwmon: /sys/class/hwmon/hwmon1/device/nvme/nvme0 doesn't exist, trying next path
[2021/11/18 06:35:36]   debug: hwmon: Found /sys/class/hwmon/hwmon1/device
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/.
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/..
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/uevent
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/nvme0n1
[2021/11/18 06:35:36]  notice: hwmon: nvme0n1 has temperature monitoring
[2021/11/18 06:35:36]   debug: hwmon: nvme0n1 found in /sys/class/hwmon/hwmon1/device)
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/cntlid
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/address
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/reset_controller
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/sqsize
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/queue_count
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/transport
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/subsysnqn
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/power
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/rescan_controller
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/numa_node
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/model
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/dev
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/device
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/firmware_rev
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/ng0n1
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/subsystem
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/state
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/kato
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/serial
[2021/11/18 06:35:36]   debug: hwmon: dirpath_tmp=/sys/class/hwmon/hwmon1/device/hwmon1
[2021/11/18 06:35:36]  notice: hwmon: Device /dev/nvme0n1 hwmon path = /sys/class/hwmon/hwmon1
[2021/11/18 06:35:36]  notice: hwmon: Unable to  open /sys/class/hwmon/hwmon1/temp1_crit
[2021/11/18 06:35:36]  notice: hwmon: Unable to  open /sys/class/hwmon/hwmon1/temp1_highest
[2021/11/18 06:35:36]  notice: hwmon: /sys/class/hwmon/hwmon1/temp1_input 31C
[2021/11/18 06:35:36]  notice: hwmon: Unable to  open /sys/class/hwmon/hwmon1/temp1_lcrit
[2021/11/18 06:35:36]  notice: hwmon: Unable to  open /sys/class/hwmon/hwmon1/temp1_lowest
[2021/11/18 06:35:36]  notice: hwmon: Unable to  open /sys/class/hwmon/hwmon1/temp1_max
[2021/11/18 06:35:36]  notice: hwmon: Unable to  open /sys/class/hwmon/hwmon1/temp1_min
[2021/11/18 06:36:13]    info: Exit in progress
[2021/11/18 06:36:13]    info: Cancelling the GUI thread.
[2021/11/18 06:36:13]    info: GUI compute_stats thread has been cancelled
[2021/11/18 06:36:13]    info: Nwipe was aborted by the user prior to the wipe starting.

@PartialVolume
Copy link
Owner

PartialVolume commented Nov 18, 2021

That's great, I'll release Shredos with the latest version. Then after that, I'll start on implementing the smartctl json structure so I can update the USB temperatures (where the adapter supports ATA pass through).

@PartialVolume
Copy link
Owner

I think I'll close this and open a new issue regarding adding temperature support to USB devices.

@Firminator
Copy link
Author

I ran nwipe yesterday on another device that couldn't boot ShredOS at all. It came preinstalled with Ubuntu hence took advantage of it and compiled nwipe. NVMe temperature readout was succesfull on a M.2 port connected to a PCIe Gen3 so I think we got this covered pretty good. Awesome.
Also this device will get 2 additional NVMe drives using PCIe Gen3 and Gen4, so that's going to be a good test if the NVMe pathes change again :)

@PartialVolume
Copy link
Owner

Excellent, glad the temperature readouts are working well.

Did ShredOS just display the Recalbox message and get no further?

@PartialVolume
Copy link
Owner

For these systems that don't appear to boot but in fact are running nwipe, I could have ShredOS pipe the output of dmesg to the USB flash. Then we could see whether anything is showing up in the logs.

@Firminator
Copy link
Author

Did ShredOS just display the Recalbox message and get no further?

Yes, this device is latest gen and the BIOS is UEFI-only with no option so set it to Legacy. Intel GPU. No additional video. It just hangs saying Recalbox.

For these systems that don't appear to boot but in fact are running nwipe, I could have ShredOS pipe the output of dmesg to the USB flash. Then we could see whether anything is showing up in the logs.

Yes good idea. Pipe out the whole boot and initialization process to the flash drive.

@Firminator
Copy link
Author

Good news. NVMe temperatures show up with 2 NVMe drives as well. Well done PartialVolume! I don't have a picture right now, but nwipe is now more advanced in that regard than GSmartControl/smartmontools. Who would have thought. Once I get the 3rd drive I run another test.

@PartialVolume
Copy link
Owner

That's great !, I'm still running tests on the new build based on kernel rev. 5.13.19. It probably won't be ready for a day or two but I'll keep you updated.

@Firminator
Copy link
Author

Once I get the 3rd drive I run another test.

Here we go:
3xNVMeTemp
Looking good!

[I took this picture 2021-11-30, but the latest ShredOS version from this week looks identical. So this works and this thread could be closed.]

On a sidenote (and this should probably go into a seperate issue):
The ordering of the NVMe drives is off - which is only a cosmetic issue - and I can't tell if this is how the drives are enumerated on my device only or if others are seeing this, too.

@PartialVolume
Copy link
Owner

PartialVolume commented Dec 13, 2021

Excellent.

The drive names appear in whatever order libparted decides to find the drives. The drive contexts are then created in that same order. Probably best to open that as a separate issue. If it was to be fixed I'd probably do that at the libparted stage. After finding all the drives, sort the list then create the contexts, the GUI displays the list in order of context c[0]-> through c[n]->. I probably wouldn't do a sort in the GUI as that code is already pretty convoluted.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants