centos挂载nfs存储和使用dd测试服务器到nfs存储的网络传输速度
1、centos挂载nfs
yum install -y nfs-utils #安装客户端
showmount -e 172.*.*.* #查看共享情况
mkdir -p /tmp/testmount -t nfs 172.*.*.*:/tmp/nfs /tmp/test #用命令 mount 把 NFS的共享目录挂载到本地目录上
2、测速
dh -h #查看挂载情况
umount /tmp/test #卸载
准备一个大文件,如果没有可以
dd if=/dev/zero of=test bs=1M count=1024 生成一个1G的文件
dd if=/root/liu/test of=/root/test/aaa/test
4194304+0 records in
4194304+0 records out
2147483648 bytes (2.1 GB) copied, 15.2435 s, 141 MB/s