mke2fs.conf 782 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. [defaults]
  2. base_features = sparse_super,large_file,filetype,resize_inode,dir_index,ext_attr
  3. default_mntopts = acl,user_xattr
  4. enable_periodic_fsck = 0
  5. blocksize = 4096
  6. inode_size = 256
  7. inode_ratio = 16384
  8. [fs_types]
  9. ext3 = {
  10. features = has_journal
  11. }
  12. ext4 = {
  13. features = has_journal,extent,huge_file,flex_bg,metadata_csum,64bit,dir_nlink,extra_isize
  14. }
  15. small = {
  16. blocksize = 1024
  17. inode_ratio = 4096
  18. }
  19. floppy = {
  20. blocksize = 1024
  21. inode_ratio = 8192
  22. }
  23. big = {
  24. inode_ratio = 32768
  25. }
  26. huge = {
  27. inode_ratio = 65536
  28. }
  29. news = {
  30. inode_ratio = 4096
  31. }
  32. largefile = {
  33. inode_ratio = 1048576
  34. blocksize = -1
  35. }
  36. largefile4 = {
  37. inode_ratio = 4194304
  38. blocksize = -1
  39. }
  40. hurd = {
  41. blocksize = 4096
  42. inode_size = 128
  43. warn_y2038_dates = 0
  44. }