In Ext4 è possibile farlo con:
sudo debugfs -R stat /pippo/Scrivania/test.txt /dev/sda3
Ed infatti, creando un file di test e dando quel comando, l’output è:
Inode: 6029808 Type: regular Mode: 0644 Flags: 0x80000 Generation: 3337172570 Version: 0x00000000:00000001 User: 1000 Group: 1000 Size: 0 File ACL: 0 Directory ACL: 0 Links: 1 Blockcount: 0 Fragment: Address: 0 Number: 0 Size: 0 ctime: 0x4e47fa9b:c3e1fd20 -- Sun Aug 14 18:40:59 2011 atime: 0x4e47fa9b:c3e1fd20 -- Sun Aug 14 18:40:59 2011 mtime: 0x4e47fa9b:c3e1fd20 -- Sun Aug 14 18:40:59 2011 crtime: 0x4e47fa9b:c3e1fd20 -- Sun Aug 14 18:40:59 2011 Size of extra inode fields: 28 EXTENTS: (END)
dove la quartultima riga contiene il dato che ci interessa, cioè crtime
(creation time).
Gli altri sono:
ctime
(change time): ora del cambiamento, che può includere anche solo una modifica ai permessi senza apertura del file;atime
(access time): ora di accesso al file;mtime
(modification time): ora di modifica del file.
Schematicamente, ecco cosa avviene (la x
indica un cambio del timestamp):
ctime | atime | mtime | crtime | |
Creazione file | x | x | x | x |
Apertura file | x | |||
Modifica file | x | x | x | |
Cambio permessi | x |