随笔分类 -  linux

摘要:挂在命令:mount -t nfs -o nolock,vers=3 192.168.1.19:/home/book/nfs_rootfs /mnt ERROR: mount: mounting 192.168.1.19:/home/book/nfs_rootfs on /mnt failed: N 阅读全文
posted @ 2023-05-31 00:20 嵌入式小白— 阅读(434) 评论(0) 推荐(0) 编辑
摘要:文章引用:https://blog.csdn.net/longwang155069/article/details/105812097 为什么会引入IRQ_domain? 早期中断数量较少,所以可以分布在一个interrupt_controler,中断映射也很简单,每个中断号对应一个interrup 阅读全文
posted @ 2023-04-19 16:04 嵌入式小白— 阅读(352) 评论(0) 推荐(0) 编辑
摘要:引用:https://www.cnblogs.com/arnoldlu/p/11630979.html 1. gcc栈保护机制stack-protector简介 gcc提供了栈保护机制stack-protector。关于stack-protector包含三个选项,分别是stack-protector 阅读全文
posted @ 2023-04-07 10:07 嵌入式小白— 阅读(499) 评论(0) 推荐(0) 编辑
摘要:引用:https://blog.csdn.net/agave7/article/details/119875023 虽然问题不一样,但是分析问题的方法是一致的。 Unable to handle kernel NULL pointer dereference at virtual address 分 阅读全文
posted @ 2023-04-06 16:14 嵌入式小白— 阅读(1076) 评论(0) 推荐(0) 编辑
摘要:今天主要来记录一下makefile的学习。 makefile 规则: 一个工程中的源文件不计数,其按类型、功能、模块分别放在若干个文件夹中,makefile定义了一系列的规则来指定,哪些文件须要先编译,哪些文件须要后编译,哪些文件须要又一次编译,甚至于进行更复杂的功能操作,由于makefile就像一 阅读全文
posted @ 2023-03-26 15:47 嵌入式小白— 阅读(41) 评论(0) 推荐(0) 编辑
摘要:引用: https://blog.csdn.net/qq_38111015/article/details/84885809 这里简单记录下基本的git 上库操作以及查询指令,详细看上方网站。 git init // 初始化 在工作路径上创建主分支 git clone 地址 // 克隆远程仓库 gi 阅读全文
posted @ 2023-03-25 18:51 嵌入式小白— 阅读(137) 评论(0) 推荐(0) 编辑