root@raspberry-pi:/etc# dd if=/dev/zero of=/nfsdir/test.dd bs=1M count=1000
1000+0 records in
1000+0 records out
1048576000 bytes (1.0 GB) copied, 156.472 s, 6.7 MB/s
root@raspberry-pi:/etc# dd of=/dev/zero if=/nfsdir/test.dd bs=1M count=1000
1000+0 records in
1000+0 records out
1048576000 bytes (1.0 GB) copied, 104.795 s, 10.0 MB/s
---------------
通过nfs做了一个基本的测试,看起来跑满100M应该问题不大。
通过网络给网络上的共享硬盘写数据的速度为6.7MB/s
通过网络读取网络上的共享硬盘的文件速度为10.0MB/s |