리눅스 시스템에서 디스크 정보를 확인하는 방법에는 여러 가지가 있습니다. 다음은 대표적인 명령어와 그 설명입니다:
df -h
출력 예시:
Filesystem Size Used Avail Use% Mounted on /dev/sda1 50G 20G 30G 40% /
lsblk
출력 예시:
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT sda 8:0 0 50G 0 disk ├─sda1 8:1 0 50G 0 part /
sudo fdisk -l
출력 예시:
Disk /dev/sda: 50 GiB, 53687091200 bytes, 104857600 sectors Units: sectors of 1 * 512 = 512 bytes Device Boot Start End Sectors Size Id Type /dev/sda1 2048 104857599 104855552 50G 83 Linux
sudo parted -l
출력 예시:
Model: ATA VBOX HARDDISK (scsi) Disk /dev/sda: 50GB Partition Table: gpt Number Start End Size File system Name Flags 1 1049kB 50.0GB 50.0GB ext4
du -sh /path/to/directory
iostat -dx