Changes between Initial Version and Version 1 of Ticket #1914
- Timestamp:
- Dec 20, 2024, 4:05:01 AM (2 days ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #1914 – Description
initial v1 2 2 3 3 {{{ 4 smartctl --info /dev/bus/0 -d megaraid,74 $ smartctl --info /dev/bus/0 -d megaraid,7 5 5 # OR 6 smartctl --info /dev/bus/0 -d megaraid,7 --json6 $ smartctl --info /dev/bus/0 -d megaraid,7 --json 7 7 }}} 8 8 … … 19 19 20 20 {{{ 21 smartctl --info /dev/bus/0 -d megaraid,721 $ smartctl --info /dev/bus/0 -d megaraid,7 22 22 23 23 smartctl 7.2 2020-12-30 r5155 [x86_64-linux-5.15.0-130-generic] (local build) … … 57 57 } 58 58 }}} 59 60 Additionally, there is an inconsistency the other way around: 61 62 {{{ 63 $ sudo smartctl /dev/nvme0 --info 64 65 smartctl 7.4 2023-08-01 r5530 [x86_64-linux-6.11.0-12-generic] (local build) 66 Copyright (C) 2002-23, Bruce Allen, Christian Franke, www.smartmontools.org 67 68 === START OF INFORMATION SECTION === 69 ... [no SMART availability lines] 70 71 72 $ sudo smartctl /dev/nvme0 --info -j 73 { 74 ... 75 "smart_support": { 76 "available": true, 77 "enabled": true 78 } 79 } 80 81 }}}