A opção mais fácil é especificar seu ponto de montagem:
$ df -h /home
Filesystem Size Used Avail Use% Mounted on
/dev/mapper/fedora_skrht450s-home 180G 144G 27G 85% /home
A df(1)
manpage explica o comportamento que você está vendo:
df
displays the amount of disk space available on the file system containing each file name argument. If no file name is given, the space available on all currently mounted file systems is shown.If an argument is the absolute file name of a disk device node containing a mounted file system,
df
shows the space available on that file system rather than on the file system containing the device node.
Portanto, no seu sistema Ubuntu, /dev/sda2
é um dispositivo montado e o segundo parágrafo se aplica. No seu sistema Fedora, o LV não é montado via /dev/sda4
, então você obtém as informações para o sistema de arquivos contendo /dev/sda4
, /dev
.