ucloud
系统盘
本地硬盘
[root@x ~]# dd if=/dev/zero bs=1024 count=1000000 of=/data/1Gb.file
1000000+0 records in
1000000+0 records out
1024000000 bytes (1.0 GB) copied, 17.5858 s, 58.2 MB/s
[root@x ~]#
[root@x ~]# dd if=/data/1Gb.file bs=64k | dd of=/dev/null
15625+0 records in
15625+0 records out
1024000000 bytes (1.0 GB) copied, 2.09509 s, 489 MB/s
2000000+0 records in
2000000+0 records out
1024000000 bytes (1.0 GB) copied, 2.09642 s, 488 MB/s
云硬盘
[root@x ~]# dd if=/dev/zero bs=1024 count=1000000 of=/data1/1Gb.file
1000000+0 records in
1000000+0 records out
1024000000 bytes (1.0 GB) copied, 71.7384 s, 14.3 MB/s
[root@x ~]# dd if=/data1/1Gb.file bs=64k | dd of=/dev/null
15625+0 records in
15625+0 records out
1024000000 bytes (1.0 GB) copied, 4.48314 s, 228 MB/s
2000000+0 records in
2000000+0 records out
1024000000 bytes (1.0 GB) copied, 4.48343 s, 228 MB/s
金山云
系统盘
[root@vm ~]# dd if=/dev/zero bs=1024 count=1000000 of=/root/1Gb.file
记录了1000000+0 的读入
记录了1000000+0 的写出
1024000000字节(1.0 GB)已复制,5.70175 秒,180 MB/秒
[root@vm ~]# dd if=/root/1Gb.file bs=64k | dd of=/dev/null
记录了15625+0 的读入
记录了15625+0 的写出
1024000000字节(1.0 GB)已复制,15.5423 秒,65.9 MB/秒
记录了2000000+0 的读入
记录了2000000+0 的写出
1024000000字节(1.0 GB)已复制,15.5422 秒,65.9 MB/秒
云硬盘
[root@vm ~]# dd if=/dev/zero bs=1024 count=1000000 of=/mnt/1Gb.file
记录了1000000+0 的读入
记录了1000000+0 的写出
1024000000字节(1.0 GB)已复制,4.87961 秒,210 MB/秒
[root@vm ~]# dd if=/mnt/1Gb.file bs=64k | dd of=/dev/null
记录了15625+0 的读入
记录了15625+0 的写出
1024000000字节(1.0 GB)已复制,18.1828 秒,56.3 MB/秒
记录了2000000+0 的读入
记录了2000000+0 的写出
1024000000字节(1.0 GB)已复制,18.1831 秒,56.3 MB/秒
腾讯云
云硬盘
[root@VM_27_96_centos ~]# dd if=/dev/zero bs=1024 count=1000000 of=/data/1Gb.file
记录了1000000+0 的读入
记录了1000000+0 的写出
1024000000字节(1.0 GB)已复制,28.7398 秒,35.6 MB/秒
[root@VM_27_96_centos ~]# dd if=/data/1Gb.file bs=64k | dd of=/dev/null
记录了15625+0 的读入
记录了15625+0 的写出
1024000000字节(1.0 GB)已复制,86.6817 秒,11.8 MB/秒
记录了2000000+0 的读入
记录了2000000+0 的写出
1024000000字节(1.0 GB)已复制,86.7025 秒,11.8 MB/
阿里云
系统盘 免费赠送(Linux送20GB,Windows送40GB)
[root@test ~]# dd if=/dev/zero bs=1024 count=1000000 of=/root/1Gb.file
1000000+0 records in
1000000+0 records out
1024000000 bytes (1.0 GB) copied, 27.2877 s, 37.5 MB/s
[root@test ~]# dd if=/root/1Gb.file bs=64k | dd of=/dev/null
2000000+0 records in
2000000+0 records out
1024000000 bytes (1.0 GB) copied, 47.7493 s, 21.4 MB/s
15625+0 records in
15625+0 records out
1024000000 bytes (1.0 GB) copied, 47.7489 s, 21.4 MB/s
数据盘 不支持卸载,也不支持扩容
[root@test ~]# dd if=/dev/zero bs=1024 count=1000000 of=/opt/1Gb.file
1000000+0 records in
1000000+0 records out
1024000000 bytes (1.0 GB) copied, 25.5092 s, 40.1 MB/s
[root@test ~]# dd if=/opt/1Gb.file bs=64k | dd of=/dev/null
2000000+0 records in
2000000+0 records out
1024000000 bytes (1.0 GB) copied, 46.4193 s, 22.1 MB/s
15625+0 records in
15625+0 records out
1024000000 bytes (1.0 GB) copied, 46.4191 s, 22.1 MB/s
speedycloud 华东机房
系统盘 20G-400G可选
[root@i-x ~]# dd if=/dev/zero bs=1024 count=1000000 of=/root/1Gb.file
记录了1000000+0 的读入
记录了1000000+0 的写出
1024000000字节(1.0 GB)已复制,20.1127 秒,50.9 MB/秒
[root@i-x ~]# dd if=/root/1Gb.file bs=64k | dd of=/dev/null
记录了15625+0 的读入
记录了15625+0 的写出
1024000000字节(1.0 GB)已复制,5.63562 秒,182 MB/秒
记录了2000000+0 的读入
记录了2000000+0 的写出
1024000000字节(1.0 GB)已复制,5.64268 秒,181 MB/秒
云硬盘 支持卸载,不能用 mkfs -t ext4 -c /dev/vdb 格式化,否则会特别慢,只能用mkfs.ext4 /dev/vdb
[root@i ~]# dd if=/dev/zero bs=1024 count=1000000 of=/data/1Gb.file
记录了1000000+0 的读入
记录了1000000+0 的写出
1024000000字节(1.0 GB)已复制,18.8953 秒,54.2 MB/秒
[root@i ~]# dd if=/data/1Gb.file bs=64k | dd of=/dev/null
记录了15625+0 的读入
记录了15625+0 的写出
1024000000字节(1.0 GB)已复制记录了2000000+0 的读入
记录了2000000+0 的写出
1024000000字节(1.0 GB)已复制,15.9638 秒,64.1 MB/秒
,15.9643 秒,64.1 MB/秒