User Tools

Site Tools


docs:tips_n_tricks:grub:index.html

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
docs:tips_n_tricks:grub:index.html [14.04.2023 13:42 CEST] – ↷ Page moved from docs:tips_n_tricks:multiboot_usb_stick:index.html to docs:tips_n_tricks:grub:index.html peterdocs:tips_n_tricks:grub:index.html [24.03.2024 16:09 CET] (current) – [ISO Image on Harddisk] peter
Line 1: Line 1:
 +~~NOCACHE~~
 ====== GRUB ====== ====== GRUB ======
-  * [[docs:tips_n_tricks:grub:multiboot_usb_stick.html|Multiboot USB Stick]]+===== Pages ===== 
 +{{indexmenu>.#1}} 
 +{{NEWPAGE>.}} 
 +===== ISO Image on Harddisk =====
  
 +<file text custom.cfg>
 +menuentry "custom.cfg: debian-live-12.5.0-amd64-lxde.iso" {
 +        insmod part_gpt
 +        insmod ext2
 +        search --no-floppy --fs-uuid --set=root 8e1fa52e-49de-49f4-b55a-2e261d27891b
 +        loopback loop /boot/iso/debian-live-12.5.0-amd64-lxde.iso
 +        linux (loop)/live/vmlinuz boot=live findiso=/boot/iso/debian-live-12.5.0-amd64-lxde.iso
 +        initrd (loop)/live/initrd.img
 +}
 +</file>
 +===== Use config file of other installation on GPT disk =====
 +<file text custom.cfg>
 +menuentry 'custom.cfg: /boot/grub/grub.cfg on /dev/sda5 [ a66894b3-dc45-48fc-82c8-04dfdc8d9ff3 ]' {
 +        insmod part_gpt
 +        insmod ext2
 +        search --no-floppy --fs-uuid --set=root a66894b3-dc45-48fc-82c8-04dfdc8d9ff3
 +        configfile /boot/grub/grub.cfg
 +}
 +menuentry 'custom.cfg: /boot/grub/grub.cfg on /dev/sda5 [ --label 'MyLabel' --hint hd0,gpt5 ]' {
 +        insmod part_gpt
 +        insmod ext2
 +        search --no-floppy --set=root --label 'MyLabel' --hint hd0,gpt5
 +        configfile /boot/grub/grub.cfg
 +}
 +menuentry 'custom.cfg: /boot/grub/grub.cfg on /dev/sda5 [ set root=(hd0,gpt5) ]' {
 +        insmod part_gpt
 +        insmod ext2
 +        set root=(hd0,gpt5)
 +        configfile /boot/grub/grub.cfg
 +}
 +</file>
 +
 +===== Tagged pages (tag plugin) =====
 +{{topic>GRUB}}
 +===== Indexed pages (subjectindex plugin) ====
 +{{subjectindex>regex=GRUB$;hideatoz;hidejump}}
 +{{tag>GRUB}}{{entry>GRUB}}
docs/tips_n_tricks/grub/index.html.1681472567.txt.gz · Last modified: 14.04.2023 13:42 CEST by peter

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki