> For the complete documentation index, see [llms.txt](https://richardweiyang-2.gitbook.io/kernel-exploring/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://richardweiyang-2.gitbook.io/kernel-exploring/00-reference.md).

# Good To Read

有很多值得一看的材料，对理解内核和社区给了我很大的帮助。

其中非常重要的一个来源就是[lwn](https://lwn.net/Kernel/Index/)

在这里我列一些，一方面是可以以后查找，另一方面是后续研究学习的方向。

* [设计理念](https://lwn.net/Kernel/Index/#Development_model-Patterns)
* [内核开发者书单](https://lwn.net/Kernel/Index/#Kernel_Hackers_Bookshelf)
* [git](https://lwn.net/Kernel/Index/#Development_tools-Git)
* [调试](https://lwn.net/Kernel/Index/#Development_tools-Kernel_debugging)

还有些可以整理成专题的：

[内存相关](/kernel-exploring/00-reference/01-mm.md)

PS: 这个lwn kernel index页面做的不太友好，找专题不一定能看清楚。写了个破脚本把主题先搂出来一遍。不是很准，凑合可以看。

```
wget --no-check-certificate https://lwn.net/Kernel/Index/
grep "href=\"#" index.html | grep "name=" | grep -Po 'href="\K[^"]*' > kernel_index
awk -F "-" '{print $1}' kernel_index | uniq > kernel_index.first
```

这样可以筛出来一级标题，虽然也挺多的。。。

忘了还有一个重量级的宝库[内核自带文档](/kernel-exploring/00-reference/03-kernel_doc.md)。


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://richardweiyang-2.gitbook.io/kernel-exploring/00-reference.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
