0

I have 2*1000GB hard drives + 60GB SSD. When I'm running df -H I'm getting "wrong" information about the server's hard drives. The output

# df -H
Filesystem             Size   Used  Avail Use% Mounted on
/dev/md1                78G    48G    26G  66% /
tmpfs                  4.2G      0   4.2G   0% /dev/shm
/dev/md0               520M    46M   448M  10% /boot

Thanks!

Rotem
  • 147
  • 1
  • 14

2 Answers2

2

df is for filesystems, not disks. As skohrs says, you'll want to use something like fdisk to deal with disks directly.

84104
  • 12,905
  • 6
  • 45
  • 76
1

It would appear that you don't have your 2*1TB HDDs mounted anywhere. The only disk being shown is a MDRaid device of ~80 GB, presumably on your 80 (not 60) GB SSD.

To get your larger disks to appear, simply (format, if necessary, and) mount them.

BMDan
  • 7,249
  • 2
  • 23
  • 34