linux:grub
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
linux:grub [2022/09/06 19:14] – created ms | linux:grub [2025/05/20 16:10] (current) – ms | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== grub shell ====== | ||
+ | ===== Grub Menue aufrufen ===== | ||
+ | < | ||
+ | set prefix=(hd0, | ||
+ | set root=(hd0, | ||
+ | |||
+ | insmod linux | ||
+ | insmod normal | ||
+ | normal | ||
+ | </ | ||
+ | |||
+ | ===== Linux starten ===== | ||
+ | < | ||
+ | set pager=1 | ||
+ | |||
+ | ls | ||
+ | -> (hd0,gpt1) (hd0,gpt2) ... | ||
+ | |||
+ | ls (hd0,gpt1)/ | ||
+ | |||
+ | set root=(hd0, | ||
+ | |||
+ | linux / | ||
+ | initrd / | ||
+ | |||
+ | boot | ||
+ | </ | ||
+ | |||
====== os-prober edit ====== | ====== os-prober edit ====== | ||
< | < | ||
Line 18: | 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.1662484440.txt.gz · Last modified: 2023/01/11 20:30 (external edit)