Linux – How to Determine Block Size of an ext3 Partition

ext3filesystemslinuxunix

How do I determine the block size of an ext3 partition on Linux?

Best Answer

# tune2fs -l /dev/sda1 | grep -i 'block size'
Block size:               1024

Replace /dev/sda1 with the partition you want to check.