在 Mac 中禁用 SMART

在 Mac 中禁用 SMART

我正在尝试禁用三星固态硬盘上的 SMART,以遵循这个问题.我运行以下命令:

sudo smartctl --smart=off /dev/disk4 
smartctl 7.4 2023-08-01 r5530 [Darwin 21.4.0 x86_64] (local build)
Copyright (C) 2002-23, Bruce Allen, Christian Franke, www.smartmontools.org

=== START OF ENABLE/DISABLE COMMANDS SECTION ===
SMART Disabled. Use option -s with argument 'on' to enable it.

然而,我们可以看到 SMART 实际上并没有被禁用:

arden@thedaves-iMac ~ % smartctl -a /dev/disk4              
smartctl 7.4 2023-08-01 r5530 [Darwin 21.4.0 x86_64] (local build)
Copyright (C) 2002-23, Bruce Allen, Christian Franke, www.smartmontools.org

=== START OF INFORMATION SECTION ===
Model Family:     Samsung based SSDs
Device Model:     Samsung SSD 870 EVO 2TB
Serial Number:    S6PNNS0RB03234V
LU WWN Device Id: 5 002538 f31b2874a
Firmware Version: SVT01B6Q
User Capacity:    2,000,398,934,016 bytes [2.00 TB]
Sector Size:      512 bytes logical/physical
Rotation Rate:    Solid State Device
Form Factor:      2.5 inches
TRIM Command:     Available, deterministic, zeroed
Device is:        In smartctl database 7.3/5528
ATA Version is:   ACS-4 T13/BSR INCITS 529 revision 5
SATA Version is:  SATA 3.3, 6.0 Gb/s (current: 6.0 Gb/s)
Local Time is:    Fri Oct  6 13:12:37 2023 PDT
SMART support is: Available - device has SMART capability.
SMART support is: Enabled

我尝试-d在命令中添加各种标志,但结果都一样。如何禁用此驱动器上的 SMART?

相关内容