有人能帮我用smartctl命令识别我的驱动器问题吗?当我执行smartctl -h时,输出包含“传递”,但我仍然怀疑磁盘的状态。
发布于 2022-02-22 21:20:32
smartctl -h只显示smartctl的帮助页。
您可以使用--scan选项扫描设备,使用--scan-open扫描设备,然后尝试打开每个设备。我认为你想用smartctl来获得健康状况。在这种情况下,您需要使用smartctl -H与大写H,而不是smartctl -h
若要显示设备智能健康状态,请尝试以下操作
smartctl -H /dev/sda
或者这个
smartctl --health /dev/sda
您还可以使用smartctl -t /dev/sda或smartctl --test /dev/sda执行测试。
https://unix.stackexchange.com/questions/691756
复制相似问题