上一页 1 ··· 78 79 80 81 82 83 84 85 86 ··· 95 下一页
摘要: 课程试听地址:https://forgotfun.org/j/openwrt-trail-lesson.html 跟着佐大学OpenWrt开发系列入门培训班-试听课 -> 跟着佐大学OpenWrt开发入门培训班课时05-如何编译OpenWrt?.mp4 视频讲解时间 24:40 目录结构: bin 阅读全文
posted @ 2022-03-13 11:47 悟透 阅读(539) 评论(0) 推荐(0)
摘要: 操作 ## 先cd到你的openWrt目录 cd ~/openWrt/ ## 下载依赖 $ make download V=s 或 make -j8 download V=s 下载dl库(国内请尽量全局k科 x学 上网) 参考: https://www.cnblogs.com/sbkill1r/p/ 阅读全文
posted @ 2022-03-12 22:25 悟透 阅读(720) 评论(0) 推荐(0)
摘要: 编译openWrt时,在用./scripts/feeds update -a时报错,是因为提供的安装编译环境里少了一个程序 安装编译环境: # sudo apt-get install gnutls-bin 阅读全文
posted @ 2022-03-12 22:14 悟透 阅读(306) 评论(0) 推荐(0)
摘要: 在国内编译OpenWrt很困难,有很多包被墙无法下载。 本博客分享提供了 dl 目录镜像的下载链接: dl.zip + dl更新补丁包.zip(“dl.zip” 和 “dl_日期.zip” 文件全都要下载,大小:约4.01GB) 阿里云盘:https://www.aliyundrive.com/s/ 阅读全文
posted @ 2022-03-12 21:36 悟透 阅读(1977) 评论(0) 推荐(0)
摘要: Linux 6.x # ifconfig -a |grep "inet 192" | cut -d ' ' -f 2 | awk -F'/' '{print $1}' Linux 7.x # ip a |grep "inet 192" |cut -d ' ' -f 6 | awk -F'/' '{p 阅读全文
posted @ 2022-02-24 22:14 悟透 阅读(556) 评论(0) 推荐(0)
摘要: F80-100HCP网上找了好久,终于在芯片助手里找到这个参数说明 EN25F80 - 100 H I P | | | | |__PACKAGING CONTENT | | | | P = RoHS compliant | | | | | | | |______TEMPERATURE RANGE | 阅读全文
posted @ 2022-02-24 22:02 悟透 阅读(843) 评论(0) 推荐(0)
摘要: 使用tr命令替换字符。 命令中,将所有,小写‘t’ 替换成 大写‘T’ [root@node2 test]# touch install-test.txt [root@node2 test]# touch install-test1.txt [root@node2 test]# [root@node 阅读全文
posted @ 2022-02-16 06:50 悟透 阅读(478) 评论(0) 推荐(0)
摘要: 编程语言的参数: argc表示参数的个数, argv存放着具体的参数, argv[0]指向程序本身, argv[1]指向第一个参数, argv[2]指向第二个参数, ..., argv[argc]存放0 表示结束。 来源: https://mp.weixin.qq.com/s/oRtXzf1HsHs 阅读全文
posted @ 2022-02-10 20:27 悟透 阅读(190) 评论(0) 推荐(0)
摘要: Python源码: def wx_path(): ## 获取当前用户名 users = os.path.expandvars('$HOMEPATH') ## 找到3ebffe94.ini配置文件 f = open(r'C:' + users + '\\AppData\\Roaming\\Tencen 阅读全文
posted @ 2022-02-06 11:47 悟透 阅读(718) 评论(0) 推荐(0)
摘要: r:表示不转义字符,比如遇到"\n" "\t" 原样输出,是不是输出回车和Tab制表符 f:表示识别字符串里的变量或“\n”这写特殊字符。 阅读全文
posted @ 2022-02-02 17:30 悟透 阅读(1338) 评论(0) 推荐(0)
上一页 1 ··· 78 79 80 81 82 83 84 85 86 ··· 95 下一页