系统相关
首页 > 系统相关> > linux – 磁盘吞吐量 – 使用dd的新文件与现有文件

linux – 磁盘吞吐量 – 使用dd的新文件与现有文件

作者:互联网

我想使用以下命令测量我的磁盘吞吐量:

dd if=/dev/zero of=/mydir/junkfile bs=4k count=125000

如果垃圾文件存在,我的磁盘吞吐量比不存在垃圾文件时小6倍.我重复了很多次,结果仍然存在.谁知道为什么?

谢谢,

阿米尔.

解决方法:

In order to minimize disk caching, you need to copy an amount
significantly larger than the amount of memory in your system. 2X the
amount of RAM in your server is a useful amount.

http://www.westnet.com/~gsmith/content/postgresql/pg-disktesting.htm

标签:shell,linux,hard-drive,dd,disk
来源: https://codeday.me/bug/20190630/1333541.html