Changes between Initial Version and Version 1 of Ticket #1914


Ignore:
Timestamp:
Dec 20, 2024, 4:05:01 AM (2 days ago)
Author:
Yurii Kondrakov
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #1914 – Description

    initial v1  
    22
    33{{{
    4 smartctl --info /dev/bus/0 -d megaraid,7
     4$ smartctl --info /dev/bus/0 -d megaraid,7
    55# OR
    6 smartctl --info /dev/bus/0 -d megaraid,7 --json
     6$ smartctl --info /dev/bus/0 -d megaraid,7 --json
    77}}}
    88
     
    1919
    2020{{{
    21 smartctl --info /dev/bus/0 -d megaraid,7
     21$ smartctl --info /dev/bus/0 -d megaraid,7
    2222
    2323smartctl 7.2 2020-12-30 r5155 [x86_64-linux-5.15.0-130-generic] (local build)
     
    5757  }
    5858}}}
     59
     60Additionally, there is an inconsistency the other way around:
     61
     62{{{
     63$ sudo smartctl /dev/nvme0 --info
     64
     65smartctl 7.4 2023-08-01 r5530 [x86_64-linux-6.11.0-12-generic] (local build)
     66Copyright (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}}}