Kernel parameters (简体中文)

From ArchWiki
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Tango-preferences-desktop-locale.png本文或本节需要翻译。要贡献翻译,请访问简体中文翻译团队Tango-preferences-desktop-locale.png

附注: 部分内容未翻译(在 Talk:Kernel parameters (简体中文)# 中讨论)

一共有三种办法,可以给内核传递参数,用于控制其行为方式:

  1. 在编译内核时(这个最根本,会决定后面两种方法)
  2. 内核启动时(通常是在一个启动管理器里设置).
  3. 在运行时 (通过修改在 /proc/sys中的文件).

本页面主要是讲第二种方法。

配置

内核参数可以在启动时临时修改,也可以永久性写到启动管理器的配置文件中,永远起作用。

下面示例:把参数quietsplash 加到启动管理器 Syslinux, GRUB, GRUB LegacyLILO中.

Syslinux

  • 当出现启动选择菜单的时候,按 Tab 进入修改模式:
> .linux ../vmlinuz-linux root=/dev/sda3 ro initrd=../initramfs-linux.img quiet splash
Press Enter to boot with these parameters.
  • To make the change persistent after reboot, edit /boot/syslinux/syslinux.cfg and add them to the APPEND line:
APPEND root=/dev/sda3 ro quiet splash

更多详情请见Syslinux

systemd-boot

  • 当启动菜单出现时 按 e进入编辑界面:
initrd=\initramfs-linux.img root=/dev/sda2 quiet splash
Enter 即可按照输入的参数启动。
注意:
  • 如果没有设置显示启动菜单, 你需要按住Space启动电脑来进入启动菜单 。
  • 如果不能够从启动菜单上进行编辑,修改 /boot/loader/loader.conf 加入 editor 1 来开启编辑功能。
options root=/dev/sda2 quiet splash

更多信息请参见 systemd-boot .

GRUB

  • 在菜单出现后按 e 然后将它们添加至 linux 行:
linux /boot/vmlinuz-linux root=UUID=978e3e81-8048-4ae1-8a06-aa727458e8ff ro quiet splash
b 以便用这些参数启动。
  • 要使改变在重启后仍生效,您可以手动编辑 /boot/grub/grub.cfg 中的如上内容。对于初学者,建议:
编辑 /etc/default/grub 并将您的内核选项添加至 GRUB_CMDLINE_LINUX_DEFAULT 行:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
然后重新生成 grub.cfg 文件:
# grub-mkconfig -o /boot/grub/grub.cfg

有关配置GRUB的更多信息,请参阅 GRUB

GRUB Legacy

  • Press e when the menu shows up and add them on the kernel line:
kernel /boot/vmlinuz-linux root=/dev/sda3 ro quiet splash
Press b to boot with these parameters.
  • To make the change persistent after reboot, edit /boot/grub/menu.lst and add them to the kernel line, exactly like above.

For more information on configuring GRUB Legacy, see the GRUB Legacy article.

LILO

  • Add them to /etc/lilo.conf:
image=/boot/vmlinuz-linux
        ...
        quiet splash

For more information on configuring LILO, see the LILO article.

常见参数列表

Tango-view-fullscreen.pngThis article or section needs expansion.Tango-view-fullscreen.png

Reason: 列表还需要继续扩充 (Discuss in Talk:Kernel parameters (简体中文))
注意: Not all of the listed options are always available. Most are associated with subsystems and work only if the kernel is configured with those subsystems built in. They also depend on the presence of the hardware they are associated with.
SysVinit(即将过时) systemd 描述
3 systemd.unit=multi-user.target 不启动x(可进入后启动)
1 systemd.unit=rescue.target 进入根用户模式(root).
nomodeset nomodeset 关闭内核显示模式设置功能.
loglevel=3 loglevel=3 Removes "misaligned reg" and "unknown connector type" messages during boot with the Nouveau driver. See this topic.
-- init=/usr/lib/systemd/systemd 使用systemd 替代 SysVinit 启动.
init=/bin/sh rw init=/bin/sh rw 进入超级终端模式,一般用于急救

All of these parameters are case-sensitive.

For a complete list of all known options, please see the kernel documentation.

更多信息