mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
17 lines
582 B
Markdown
17 lines
582 B
Markdown
![]() |
# 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}}"`
|