How do I determine the block size of an ext3 partition on Linux?
|
feedback
|
Replace /dev/sda1 with the partition you want to check. | |||
|
feedback
|
|
On x86, a filesystem block is just about always 4KiB - the default size - and never larger than the size of a memory page (which is 4KiB). | |||||||||
feedback
|
|
dumpe2fs -h /dev/md2 will output something with: Block size: 4096 Fragment size: 4096 | |||
|
feedback
|
|
fdisk will give you this information. | |||
feedback
|
df -hdu-hfdiskabove 3 command will give size of block in all most all the distro.. | |||||
feedback
|