上一页 1 2 3 4 5 6 7 8 9 10 ··· 58 下一页
摘要: 1.手机打开开发者模式,然后打开USB调试 2.使用USB数据线连接手机和电脑 3.在PC端打开cmd命令窗口,输入adb devices ,可以看到已经连接的设备 4.输入adb tcpip 5555 (设置端口号为5555) 5.断开手机和电脑的连接 adb connect IP 阅读全文
posted @ 2023-09-28 16:00 轻轻的吻 阅读(2395) 评论(0) 推荐(0) 编辑
摘要: ethtool -i eth0 dmesg|grep eth0 阅读全文
posted @ 2023-09-28 15:27 轻轻的吻 阅读(89) 评论(0) 推荐(0) 编辑
摘要: 1、查看路由表表单(main为默认的路由表) cat /data/misc/net/rt_tables 2、清除路由表(table后面加表名代表清除哪个路由表) ip route flush table eth0 3、ConnectivityService服务路径 packages/modules/ 阅读全文
posted @ 2023-09-19 19:31 轻轻的吻 阅读(262) 评论(0) 推荐(0) 编辑
摘要: 1、& command1 & command2 & command3 # 三个命令同时执行 用 & 连接的多个符号将同时执行,不管命令是否执行成功 单个的与符号通常可以发现在一个 bash 命令的行尾: sleep 2 & echo mi 其作用是令该命令转到后台执行。对于这样的命令,系统会创建一个 阅读全文
posted @ 2023-09-18 19:58 轻轻的吻 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 设置网络接口优先级:数字越大,优先级越大 framework/opt/net/ethernet/java/com/android/server/ethernet/EthernetNetworkFactory.java /** * A map of TRANSPORT_* types to Trans 阅读全文
posted @ 2023-09-18 16:38 轻轻的吻 阅读(105) 评论(0) 推荐(0) 编辑
摘要: CONFIG_PPP:使系统支持PPP协议。 CONFIG_PPP_ASYNC:使系统支持PPP协议的异步串行端口模式(关于异步和同步模式有什么不同我就不是很清楚了)。 config PPP_ASYNC tristate "PPP support for async serial ports" de 阅读全文
posted @ 2023-09-07 15:28 轻轻的吻 阅读(57) 评论(0) 推荐(0) 编辑
摘要: 一、安装和使用步骤 1. 手机要有root权限 2. 下载tcpdump 3. adb push c:wherever_you_put cpdump /data/local/tcpdump 如果这一步真机无法push,可以用adb push c:where_you_put cpdump /sdcar 阅读全文
posted @ 2023-08-30 16:16 轻轻的吻 阅读(451) 评论(0) 推荐(0) 编辑
摘要: smblite_lib_typec_port_type_set schedule_delayed_work(&chg->role_reversal_check, msecs_to_jiffies(ROLE_REVERSAL_DELAY_MS)); smblite_lib_typec_role_che 阅读全文
posted @ 2023-07-23 11:13 轻轻的吻 阅读(91) 评论(0) 推荐(0) 编辑
摘要: ls /sys/module 阅读全文
posted @ 2023-07-08 16:10 轻轻的吻 阅读(14) 评论(0) 推荐(0) 编辑
摘要: [TYPEC_ATTACH_DETACH_IRQ] = { .name = "typec-attach-detach", .handler = smblite_typec_attach_detach_irq_handler, .wake = true, }, irqreturn_t smblite_ 阅读全文
posted @ 2023-07-07 17:20 轻轻的吻 阅读(213) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 58 下一页