U盘读写速度步骤
前提
OTG线,被测试手机必须是USB3.0的OTG线
插入usb线,使用adb root
adb remount
adb tcpip 5555
adb connect 手机的IP
adb shell 来进入wifi shell
读取速度
首先确认U盘mount的
使用mount命令得出如下外置磁盘的硬件mount文件为/dev/block/vold/public:8,97
/dev/block/vold/public:8,97 on /mnt/media_rw/7C31-16E3 type vfat (rw,dirsync,nosuid,nodev,noexec,relatime,uid=1023,gid=1023,fmask=0007,dmask=0007,allow_utime=0020,codepage=437,iocharset=iso8859-1,shortname=mixed,utf8,errors=remount-ro)
读取速度命令:
1GB文件的读取速度,只能测试一次,第二次会非常快
dd if=/dev/block/vold/public:8,97 of=/dev/null bs=1024k count=1000
写入速度:
dd if=/dev/zero of=/mnt/media_rw/7C31-16E3/testdata bs=1024k count=1000
会得到如下类似的消息:
1000+0 records in
1000+0 records out
1048576000 bytes transferred in 40.304 secs (26016673 bytes/sec)
另外文件读取速度测试可以用
start_tm=`date +%s`
cp /sdcard/VID_20170809_162113.mp4 /mnt/media_rw/7C31-16E3/
end_tm=`date +%s`
echo `expr $end_tm - $start_tm `
rm /mnt/media_rw/7C31-16E3/VID_20170809_162113.mp4
VID_20170809_162113.mp4是一个大文件
保存成xxx.sh到手机/sdcard里
chmod +x xxx.sh
sh xxx.sh可以得出所用的时间