随笔 - 121  文章 - 1  评论 - 8  阅读 - 20万

随笔分类 -  linux

1 2 下一页
Markdown语法教程
摘要:Markdown语法教程 (Markdown syntax tutorial) for gitee.com 用法1用法2结果 *Italic* _Italic_ Italic **Bold** __Bold__ Bold # Heading 1 Heading 1 Heading 1 ## Head 阅读全文
posted @ 2022-07-05 10:11 listenerln 阅读(40) 评论(0) 推荐(0) 编辑
MT7621 将gpio对应pin设置gpio模式
摘要:文档: MT7621A_Datasheet 查找gpio对应的pin文档: MT7621_ProgrammingGuide_Preliminary_Platform 找到对应pin地址位 将GPIO4 设置为gpio模式根据Datasheet 找到 GPIO4 对应 pin为 I2C 找到I2C设置 阅读全文
posted @ 2022-03-23 11:26 listenerln 阅读(850) 评论(0) 推荐(0) 编辑
linux Makefile 内置宏 #err #warn, 代码注释标记TODO
摘要:1 出错提醒 2 #err aaaaaaaaa 3 类似err 4 #warn aaa 5 6 提示内容, 不断开编译 7 #warning aaaaaaaa 8 9 输出信息,类似可以带VT码带颜色输出 10 #pragma message("\033[41;37m aaaaa \033[0m") 阅读全文
posted @ 2021-11-05 13:40 listenerln 阅读(136) 评论(0) 推荐(0) 编辑
git 签名检查设置
只有注册用户登录后才能阅读该文。
posted @ 2020-02-29 14:39 listenerln 阅读(1) 评论(0) 推荐(0) 编辑
linux ftp 挂载 serv-u
摘要:serv-u 新建用户anonymous 密码空, 用来匿名访问 linux curlftpfs ftp://192.168.1.1 mount/ 挂载到当前mount目录 curlftpfs -o codepage=gbk ftp://username:password@192.168.0.2 / 阅读全文
posted @ 2019-12-21 14:06 listenerln 阅读(806) 评论(0) 推荐(0) 编辑
linux所有版本下载链接
摘要:http://mirrors.ustc.edu.cn/kernel.org/linux/kernel/ 阅读全文
posted @ 2019-04-12 09:09 listenerln 阅读(331) 评论(0) 推荐(0) 编辑
openwrt package Makefile
摘要:ppp 添加ipv6菜单项 Makefile增加菜单 增加子菜单 增加展开菜单 ... 阅读全文
posted @ 2019-03-22 17:47 listenerln 阅读(726) 评论(0) 推荐(0) 编辑
openwrt 中个网络接口协议说明[转]
摘要:openwrt 中个网络接口协议说明 ref: https://blog.csdn.net/u011641885/article/details/46650099 openwrt 中个网络接口协议说明 ref: https://blog.csdn.net/u011641885/article/det 阅读全文
posted @ 2019-03-16 22:31 listenerln 阅读(2359) 评论(0) 推荐(0) 编辑
openwrt Package aircrack-ng is missing dependencies for the following libraries:
摘要:ref: https://my.oschina.net/hevakelcj/blog/411944 阅读全文
posted @ 2019-01-24 13:48 listenerln 阅读(628) 评论(0) 推荐(0) 编辑
linux kernel 从cmdline 提取值
摘要:1 // 从cmdline 提取 rootfsname= 的值到 val_buf 2 char val_buf[64]; 3 #define ROOTFS_CMDLINE "rootfsname=" 4 5 static void __init gluebi_read_cmdline (void) 6... 阅读全文
posted @ 2019-01-19 16:33 listenerln 阅读(2204) 评论(0) 推荐(0) 编辑
Linux C语言中sscanf 的详细用法[转载]
摘要:sscanf() - 从一个字符串中读进与指定格式相符的数据. 说明: sscanf与scanf类似,都是用于输入的,只是后者以屏幕(stdin)为输入源,前者以固定字符串为输入源。其中的format可以是一个或多个 {%[*] [width] [{h | l | I64 | L}]type | ' 阅读全文
posted @ 2018-06-15 10:44 listenerln 阅读(3894) 评论(0) 推荐(0) 编辑
isc-dhcp 自定义option 配置, option 43, option 60
摘要:本文为原创, 转载请注明出处 配置选项对应的指令列表: isc-dhcp-ipv4/dhcp-4.2.4/common/tables.c 私有编号: 1. 定义: # 配置文件有声明的编号 会在接收的时候 替换成类似new_acip1=value 形式 # 声明一个私有编号名字: acip1, 编号 阅读全文
posted @ 2018-05-30 15:08 listenerln 阅读(3781) 评论(0) 推荐(0) 编辑
pf_ring 编译移植
摘要:下载地址: http://sourceforge.net/projects/ntop/files/PF_RING/ 编译模块: cd kernel/ pf_ring.ko 编译libpcapcd userland/libpcap-1.7.4 ./configure --target=mips-ope 阅读全文
posted @ 2018-04-17 09:30 listenerln 阅读(678) 评论(0) 推荐(0) 编辑
linux下CJson使用
摘要:ref: https://blog.csdn.net/taiyang1987912/article/details/49862141 阅读全文
posted @ 2018-04-03 15:14 listenerln 阅读(558) 评论(0) 推荐(0) 编辑
libxml -- 解析 XML 文档
摘要:ref: http://www.360doc.com/content/10/1210/16/4384349_76816020.shtml 参考 XML 介绍:XML 和 DOM libxml 介绍 数据类型 — xmlChar 数据结构 创建 XML 文档 解析 XML 文档 修改 xml 文档 X 阅读全文
posted @ 2018-03-23 16:20 listenerln 阅读(1191) 评论(0) 推荐(0) 编辑
Ubuntu 语言设置
摘要:默认语言 /etc/default/locale 安装的语言 阅读全文
posted @ 2018-01-12 16:38 listenerln 阅读(125) 评论(0) 推荐(0) 编辑

1 2 下一页
< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

点击右上角即可分享
微信分享提示