📜  检查 ssd 或 hdd linux - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:30.249000             🧑  作者: Mango

代码示例1
$ cat /sys/block/sda/queue/rotational

#If the output is 1, the disk is HDD.
#If the output is 0 (zero), the disk is SDD.
#Because, SSDs won't rotate. So the output should be zero
# if you have SSD in your system.