I.MX6 Android netperf
/*****************************************************************************
* I.MX6 Android netperf
* 说明:
* 之前移植iperf3网络测试工具不成功,本来想再移植一个iperf2来试一下,但是
* 在检查Android源码系统的时候不小心看到netperf文件夹,查了点资料,貌似可以实
* 现iperf的功能,于是又省了点事。
*
* 2016-4-18 深圳 南山平山村 曾剑锋
****************************************************************************/ 一、参考文章:
. WLAN Throughput Test
http://processors.wiki.ti.com/index.php/WLAN_Throughput_Test
. netperf 与网络性能测量
https://www.ibm.com/developerworks/cn/linux/l-netperf/
. Android 移植iperf
http://blog.chinaunix.net/uid-9185047-id-470236.html
. Android 移植之 iperf
http://blog.csdn.net/linweig/article/details/5640689 二、Android自带netperf网络测试工具:
zengjf@zengjf:~/myandroid/external$ ls netperf/
Android.mk netcpu_ntperf.c netperf_version.h nettest_sdp.c
CleanSpec.mk netcpu_osx.c netserver.c nettest_sdp.h
config.h netcpu_perfstat.c netsh.c nettest_unix.c
hist.h netcpu_procstat.c netsh.h nettest_unix.h
MODULE_LICENSE_HP netcpu_pstat.c nettest_bsd.c nettest_xti.c
netcpu.h netcpu_pstatnew.c nettest_bsd.h nettest_xti.h
netcpu_kstat10.c netcpu_sysctl.c nettest_dlpi.c NOTICE
netcpu_kstat.c netlib.c nettest_dlpi.h
netcpu_looper.c netlib.h nettest_sctp.c
netcpu_none.c netperf.c nettest_sctp.h
zengjf@zengjf:~/myandroid/external$ 三、查看系统文件:
zengjf@zengjf:~/myandroid/out/target/product/sabresd_6dq/system$ ls xbin/net*
xbin/netperf xbin/netserver
zengjf@zengjf:~/myandroid/out/target/product/sabresd_6dq/system$
I.MX6 Android netperf的更多相关文章
- I.MX6 Android 5.1 快速合成系统
/**************************************************************************** * I.MX6 Android 5.1 快速 ...
- I.MX6 Android backlight modify by C demo
/************************************************************************** * I.MX6 Android backligh ...
- I.MX6 Android U-blox miniPCI 4G porting
/************************************************************************** * I.MX6 Android U-blox m ...
- I.MX6 android 设置 默认 动态桌面
/************************************************************************ * I.MX6 android 设置 默认 动态桌面 ...
- I.MX6 android 获取framebuffer信息
/******************************************************************************** * I.MX6 android 获取 ...
- I.MX6 Android Linux shell MMPF0100 i2c 设置数据
#!/system/bin/busybox ash # # I.MX6 Android Linux shell MMPF0100 i2c 设置数据 # 说明: # 本文主要记录通过shell脚本来设置 ...
- I.MX6 Android iperf3 porting failed
/***************************************************************************** * I.MX6 Android iperf ...
- I.MX6 Android Linux shell MMPF0100 i2c 获取数据
#!/system/bin/busybox ash # # I.MX6 Android Linux shell MMPF0100 i2c 获取数据 # 说明: # 本文主要记录通过shell脚本来获取 ...
- I.MX6 Android i2c-tools porting
/************************************************************************** * I.MX6 Android i2c-tool ...
随机推荐
- shell 学习基地
http://blog.csdn.net/column/details/shell-daily-study.html?&page=2
- 【转载】Spring中DispatcherServlet与ContextLoaderListener的区别
昨天在写springmvc的时候,在web.xml中配置了DispatcherServlet,如下: <servlet> <servlet-name>DispatcherSer ...
- iframe嵌入其他网站,如何自适应高度
终于有一周时间,工作不那么忙了,腾出手来总结下工作过程中学到的知识. 每天遇到新问题,解决新问题,但是却很少有时间去仔细研究下,或者总结下.攒的多了,就得从头捋一遍. 说下iframe自适应高度: 搜 ...
- unity3d旋转摄像机脚本
void Update () { )) { if (axes == RotationAxes.MouseXAndY) { // Read the mouse input axis rotationX ...
- Relevance Between Variable Declaration and Definition in C++
A declaration makes a name known to a programm. A definition creates the assocatied entity. A variab ...
- PowerDesigner 逆向工程 从SQL文件转换成PDM 从PDM转成CDM
从SQL文件逆向工程到PDM: ①选择file -> Reverse Engineer - > Database ②在General选项卡中选择MySQL数据库,点击确定. ③using ...
- wireshark: there are no interfaces on which a capture can be done
权限问题,简单的直接sudo就行. 更安全的做法是: # chmod 4755 /usr/bin/dumpcap dumpcap的所在目录可用whereis命令查看.
- QAQ数论模板笔记√
#include <cstdio> using namespace std; long long gcd(long long a, long long b) { // (a, b) ret ...
- tomcat源码导入eclipse
1. 获取源代码 方式一:从官网http://tomcat.apache.org/download-70.cgi 直接下载,官网提供了Binary 和 Source Code两种下载方式,要研究tom ...
- Sina App Engine(SAE)入门教程(8)- SaeFetchurl使用
fetchurl是什么? FetchURL是SAE为开发者提供的分布式网页抓取服务,用来同步的抓取http页面,FetchURL针对国内的网络的做了优化,内部有调度系统,尽可能保证用户快速的抓取到目标 ...