Differences
This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
| wiki:liveusb [2025/12/23 19:40] – created 212.58.114.38 | wiki:liveusb [2025/12/23 20:06] (current) – [Partition] 212.58.114.38 | ||
|---|---|---|---|
| Line 4: | Line 4: | ||
| parted /dev/sda -- mkpart biosboot 1MiB 3MiB | parted /dev/sda -- mkpart biosboot 1MiB 3MiB | ||
| parted /dev/sda -- set 1 bios_grub on | parted /dev/sda -- set 1 bios_grub on | ||
| - | parted /dev/sda -- mkpart ESP fat32 3MiB 1027MiB | + | parted /dev/sda -- mkpart ESP fat32 3MiB 1024MiB |
| parted /dev/sda -- set 2 esp on | parted /dev/sda -- set 2 esp on | ||
| - | parted /dev/sda -- mkpart ISO ext4 1027MiB 13000MiB | + | parted /dev/sda -- mkpart ISO ext4 1024MiB 16GiB |
| - | parted /dev/sda -- mkpart DATA fat32 13000MiB | + | parted /dev/sda -- mkpart DATA fat32 16GiB 100% |
| parted /dev/sda print | parted /dev/sda print | ||
| Line 46: | Line 46: | ||
| initrd (loop)/ | initrd (loop)/ | ||
| } | } | ||
| - | menuentry " | + | |
| + | menuentry " | ||
| search --no-floppy --label ISO --set=root | search --no-floppy --label ISO --set=root | ||
| set iso="/ | set iso="/ | ||
| Line 53: | Line 54: | ||
| initrd (loop)/ | initrd (loop)/ | ||
| } | } | ||
| + | |||
| menuentry " | menuentry " | ||
| search --no-floppy --label ISO --set=root | search --no-floppy --label ISO --set=root | ||
| Line 60: | Line 62: | ||
| initrd (loop)/ | initrd (loop)/ | ||
| } | } | ||
| + | |||
| + | menuentry "Kali Live" { | ||
| + | search --no-floppy --label ISO --set=root | ||
| + | set iso="/ | ||
| + | loopback loop ($root)$iso | ||
| + | linux (loop)/ | ||
| + | initrd (loop)/ | ||
| + | } | ||
| + | |||
| menuentry " | menuentry " | ||
| insmod chain | insmod chain | ||
| Line 65: | Line 76: | ||
| chainloader / | chainloader / | ||
| } | } | ||
| + | |||
| </ | </ | ||