摘要: linux增加网卡ip地址 example ip addr add 192.168.5.124/24 dev eth0 label eth0:5 ifconfig eth0:5 up ip addr del 192.168.1.100/24 dev eth0 example ip addr add 阅读全文
posted @ 2025-09-18 12:13 王阳开 阅读(24) 评论(0) 推荐(0)
摘要: 基于QEMU模拟器搭建Builtroot下的QT开发环境https://www.cnblogs.com/arnoldlu/p/17250728.html 阅读全文
posted @ 2025-09-18 12:12 王阳开 阅读(9) 评论(0) 推荐(0)
摘要: shell命令中循环执行操作的命令 reference: for i in $(seq 1 10000); do echo "Iteration $i" && echo "Iteration $i"; done for i in $(seq 1 10000); do cat /sys/class/n 阅读全文
posted @ 2025-09-18 12:10 王阳开 阅读(5) 评论(0) 推荐(0)
摘要: can bus off can bus off; linux系统发生can bus off后,恢复间隔时间是可以配置; can总线上,can报文发送或者接收出错,错误累计超过255次就会触发bus off; can报文出错具体指 can报在总线上的硬件电平信号不满足can协议时序; 发生bus of 阅读全文
posted @ 2025-09-18 12:09 王阳开 阅读(38) 评论(0) 推荐(0)
摘要: trace irqoff cat /sys/kernel/tracing/available_tracers echo irqsoff > /sys/kernel/tracing/current_tracer cat /sys/kernel/tracing/current_tracer echo 1 阅读全文
posted @ 2025-09-18 12:06 王阳开 阅读(16) 评论(0) 推荐(0)
摘要: windosw 配置arp绑定 配置静态arp绑定 netsh interface ipv4 add neighbors "以太网" "192.168.98.233" "aa-bb-cc-dd-ee-01" store=active 阅读全文
posted @ 2025-09-18 12:04 王阳开 阅读(7) 评论(0) 推荐(0)
摘要: vlan https://zhuanlan.zhihu.com/p/385949949 阅读全文
posted @ 2025-09-18 12:03 王阳开 阅读(5) 评论(0) 推荐(0)
摘要: linux proc fs node #include <linux/kernel.h> #include <linux/module.h> #include <linux/proc_fs.h> #include <linux/uaccess.h> #include <linux/seq_file. 阅读全文
posted @ 2025-09-18 12:02 王阳开 阅读(4) 评论(0) 推荐(0)