Qual é a unidade da saída de df -k?

4

Qual é a unidade para Used e Available ? E o que significa 1K-blocks ? Isso significa que o tamanho está em kB?

Comando:

df -k | head -2

Saída:

Filesystem           1K-blocks      Used Available Use% Mounted on
/dev/sda7              9920592   1054440   8354084  12% /
    
por Abhishek Simon 21.06.2012 / 10:44

2 respostas

3

Em man df :

Display values are in units of the first available SIZE from --block-size, and the DF_BLOCK_SIZE, BLOCK_SIZE and BLOCKSIZE environment variables. Otherwise, units default to 1024 bytes (or 512 if POSIXLY_CORRECT is set).

SIZE may be (or may be an integer optionally followed by) one of following: KB 1000, K 1024, MB 1000*1000, M 1024*1024, and so on for G, T, P, E, Z, Y.

A opção -k é igual a --block-size=1K , o que significa que os números estão em múltiplos de 1024 bytes.

    
por 21.06.2012 / 10:54
3

Sim, você está certo, como diz o documento:

 -k      Use 1024-byte (1-Kbyte) blocks, rather than the default.  Note
         that this overrides the BLOCKSIZE specification from the environ-
         ment.
    
por 21.06.2012 / 10:55

Tags