Find Disk Write Performance;
dd if=/dev/zero of=/tmp/output bs=16k count=10k >> /root/diskwrite.txt (runs in a crontab)
After a while;
cat diskwrite.txt |grep bytes|awk -F "," '{print $4}'|awk '{print $1}'|awk '{top=top+$NF; print top/NR}'