1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-03-28 21:16:20 +01:00
tldr/pages.ko/linux/grub-install.md
2024-10-29 22:39:03 +09:00

582 B

grub-install

GRUB을 장치에 설치. 더 많은 정보: https://www.gnu.org/software/grub/manual/grub/html_node/Installing-GRUB-using-grub_002dinstall.html.

  • BIOS 시스템에 GRUB 설치:

grub-install --target={{i386-pc}} {{경로/대상/장치}}

  • UEFI 시스템에 GRUB 설치:

grub-install --target={{x86_64-efi}} --efi-directory={{경로/대상/efi_폴더}} --bootloader-id={{GRUB}}

  • 특정 모듈을 사전 로드하여 GRUB 설치:

grub-install --target={{x86_64-efi}} --efi-directory={{경로/대상/efi_폴더}} --modules="{{part_gpt part_msdos}}"