BaeBox

Linux 하드 타입/상태 확인. 본문

개발 관련/LInux

Linux 하드 타입/상태 확인.

배모씨. 2019. 10. 21. 11:59
반응형

df -h
dstat
fdisk -l
iostat -d
lsblk
lsblk -d -o name, rota

lsblk -d -o name, rota 는, 하드디스크 타입을 확인하는 명령어로 ROTA 값을 아래 표와 같이 표기한다. 

ROTA Description
0 SSD
1 HDD or NVM-e

NVM-e 가 1 혹은 다른 수로 표기되지 않아 아쉽다. 

 


http://www.kwangsiklee.com/2018/05/%EB%A6%AC%EB%88%85%EC%8A%A4%EC%97%90%EC%84%9C-hdd%EC%9D%B8%EC%A7%80-ssd%EC%9D%B8%EC%A7%80-%ED%99%95%EC%9D%B8%ED%95%B4%EB%B3%B4%EA%B8%B0/

 

리눅스에서 HDD인지 SSD인지 확인해보기

개요 리눅스에서 장비의 디스크가 HDD인지 SSD인지 확인할일이 있어 방법을 찾아본 후 공유해둔다. 사용법 아래와 같이 명령어를 수행했을때 개별 디스크마다 출력이 되는데 1은 HDD, 0은 SSD이다. $ lsblk -d -o name,rota NAME ROTA sda 1 sdb 0…

www.kwangsiklee.com

https://bloodguy.tistory.com/entry/Linux-%EB%94%94%EC%8A%A4%ED%81%AC%EA%B0%80-HDD%EC%9D%B8%EC%A7%80-SSD%EC%9D%B8%EC%A7%80-%EC%95%8C%EC%95%84%EB%82%B4%EA%B8%B0

 

[Linux] 디스크가 HDD인지 SSD인지 알아내기

아래 명령어로 확인이 가능함. // HDD는 1 [root@localhost]# cat /sys/block/sda/queue/rotational 1 // SSD는 0 [root@localhost]# cat /sys/block/sdb/queue/rotational 0 커널 2.6.29 이상부터 가능.

bloodguy.tistory.com

https://superuser.com/questions/131519/what-is-this-dm-0-device

불러오는 중입니다...

https://www.cyberciti.biz/faq/find-hard-disk-hardware-specs-on-linux/

 

HowTo: Find Out Hard Disk Specs / Details on Linux - nixCraft

Can you tell me a Linux command to find out information about my hard disk such as description, product name, bus type, size, and cache memory size under Linux operating systems using command line options?

www.cyberciti.biz

https://www.binarytides.com/linux-command-check-disk-partitions/

 

9 commands to check hard disk partitions and disk space on Linux

Here is a quick list of 9 commands that you can use to check the partitions on hard drives and disks on your Linux system and how much space each partition has.

www.binarytides.com

 

반응형

'개발 관련 > LInux' 카테고리의 다른 글

쉘 스크립트를 root 권한으로 실행하였는지 체크하는 법  (0) 2019.10.21
Shell script 배열  (0) 2019.10.21
Linux 리소스 사용량 확인  (0) 2019.10.21
du (Disk Usage)  (0) 2019.10.21
Local repository  (0) 2019.10.21
Comments