linux - 如何通过阅读man page来学习linux系统编程?

标签 linux systems-programming

我阅读了 man creatman openman close 并且我发现手册页是学习 Linux 的最佳来源。

但是我需要一个阅读 map ,我想知道一个手册页列表,其中提供了高级概述,然后是深入细节的小节。

请指教。

最佳答案

因此 man -k intro 给出了一个包含以下内容的列表:

intro (1)            - introduction to user commands
intro (2)            - introduction to system calls
intro (3)            - introduction to library functions
intro (4)            - introduction to special files
intro (5)            - introduction to file formats and filesystems
intro (6)            - introduction to games
intro (7)            - introduction to overview and miscellany section
intro (8)            - introduction to administration and privileged commands

每个介绍页都可以通过 man intro.N 阅读(N 为 1-8),这些介绍页看起来就像 man 文档中章节的开头。

关于linux - 如何通过阅读man page来学习linux系统编程?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53913119/

相关文章:

c - 如何制作守护进程

c++ - 如何从 C++ 程序修改键盘中断(在 Windows XP 下)?

C 系统程序 - 复制期间的读/写问题

linux - 设置 linux 服务器以使用 Exchange 服务器作为中继

Linux Stack - main() 为什么没有将 ebp 压入堆栈

Linux 中的 Java Tesseract 错误导致 JVM 中出现 SIGSEGV

c - 在 int 中存储十六进制数

c - 函数未正确返回 char : error during compile

c - 如何在文件末尾自动追加换行符

linux - Linux 上串行设备和 USB 设备的区别?