Se você estiver usando o ext3, é bem possível que apenas os metadados sejam registrados no diário, esse é o comportamento padrão do ext3. Se você verificar a página de manual para shred :
In the case of ext3 file systems, the above disclaimer applies (and shred is thus of limited effectiveness) only in data=journal mode, which journals file data in addition to just metadata. In both the data=ordered (default) and data=writeback modes, shred works as usual. Ext3 journaling modes can be changed by adding the data=something option to the mount options for a particular file system in the /etc/fstab file, as documented in the mount man page (man mount).
E então, você verifica o seu / proc / mounts para ver quais são os flags de montagem para seus sistemas de arquivos montados.
Um exemplo:
$ grep -i data /proc/mounts
/dev/root / ext3 rw,data=ordered 0 0
/dev/sda4 /stash ext3 rw,data=ordered 0 0
Em ambos os sistemas de arquivos / stash e / , o shred deve fazer um trabalho adequado de excluir dados com segurança.