En relación con la respuesta de alexwlchan:
En realidad, creo que la diferencia entre lo que informa Finder en comparación con df
es que Finder en Moutain Lion (o incluso Lion?) informa sobre el espacio en disco en múltiplos de 1000 (es decir, 1kB es 1000B, en lugar de 1024B). df
, teniendo sus raíces en UNIX, creo que todavía usa la potencia de dos sistemas. En el hombre para df verás:
-b Use (the default) 512-byte blocks. This is only useful as a way
to override an BLOCKSIZE specification from the environment.
-g Use 1073741824-byte (1-Gbyte) blocks rather than the default.
Note that this overrides the BLOCKSIZE specification from the
environment.
-H "Human-readable" output. Use unit suffixes: Byte, Kilobyte,
Megabyte, Gigabyte, Terabyte and Petabyte in order to reduce the
number of digits to three or less using base 10 for sizes.
-h "Human-readable" output. Use unit suffixes: Byte, Kilobyte,
Megabyte, Gigabyte, Terabyte and Petabyte in order to reduce the
number of digits to three or less using base 2 for sizes.
-k Use 1024-byte (1-Kbyte) blocks, rather than the default. Note
that this overrides the BLOCKSIZE specification from the environ-
ment.
-m Use 1048576-byte (1-Mbyte) blocks rather than the default. Note
that this overrides the BLOCKSIZE specification from the environ-
ment.
por lo tanto, si ejecuta df -H
puede ver números similares a los informes de Finder, pero normalmente (es decir, cuando se invoca df
sin opciones, o como df -b
, df -k
, df -m
, df -g
o df -h
) verás un número basado en la potencia de 2.
En relación con la pregunta original, también noté que hay 13 GB más de espacio en disco. Creo que esto puede significar que los Mavericks vienen con menos hinchazón, o tal vez más cosas comprimidas en el disco en comparación con ML.