Ext2: Difference between revisions

Jump to navigation Jump to search
[unchecked revision][unchecked revision]
Content deleted Content added
Line 426: Line 426:
|-
|-
| 0x00002000 || File data is journaled with Ext3
| 0x00002000 || File data is journaled with Ext3
|}


=== Directory Information ===

{| {{Wikitable}}
|-
! Byte Range
! Description
|-
| 0–4 || Inode
|-
| 4-6 || Record Length (Will get you to the next record)
|-
| 7 || File Type
|-
| 8 || Name Length
|-
| 9-X || File name data
|-
|}


==== Filetypes ====

{| {{Wikitable}}
|-
! Description
! Value
|-
|EXT2_FT_UNKNOWN || 0
|-
|EXT2_FT_REG_FILE || 1
|-
|EXT2_FT_DIR || 2
|-
|EXT2_FT_CHRDEV ||3
|-
|EXT2_FT_BLKDEV ||4
|-
|EXT2_FT_FIFO ||5
|-
|EXT2_FT_SOCK ||6
|-
|EXT2_FT_SYMLINK ||7
|-
|EXT2_FT_MAX ||8
|}
|}