【Ubuntu】ハードディスクの読み書き速度テスト
1820 ワード
【Ubuntu】ハードディスクの読み書き速度テスト
# time
# dd
# bs ( )
# count
# if=/dev/zeor , IO( )
# of=/home/linduo/Work/Test.file ( 1 G )
time dd if=/dev/zero bs=1024 count=1000000 of=/home/linduo/Work/Test.file
#
1000000+0
1000000+0
1024000000 bytes (1.0 GB, 977 MiB) copied, 7.685 s, 133 MB/s
real 0m7.795s
user 0m0.068s
sys 0m1.360s
# of=/dev/null , IO( )
# of=/home/linduo/Work/Test.file ( 1 G )
dd if=/home/linduo/Work/Test.file bs=1024k |dd of=/dev/null
#
976+1
976+1
2000000+0
2000000+0
1024000000 bytes (1.0 GB, 977 MiB) copied, 1.09809 s, 933 MB/s
1024000000 bytes (1.0 GB, 977 MiB) copied, 1.09806 s, 933 MB/s