/etc/default/grub
and the scripts in etc/grub.d/
. To configure GRUB to boot from the new files, add a boot stanza to /etc/grub.d/40_custom
that refers to them.
menuentry "Fedora Linux" { set root=(hd0,0) linux /vmlinuz-install initrd /initrd.img-install }
linux
line of the boot stanza. These options set preliminary options in Anaconda which the user normally sets interactively. For a list of available installer boot options, refer to 11章ブートオプション.
ip=
repo=
lang=
keymap=
ksdevice=
(インストールが eth0 以外のインターフェイスを要求する場合)
vnc
及び リモートインストール用の vncpassword=
grub2-mkconfig
with root privileges and open the grub.cfg
file to view the updated configuration. Locate your new menu entry stanza and determine its place in the stanza order.
GRUB_DEFAULT
option in /etc/default/grub
to point to the new stanza you added. 0 will refer to the first stanza, 1 to the second, and so on. For example:
GRUB_DEFAULT=0
GRUB_DEFAULT="Fedora Linux"