smartctl 不适用于 Seagate Firecuda NVMe 硬盘

smartctl 不适用于 Seagate Firecuda NVMe 硬盘

我有一个 Seagate Firecuda 硬盘,似乎可以工作,但我无法获取其 smartctl 信息...是否是该特定硬盘不支持 smartctl 或其他功能?

使用 lshw 我看到了该设备:

                 *-storage
                      description: Non-Volatile memory controller
                      product: Seagate Technology PLC
                      vendor: Seagate Technology PLC
                      physical id: 0
                      bus info: pci@0000:43:00.0
                      version: 01
                      width: 64 bits
                      clock: 33MHz
                      capabilities: storage pciexpress msix msi pm nvm_express bus_master cap_list
                      configuration: driver=nvme latency=0
                      resources: irq:51 memory:b7f00000-b7f03fff

它已安装并正在工作:

$ lsblk
NAME        MAJ:MIN RM   SIZE RO TYPE MOUNTPOINT
nvme0n1     259:0    0 931.5G  0 disk 
├─nvme0n1p1 259:1    0   512M  0 part /boot/efi
└─nvme0n1p2 259:2    0   931G  0 part /

但是 smartctl 报错:

$ sudo smartctl -A /dev/nvme0n1
smartctl 6.6 2016-05-31 r4324 [x86_64-linux-4.15.0-112-generic] (local build)
Copyright (C) 2002-16, Bruce Allen, Christian Franke, www.smartmontools.org

=== START OF SMART DATA SECTION ===
Read NVMe SMART/Health Information failed: NVMe Status 0x2002
$ sudo smartctl -A /dev/nvme0n1p1
smartctl 6.6 2016-05-31 r4324 [x86_64-linux-4.15.0-112-generic] (local build)
Copyright (C) 2002-16, Bruce Allen, Christian Franke, www.smartmontools.org

=== START OF SMART DATA SECTION ===
Read NVMe SMART/Health Information failed: NVMe Status 0x2002

答案1

您的 smartmontools 版本非常旧(已有四年了!)。请尝试安装 smartmontools 7.1 甚至 SVN 快照,因为它通常包含大量修复和解决方法。特别是7.0版本之前,NVMe支持不是很好;从 7.0 开始,smartctl默认为广播 SID,用于 NVMe 设备上的 SMART 状态查询。

相关内容