Sysops Notepad

[Linux] Disk type check(SSD,HDD) 본문

업무/etc

[Linux] Disk type check(SSD,HDD)

sysops 2019. 12. 6. 13:54

Disk type이 SSD, HDD인지 확인하기

Linux automatically detects SSD, and since kernel version 2.6.29, you may verify sda with:

# cat /sys/block/sda/queue/rotational
1 for HDD
0 for SSD

or

# lsblk -d -o name,rota
NAME ROTA
sda     0
sdb     0

Comments