tldr/pages.zh/linux/grub-install.md

17 lines
563 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# grub-install
> 安装 GRUB 到设备。
> 更多信息:<https://www.gnu.org/software/grub/manual/grub/html_node/Installing-GRUB-using-grub_002dinstall.html>.
- 安装 GRUB 到基于 BIOS 的系统:
`grub-install --target={{i386-pc}} {{/dev/sdX}}`
- 安装 GRUB 到基于 UEFI 的系统:
`grub-install --target={{x86_64-efi}} --efi-directory={{path/to/efi_directory}} --bootloader-id={{GRUB}}`
- 安装预置指定模块的 GRUB
`grub-install --target={{x86_64-efi}} --efi-directory={{path/to/efi_directory}} --modules="{{part_gpt part_msdos}}"`