我现在看到一个kernel-parameters.txt
首先使用此命令在终端中打开的教程:
cd Documentation/
进而 :
view kernel-parameters.txt
教程发行版是 CentOS,但我使用的是 Ubuntu。当我尝试将目录更改为文档时,我收到错误:
没有这样的文件或目录
我如何查看内核参数 txt 文件?它实际上在哪里?
答案1
文件 Documentation/kernel-parameters.txt 位于 Linux 源代码存储库中,例如,克隆主 Linux git 存储库:
git clone git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux
cd linux
less Documentation/kernel-parameters.txt
或者,可以通过 git repo 中的 URL 查看:https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/tree/Documentation/kernel-parameters.txt
请注意,这适用于最新的上游内核,要查看不同 Ubuntu Linux 内核的相同文件,需要在 Ubuntu gitweb 上查看它们,例如 Xenial:http://kernel.ubuntu.com/git/ubuntu/ubuntu-xenial.git/tree/Documentation/kernel-parameters.txt