-
Notifications
You must be signed in to change notification settings - Fork 13
linux_013
Zhang Jc edited this page Nov 2, 2017
·
3 revisions
一个物理磁盘一般一次最小的读写单元是512 Bytes(扇区)。这也是为什么dd
命令默认ibs=512(最大的读入字节数):
dd if=/dev/sda1 of=/dev/null count=1
记录了1+0 的读入
记录了1+0 的写出
512字节(512 B)已复制,0.000632521 秒,809 kB/秒
文件系统也有最小的读写单元,比如ext4默认为4kB,这个可以简单的测出来:
zjc@/SSD$ df .
文件系统 1K-块 已用 可用 已用% 挂载点
/dev/sdb1 206292968 188401120 7389704 97% /SSD
zjc@/SSD$ echo hello > hello
zjc@/SSD$ df .
文件系统 1K-块 已用 可用 已用% 挂载点
/dev/sdb1 206292968 188401124 7389700 97% /SSD
我只写了很少的内容(hello)到一个文件中,整个文件系统的可用空间便减少了4kB。
Linux Page Cache的页大小为4kB
Also the kernel has its own block size. This is relevant e.g. for vmstat. In the vmstat man page you find the statement All linux blocks are currently 1024 bytes. So, again another block size when you work with vmstat. This is the block size the Linux kernel uses internally for caching and buffering. It is the most prominent of all block sizes.
http://wiki.linuxquestions.org/wiki/Block_devices_and_block_sizes
本作品采用知识共享署名-非商业性使用-相同方式共享 4.0 国际许可协议进行许可。
Wiki: wiki.jcix.top ~聚沙成塔~ Blog: blog.jcix.top