如何确定/确保使用“hdparm”选项时硬盘是否已停止旋转?

如何确定/确保使用“hdparm”选项时硬盘是否已停止旋转?

我想让一些硬盘在空闲时降速。所以我使用了hdparm包。在其中 /etc/hdparm.conf我添加了以下几行:

command_line {
hdparm -Ss 241 /dev/sda }

我的目的是让硬盘在闲置 30 分钟后停止旋转。但我的问题是,我如何确切知道硬盘是否已停止旋转(假设它已超过 30 分钟的闲置时间)?

有什么想法吗?有什么建议吗?:) :)

答案1

您可以使用hdparm -C /dev/sda。来自man hdparm

   -C     Check the current IDE power mode status, which will always be  one
          of  unknown  (drive  does  not  support this command), active/idle
          (normal operation), standby (low power mode, drive has spun down),
          or  sleeping  (lowest  power mode, drive is completely shut down).
          The -S, -y, -Y, and -Z options can be used to manipulate  the  IDE
          power modes.

相关内容