查看linux文件系统块大小的实现方法
在linux系统上,可以用命令tune2fs,测试如下
[root@localhosttest10g]#tune2fs-help tune2fs1.35(28-Feb-2004) tune2fs:invalidoption--h Usage:tune2fs[-cmax-mounts-count][-eerrors-behavior][-ggroup] [-iinterval[d|m|w]][-j][-Jjournal-options] [-l][-ssparse-flag][-mreserved-blocks-percent] [-o[^]mount-options[,...]][-rreserved-blocks-count] [-uuser][-Cmount-count][-Lvolume-label][-Mlast-mounted-dir] [-O[^]feature[,...]][-Tlast-check-time][-UUUID]device [root@localhosttest10g]#df Filesystem1K-blocksUsedAvailableUse%Mountedon /dev/sda28776068757650475376491%/ /dev/sda1497829163034558244%/boot none51730005173000%/dev/shm /dev/sda510356609645288660010%/tmp [root@localhosttest10g]#tune2fs-l/dev/sda1|grepBlock Blockcount:514048 Blocksize:1024 Blockspergroup:8192 [root@localhosttest10g]#tune2fs-l/dev/sda2|grepBlock Blockcount:2229018 Blocksize:4096 Blockspergroup:32768
上面Blocksize即为块大小。
在WINDOWS系统上,可以用命令fsutil来查看,测试如下:
C:\DocumentsandSettings\ct2>fsutil--help
--help是无效参数。
----支持的命令----
behavior控制文件系统行为 dirty管理卷的被损坏的位数 file文件特定命令 fsinfo文件系统信息 hardlink硬链接管理 objectid对象ID管理 quota配额管理 reparsepoint重分析点管理 sparse稀疏文件控制 usnUSN管理 volume卷管理 C:\DocumentsandSettings\ct2>fsutilfsinfontfsinfoc: NTFS卷序列号:0x72ccb5f2ccb5b129 版本:3.1 区数量:0x0000000008ff8235 簇总数:0x00000000011ff046 可用簇:0x0000000000547b73 保留总数:0x0000000000000050 每个扇区字节数:512 每个簇字节数:4096 每个FileRecord段的字节数:1024 每个FileRecord段的簇数:0 Mft有效数据长度:0x0000000009cac000 Mft起始Lcn:0x00000000000c4df6 Mft2起始Lcn:0x00000000008ff823 Mft区域起始:0x0000000001067920 Mft区域结尾:0x000000000108ce60
上面簇字节数既为块大小。
注:第二扩展文件系统(secondExtendedFilesystem,Ext2)。Ext3(thirdExtendedFilesystem)
manfs ext2isthehighperformancediskfilesystemusedbyLinuxforfixed disksaswellasremovablemedia.Thesecondextended filesystemwasdesignedasanextensionoftheextendedfile system(ext).ext2offersthebestperformance(intermsof speedandCPUusage)ofthefilesystemssupportedunderLinux. ext3isajournalingversionoftheext2filesystem.Itiseasyto switchbackandforthbetweenext2andext3. ext3isajournalingversionoftheext2filesystem.ext3offersthe mostcompletesetofjournalingoptionsavailableamong journalingfilesystems.
以上就是小编为大家带来的查看linux文件系统块大小的实现方法全部内容了,希望大家多多支持毛票票~