linux:grub
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
linux:grub [2023/02/16 19:25] – ms | linux:grub [2025/05/20 16:10] (current) – ms | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== grub shell ====== | ====== grub shell ====== | ||
+ | ===== Grub Menue aufrufen ===== | ||
+ | < | ||
+ | set prefix=(hd0, | ||
+ | set root=(hd0, | ||
+ | |||
+ | insmod linux | ||
+ | insmod normal | ||
+ | normal | ||
+ | </ | ||
+ | |||
+ | ===== Linux starten ===== | ||
< | < | ||
set pager=1 | set pager=1 | ||
Line 35: | Line 46: | ||
... | ... | ||
</ | </ | ||
+ | |||
+ | ====== Minimal grub config (EFI) ====== | ||
+ | < | ||
+ | set default=" | ||
+ | set timeout=" | ||
+ | |||
+ | insmod gpt | ||
+ | insmod part_gpt | ||
+ | insmod fat | ||
+ | insmod chain | ||
+ | |||
+ | menuentry " | ||
+ | set root=(hd0, | ||
+ | linux / | ||
+ | initrd / | ||
+ | } | ||
+ | |||
+ | menuentry "EFI Boot" { | ||
+ | set root=(hd0, | ||
+ | chainloader / | ||
+ | } | ||
+ | </ | ||
+ |
linux/grub.1676571912.txt.gz · Last modified: 2023/02/16 19:25 by ms