Um dos exercícios que tenho que fazer é mostrar a aparência da fragmentação interna em um sistema de arquivos calculando em bytes o tamanho do espaço armazenado por um arquivo regular não vazio, mas não usado para armazenar os dados. Foi o que eu fiz:
[~]$ ls -l /etc/gshadow
----------. 1 root root 804 03-18 22:47 /etc/gshadow
[~]$ stat -c %b /etc/gshadow
8
[~]$ stat -c %B /etc/gshadow
512
[~]$ stat -c %s /etc/gshadow
804
[~]$ touch file
[~]$ bc file
bc 1.06.95
Copyright 1991-1994, 1997, 1998, 2000, 2004, 2006 Free Software Foundation, Inc.
This is free software with ABSOLUTELY NO WARRANTY.
For details type 'warranty'.
8*512-804
3292
Tags stat bc filesystems