上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 61 下一页
摘要: 查看缓存 free -m 清缓存 echo 3 > /proc/sys/vm/drop_caches 清缓存后 #释放物理页缓存 echo 1 > /proc/sys/vm/drop_caches #释放可回收的slab对象,包含inode and dentry echo 2 > /proc/sys 阅读全文
posted @ 2023-09-28 17:39 轻轻的吻 阅读(58) 评论(0) 推荐(0)
摘要: 1.手机打开开发者模式,然后打开USB调试 2.使用USB数据线连接手机和电脑 3.在PC端打开cmd命令窗口,输入adb devices ,可以看到已经连接的设备 4.输入adb tcpip 5555 (设置端口号为5555) 5.断开手机和电脑的连接 adb connect IP 阅读全文
posted @ 2023-09-28 16:00 轻轻的吻 阅读(4444) 评论(0) 推荐(0)
摘要: ethtool -i eth0 dmesg|grep eth0 阅读全文
posted @ 2023-09-28 15:27 轻轻的吻 阅读(150) 评论(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 轻轻的吻 阅读(482) 评论(0) 推荐(0)
摘要: 1、& command1 & command2 & command3 # 三个命令同时执行 用 & 连接的多个符号将同时执行,不管命令是否执行成功 单个的与符号通常可以发现在一个 bash 命令的行尾: sleep 2 & echo mi 其作用是令该命令转到后台执行。对于这样的命令,系统会创建一个 阅读全文
posted @ 2023-09-18 19:58 轻轻的吻 阅读(237) 评论(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 轻轻的吻 阅读(178) 评论(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 轻轻的吻 阅读(137) 评论(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 轻轻的吻 阅读(600) 评论(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 轻轻的吻 阅读(149) 评论(0) 推荐(0)
摘要: ls /sys/module 阅读全文
posted @ 2023-07-08 16:10 轻轻的吻 阅读(38) 评论(0) 推荐(0)
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 61 下一页