<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.alpinelinux.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Gabriel-mlt</id>
	<title>Alpine Linux - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.alpinelinux.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Gabriel-mlt"/>
	<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/wiki/Special:Contributions/Gabriel-mlt"/>
	<updated>2026-05-05T00:47:49Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.40.0</generator>
	<entry>
		<id>https://wiki.alpinelinux.org/w/index.php?title=User_talk:Gabriel-mlt&amp;diff=32167</id>
		<title>User talk:Gabriel-mlt</title>
		<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/w/index.php?title=User_talk:Gabriel-mlt&amp;diff=32167"/>
		<updated>2026-03-21T23:39:39Z</updated>

		<summary type="html">&lt;p&gt;Gabriel-mlt: /* Directly booting an ISO file - Multi-Boot USB Stick */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== test [1] ==&lt;br /&gt;
&lt;br /&gt;
test [1]&lt;br /&gt;
&lt;br /&gt;
== test [2] ==&lt;br /&gt;
&lt;br /&gt;
test [2]&lt;br /&gt;
&lt;br /&gt;
== Directly booting an ISO file - Multi-Boot USB Stick ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
**** STILL BEING CREATED ****&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+ Page Info [ * ]&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Method Of Date Produced [ bash ]&#039;&#039;&#039; || &#039;&#039;&#039;&#039;&#039;&amp;lt;small&amp;gt;TZ=&#039;Europe/Malta&#039; date +&amp;quot;%Y-%m-%d %H:%M:%S&amp;quot;&amp;lt;/small&amp;gt;&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Created Date&#039;&#039;&#039; || 2026-03-22 00:23:27&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;First Published Date&#039;&#039;&#039; || [ n/a ]&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Last Modified Date&#039;&#039;&#039; || [ n/a ] &lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Created By&#039;&#039;&#039; || --[[User:Gabriel-mlt|Gabriel-mlt]] ([[User talk:Gabriel-mlt|talk]]) 23:28, 21 March 2026 (UTC)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Master GRUB Multiboot USB Setup ===&lt;br /&gt;
&lt;br /&gt;
This guide explains how to install a master GRUB bootloader onto a USB stick to boot multiple ISOs from dedicated partitions.&lt;br /&gt;
&lt;br /&gt;
=== 1. Prepare the Environment ===&lt;br /&gt;
First, install the necessary tools and identify your USB drive:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
sudo apt update &amp;amp;&amp;amp; sudo apt install grub-pc-bin grub-efi-amd64-bin mtools&lt;br /&gt;
lsblk # Identify your USB (e.g., /dev/sdb)&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== 2. Partitioning the USB ===&lt;br /&gt;
Use &#039;&#039;&#039;gdisk&#039;&#039;&#039; or &#039;&#039;&#039;fdisk&#039;&#039;&#039; to create the following structure:&lt;br /&gt;
* &#039;&#039;&#039;Partition 1:&#039;&#039;&#039; EFI System Partition (500MB, FAT32) - Target: /dev/sdb1&lt;br /&gt;
* &#039;&#039;&#039;Partition 2:&#039;&#039;&#039; ISO/Data Storage (Remaining space, ext4 or NTFS) - Target: /dev/sdb2&lt;br /&gt;
&lt;br /&gt;
=== 3. Mount and Install GRUB ===&lt;br /&gt;
Mount the EFI partition and install the bootloader for both UEFI and BIOS compatibility.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
sudo mount /dev/sdb1 /mnt&lt;br /&gt;
sudo grub-install --target=x86_64-efi --efi-directory=/mnt --boot-directory=/mnt/boot --removable /dev/sdb&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== 4. Configure the Multiboot Menu ===&lt;br /&gt;
Create the configuration file at &amp;lt;code&amp;gt;/mnt/boot/grub/grub.cfg&amp;lt;/code&amp;gt;:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
set timeout=10&lt;br /&gt;
set default=0&lt;br /&gt;
&lt;br /&gt;
# Example: Booting an ISO from the second partition&lt;br /&gt;
menuentry &amp;quot;Ubuntu 24.04 LTS Live&amp;quot; {&lt;br /&gt;
    set isofile=&amp;quot;/iso/ubuntu-24.04.iso&amp;quot;&lt;br /&gt;
    loopback loop (hd0,gpt2)$isofile&lt;br /&gt;
    linux (loop)/casper/vmlinuz boot=casper iso-scan/filename=$isofile quiet splash&lt;br /&gt;
    initrd (loop)/casper/initrd&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
# Example: Booting Windows PE/Lite via Memdisk&lt;br /&gt;
menuentry &amp;quot;Windows Lite (RAM Mode)&amp;quot; {&lt;br /&gt;
    linux16 /boot/memdisk iso raw&lt;br /&gt;
    initrd16 /iso/windows_lite.iso&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== 5. Finalize ===&lt;br /&gt;
Ensure you copy the &amp;lt;code&amp;gt;memdisk&amp;lt;/code&amp;gt; binary to &amp;lt;code&amp;gt;/mnt/boot/&amp;lt;/code&amp;gt; and place your ISOs in the &amp;lt;code&amp;gt;/iso&amp;lt;/code&amp;gt; folder on the second partition.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
sudo cp /usr/lib/syslinux/memdisk /mnt/boot/&lt;br /&gt;
sudo umount /mnt&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Ubuntu]] [[Category:Tutorials]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;Insert non-formatted text here&amp;lt;/nowiki&amp;gt;&lt;/div&gt;</summary>
		<author><name>Gabriel-mlt</name></author>
	</entry>
	<entry>
		<id>https://wiki.alpinelinux.org/w/index.php?title=User_talk:Gabriel-mlt&amp;diff=32166</id>
		<title>User talk:Gabriel-mlt</title>
		<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/w/index.php?title=User_talk:Gabriel-mlt&amp;diff=32166"/>
		<updated>2026-03-21T23:37:29Z</updated>

		<summary type="html">&lt;p&gt;Gabriel-mlt: /* Master GRUB Multiboot USB Setup (Ubuntu 24.04) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== test [1] ==&lt;br /&gt;
&lt;br /&gt;
test [1]&lt;br /&gt;
&lt;br /&gt;
== test [2] ==&lt;br /&gt;
&lt;br /&gt;
test [2]&lt;br /&gt;
&lt;br /&gt;
== Directly booting an ISO file - Multi-Boot USB Stick ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+ Page Info [ * ]&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Method Of Date Produced [ bash ]&#039;&#039;&#039; || &#039;&#039;&#039;&#039;&#039;&amp;lt;small&amp;gt;TZ=&#039;Europe/Malta&#039; date +&amp;quot;%Y-%m-%d %H:%M:%S&amp;quot;&amp;lt;/small&amp;gt;&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Created Date&#039;&#039;&#039; || 2026-03-22 00:23:27&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;First Published Date&#039;&#039;&#039; || [ n/a ]&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Last Modified Date&#039;&#039;&#039; || [ n/a ] &lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Created By&#039;&#039;&#039; || --[[User:Gabriel-mlt|Gabriel-mlt]] ([[User talk:Gabriel-mlt|talk]]) 23:28, 21 March 2026 (UTC)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===== Master GRUB Multiboot USB Setup =====&lt;br /&gt;
&lt;br /&gt;
This guide explains how to install a master GRUB bootloader onto a USB stick to boot multiple ISOs from dedicated partitions.&lt;br /&gt;
&lt;br /&gt;
=== 1. Prepare the Environment ===&lt;br /&gt;
First, install the necessary tools and identify your USB drive:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
sudo apt update &amp;amp;&amp;amp; sudo apt install grub-pc-bin grub-efi-amd64-bin mtools&lt;br /&gt;
lsblk # Identify your USB (e.g., /dev/sdb)&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== 2. Partitioning the USB ===&lt;br /&gt;
Use &#039;&#039;&#039;gdisk&#039;&#039;&#039; or &#039;&#039;&#039;fdisk&#039;&#039;&#039; to create the following structure:&lt;br /&gt;
* &#039;&#039;&#039;Partition 1:&#039;&#039;&#039; EFI System Partition (500MB, FAT32) - Target: /dev/sdb1&lt;br /&gt;
* &#039;&#039;&#039;Partition 2:&#039;&#039;&#039; ISO/Data Storage (Remaining space, ext4 or NTFS) - Target: /dev/sdb2&lt;br /&gt;
&lt;br /&gt;
=== 3. Mount and Install GRUB ===&lt;br /&gt;
Mount the EFI partition and install the bootloader for both UEFI and BIOS compatibility.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
sudo mount /dev/sdb1 /mnt&lt;br /&gt;
sudo grub-install --target=x86_64-efi --efi-directory=/mnt --boot-directory=/mnt/boot --removable /dev/sdb&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== 4. Configure the Multiboot Menu ===&lt;br /&gt;
Create the configuration file at &amp;lt;code&amp;gt;/mnt/boot/grub/grub.cfg&amp;lt;/code&amp;gt;:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
set timeout=10&lt;br /&gt;
set default=0&lt;br /&gt;
&lt;br /&gt;
# Example: Booting an ISO from the second partition&lt;br /&gt;
menuentry &amp;quot;Ubuntu 24.04 LTS Live&amp;quot; {&lt;br /&gt;
    set isofile=&amp;quot;/iso/ubuntu-24.04.iso&amp;quot;&lt;br /&gt;
    loopback loop (hd0,gpt2)$isofile&lt;br /&gt;
    linux (loop)/casper/vmlinuz boot=casper iso-scan/filename=$isofile quiet splash&lt;br /&gt;
    initrd (loop)/casper/initrd&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
# Example: Booting Windows PE/Lite via Memdisk&lt;br /&gt;
menuentry &amp;quot;Windows Lite (RAM Mode)&amp;quot; {&lt;br /&gt;
    linux16 /boot/memdisk iso raw&lt;br /&gt;
    initrd16 /iso/windows_lite.iso&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== 5. Finalize ===&lt;br /&gt;
Ensure you copy the &amp;lt;code&amp;gt;memdisk&amp;lt;/code&amp;gt; binary to &amp;lt;code&amp;gt;/mnt/boot/&amp;lt;/code&amp;gt; and place your ISOs in the &amp;lt;code&amp;gt;/iso&amp;lt;/code&amp;gt; folder on the second partition.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
sudo cp /usr/lib/syslinux/memdisk /mnt/boot/&lt;br /&gt;
sudo umount /mnt&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Ubuntu]] [[Category:Tutorials]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;Insert non-formatted text here&amp;lt;/nowiki&amp;gt;&lt;/div&gt;</summary>
		<author><name>Gabriel-mlt</name></author>
	</entry>
	<entry>
		<id>https://wiki.alpinelinux.org/w/index.php?title=User_talk:Gabriel-mlt&amp;diff=32165</id>
		<title>User talk:Gabriel-mlt</title>
		<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/w/index.php?title=User_talk:Gabriel-mlt&amp;diff=32165"/>
		<updated>2026-03-21T23:36:59Z</updated>

		<summary type="html">&lt;p&gt;Gabriel-mlt: /* Master GRUB Multiboot USB Setup (Ubuntu 24.04) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== test [1] ==&lt;br /&gt;
&lt;br /&gt;
test [1]&lt;br /&gt;
&lt;br /&gt;
== test [2] ==&lt;br /&gt;
&lt;br /&gt;
test [2]&lt;br /&gt;
&lt;br /&gt;
== Directly booting an ISO file - Multi-Boot USB Stick ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+ Page Info [ * ]&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Method Of Date Produced [ bash ]&#039;&#039;&#039; || &#039;&#039;&#039;&#039;&#039;&amp;lt;small&amp;gt;TZ=&#039;Europe/Malta&#039; date +&amp;quot;%Y-%m-%d %H:%M:%S&amp;quot;&amp;lt;/small&amp;gt;&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Created Date&#039;&#039;&#039; || 2026-03-22 00:23:27&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;First Published Date&#039;&#039;&#039; || [ n/a ]&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Last Modified Date&#039;&#039;&#039; || [ n/a ] &lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Created By&#039;&#039;&#039; || --[[User:Gabriel-mlt|Gabriel-mlt]] ([[User talk:Gabriel-mlt|talk]]) 23:28, 21 March 2026 (UTC)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===== Master GRUB Multiboot USB Setup (Ubuntu 24.04) =====&lt;br /&gt;
&lt;br /&gt;
This guide explains how to install a master GRUB bootloader onto a USB stick to boot multiple ISOs from dedicated partitions.&lt;br /&gt;
&lt;br /&gt;
=== 1. Prepare the Environment ===&lt;br /&gt;
First, install the necessary tools and identify your USB drive:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
sudo apt update &amp;amp;&amp;amp; sudo apt install grub-pc-bin grub-efi-amd64-bin mtools&lt;br /&gt;
lsblk # Identify your USB (e.g., /dev/sdb)&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== 2. Partitioning the USB ===&lt;br /&gt;
Use &#039;&#039;&#039;gdisk&#039;&#039;&#039; or &#039;&#039;&#039;fdisk&#039;&#039;&#039; to create the following structure:&lt;br /&gt;
* &#039;&#039;&#039;Partition 1:&#039;&#039;&#039; EFI System Partition (500MB, FAT32) - Target: /dev/sdb1&lt;br /&gt;
* &#039;&#039;&#039;Partition 2:&#039;&#039;&#039; ISO/Data Storage (Remaining space, ext4 or NTFS) - Target: /dev/sdb2&lt;br /&gt;
&lt;br /&gt;
=== 3. Mount and Install GRUB ===&lt;br /&gt;
Mount the EFI partition and install the bootloader for both UEFI and BIOS compatibility.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
sudo mount /dev/sdb1 /mnt&lt;br /&gt;
sudo grub-install --target=x86_64-efi --efi-directory=/mnt --boot-directory=/mnt/boot --removable /dev/sdb&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== 4. Configure the Multiboot Menu ===&lt;br /&gt;
Create the configuration file at &amp;lt;code&amp;gt;/mnt/boot/grub/grub.cfg&amp;lt;/code&amp;gt;:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
set timeout=10&lt;br /&gt;
set default=0&lt;br /&gt;
&lt;br /&gt;
# Example: Booting an ISO from the second partition&lt;br /&gt;
menuentry &amp;quot;Ubuntu 24.04 LTS Live&amp;quot; {&lt;br /&gt;
    set isofile=&amp;quot;/iso/ubuntu-24.04.iso&amp;quot;&lt;br /&gt;
    loopback loop (hd0,gpt2)$isofile&lt;br /&gt;
    linux (loop)/casper/vmlinuz boot=casper iso-scan/filename=$isofile quiet splash&lt;br /&gt;
    initrd (loop)/casper/initrd&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
# Example: Booting Windows PE/Lite via Memdisk&lt;br /&gt;
menuentry &amp;quot;Windows Lite (RAM Mode)&amp;quot; {&lt;br /&gt;
    linux16 /boot/memdisk iso raw&lt;br /&gt;
    initrd16 /iso/windows_lite.iso&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== 5. Finalize ===&lt;br /&gt;
Ensure you copy the &amp;lt;code&amp;gt;memdisk&amp;lt;/code&amp;gt; binary to &amp;lt;code&amp;gt;/mnt/boot/&amp;lt;/code&amp;gt; and place your ISOs in the &amp;lt;code&amp;gt;/iso&amp;lt;/code&amp;gt; folder on the second partition.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
sudo cp /usr/lib/syslinux/memdisk /mnt/boot/&lt;br /&gt;
sudo umount /mnt&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Ubuntu]] [[Category:Tutorials]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;Insert non-formatted text here&amp;lt;/nowiki&amp;gt;&lt;/div&gt;</summary>
		<author><name>Gabriel-mlt</name></author>
	</entry>
	<entry>
		<id>https://wiki.alpinelinux.org/w/index.php?title=User_talk:Gabriel-mlt&amp;diff=32164</id>
		<title>User talk:Gabriel-mlt</title>
		<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/w/index.php?title=User_talk:Gabriel-mlt&amp;diff=32164"/>
		<updated>2026-03-21T23:35:56Z</updated>

		<summary type="html">&lt;p&gt;Gabriel-mlt: /* Directly booting an ISO file - Multi-Boot USB Stick */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== test [1] ==&lt;br /&gt;
&lt;br /&gt;
test [1]&lt;br /&gt;
&lt;br /&gt;
== test [2] ==&lt;br /&gt;
&lt;br /&gt;
test [2]&lt;br /&gt;
&lt;br /&gt;
== Directly booting an ISO file - Multi-Boot USB Stick ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+ Page Info [ * ]&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Method Of Date Produced [ bash ]&#039;&#039;&#039; || &#039;&#039;&#039;&#039;&#039;&amp;lt;small&amp;gt;TZ=&#039;Europe/Malta&#039; date +&amp;quot;%Y-%m-%d %H:%M:%S&amp;quot;&amp;lt;/small&amp;gt;&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Created Date&#039;&#039;&#039; || 2026-03-22 00:23:27&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;First Published Date&#039;&#039;&#039; || [ n/a ]&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Last Modified Date&#039;&#039;&#039; || [ n/a ] &lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Created By&#039;&#039;&#039; || --[[User:Gabriel-mlt|Gabriel-mlt]] ([[User talk:Gabriel-mlt|talk]]) 23:28, 21 March 2026 (UTC)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Master GRUB Multiboot USB Setup (Ubuntu 24.04) ==&lt;br /&gt;
&lt;br /&gt;
This guide explains how to install a master GRUB bootloader onto a USB stick to boot multiple ISOs from dedicated partitions.&lt;br /&gt;
&lt;br /&gt;
=== 1. Prepare the Environment ===&lt;br /&gt;
First, install the necessary tools and identify your USB drive:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
sudo apt update &amp;amp;&amp;amp; sudo apt install grub-pc-bin grub-efi-amd64-bin mtools&lt;br /&gt;
lsblk # Identify your USB (e.g., /dev/sdb)&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== 2. Partitioning the USB ===&lt;br /&gt;
Use &#039;&#039;&#039;gdisk&#039;&#039;&#039; or &#039;&#039;&#039;fdisk&#039;&#039;&#039; to create the following structure:&lt;br /&gt;
* &#039;&#039;&#039;Partition 1:&#039;&#039;&#039; EFI System Partition (500MB, FAT32) - Target: /dev/sdb1&lt;br /&gt;
* &#039;&#039;&#039;Partition 2:&#039;&#039;&#039; ISO/Data Storage (Remaining space, ext4 or NTFS) - Target: /dev/sdb2&lt;br /&gt;
&lt;br /&gt;
=== 3. Mount and Install GRUB ===&lt;br /&gt;
Mount the EFI partition and install the bootloader for both UEFI and BIOS compatibility.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
sudo mount /dev/sdb1 /mnt&lt;br /&gt;
sudo grub-install --target=x86_64-efi --efi-directory=/mnt --boot-directory=/mnt/boot --removable /dev/sdb&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== 4. Configure the Multiboot Menu ===&lt;br /&gt;
Create the configuration file at &amp;lt;code&amp;gt;/mnt/boot/grub/grub.cfg&amp;lt;/code&amp;gt;:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
set timeout=10&lt;br /&gt;
set default=0&lt;br /&gt;
&lt;br /&gt;
# Example: Booting an ISO from the second partition&lt;br /&gt;
menuentry &amp;quot;Ubuntu 24.04 LTS Live&amp;quot; {&lt;br /&gt;
    set isofile=&amp;quot;/iso/ubuntu-24.04.iso&amp;quot;&lt;br /&gt;
    loopback loop (hd0,gpt2)$isofile&lt;br /&gt;
    linux (loop)/casper/vmlinuz boot=casper iso-scan/filename=$isofile quiet splash&lt;br /&gt;
    initrd (loop)/casper/initrd&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
# Example: Booting Windows PE/Lite via Memdisk&lt;br /&gt;
menuentry &amp;quot;Windows Lite (RAM Mode)&amp;quot; {&lt;br /&gt;
    linux16 /boot/memdisk iso raw&lt;br /&gt;
    initrd16 /iso/windows_lite.iso&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== 5. Finalize ===&lt;br /&gt;
Ensure you copy the &amp;lt;code&amp;gt;memdisk&amp;lt;/code&amp;gt; binary to &amp;lt;code&amp;gt;/mnt/boot/&amp;lt;/code&amp;gt; and place your ISOs in the &amp;lt;code&amp;gt;/iso&amp;lt;/code&amp;gt; folder on the second partition.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
sudo cp /usr/lib/syslinux/memdisk /mnt/boot/&lt;br /&gt;
sudo umount /mnt&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Ubuntu]] [[Category:Tutorials]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;Insert non-formatted text here&amp;lt;/nowiki&amp;gt;&lt;/div&gt;</summary>
		<author><name>Gabriel-mlt</name></author>
	</entry>
	<entry>
		<id>https://wiki.alpinelinux.org/w/index.php?title=User_talk:Gabriel-mlt&amp;diff=32163</id>
		<title>User talk:Gabriel-mlt</title>
		<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/w/index.php?title=User_talk:Gabriel-mlt&amp;diff=32163"/>
		<updated>2026-03-21T23:29:26Z</updated>

		<summary type="html">&lt;p&gt;Gabriel-mlt: /* Directly booting an ISO file - Multi-Boot USB Stick */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== test [1] ==&lt;br /&gt;
&lt;br /&gt;
test [1]&lt;br /&gt;
&lt;br /&gt;
== test [2] ==&lt;br /&gt;
&lt;br /&gt;
test [2]&lt;br /&gt;
&lt;br /&gt;
== Directly booting an ISO file - Multi-Boot USB Stick ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+ Page Info [ * ] ; &amp;lt;small&amp;gt;Date Prod Method == TZ=&#039;Europe/Malta&#039; date +&amp;quot;%Y-%m-%d %H:%M:%S&amp;quot;&amp;lt;/small&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Created Date&#039;&#039;&#039; || 2026-03-22 00:23:27&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;First Published Date&#039;&#039;&#039; || [ n/a ]&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Last Modified Date&#039;&#039;&#039; || [ n/a ] &lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Created By&#039;&#039;&#039; || --[[User:Gabriel-mlt|Gabriel-mlt]] ([[User talk:Gabriel-mlt|talk]]) 23:28, 21 March 2026 (UTC)&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;nowiki&amp;gt;Insert non-formatted text here&amp;lt;/nowiki&amp;gt;&lt;/div&gt;</summary>
		<author><name>Gabriel-mlt</name></author>
	</entry>
	<entry>
		<id>https://wiki.alpinelinux.org/w/index.php?title=User_talk:Gabriel-mlt&amp;diff=32162</id>
		<title>User talk:Gabriel-mlt</title>
		<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/w/index.php?title=User_talk:Gabriel-mlt&amp;diff=32162"/>
		<updated>2026-03-21T23:28:22Z</updated>

		<summary type="html">&lt;p&gt;Gabriel-mlt: /* Directly booting an ISO file - Multi-Boot USB Stick */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== test [1] ==&lt;br /&gt;
&lt;br /&gt;
test [1]&lt;br /&gt;
&lt;br /&gt;
== test [2] ==&lt;br /&gt;
&lt;br /&gt;
test [2]&lt;br /&gt;
&lt;br /&gt;
== Directly booting an ISO file - Multi-Boot USB Stick ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+ Page Info [ * ] ; Date Prod Method == TZ=&#039;Europe/Malta&#039; date +&amp;quot;%Y-%m-%d %H:%M:%S&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Created Date&#039;&#039;&#039; || 2026-03-22 00:23:27&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;First Published Date&#039;&#039;&#039; || 2[ n/a ]&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Last Modified Date&#039;&#039;&#039; || [ n/a ] &lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Created By&#039;&#039;&#039; || --[[User:Gabriel-mlt|Gabriel-mlt]] ([[User talk:Gabriel-mlt|talk]]) 23:28, 21 March 2026 (UTC)&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;nowiki&amp;gt;Insert non-formatted text here&amp;lt;/nowiki&amp;gt;&lt;/div&gt;</summary>
		<author><name>Gabriel-mlt</name></author>
	</entry>
	<entry>
		<id>https://wiki.alpinelinux.org/w/index.php?title=User_talk:Gabriel-mlt&amp;diff=32161</id>
		<title>User talk:Gabriel-mlt</title>
		<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/w/index.php?title=User_talk:Gabriel-mlt&amp;diff=32161"/>
		<updated>2026-03-21T23:14:22Z</updated>

		<summary type="html">&lt;p&gt;Gabriel-mlt: /* Directly booting an ISO file - Multi-Boot USB Stick */ new section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== test [1] ==&lt;br /&gt;
&lt;br /&gt;
test [1]&lt;br /&gt;
&lt;br /&gt;
== test [2] ==&lt;br /&gt;
&lt;br /&gt;
test [2]&lt;br /&gt;
&lt;br /&gt;
== Directly booting an ISO file - Multi-Boot USB Stick ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;Insert non-formatted text here&amp;lt;/nowiki&amp;gt;&lt;/div&gt;</summary>
		<author><name>Gabriel-mlt</name></author>
	</entry>
	<entry>
		<id>https://wiki.alpinelinux.org/w/index.php?title=User_talk:Gabriel-mlt&amp;diff=32160</id>
		<title>User talk:Gabriel-mlt</title>
		<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/w/index.php?title=User_talk:Gabriel-mlt&amp;diff=32160"/>
		<updated>2026-03-21T23:06:48Z</updated>

		<summary type="html">&lt;p&gt;Gabriel-mlt: /* test [2] */ new section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== test [1] ==&lt;br /&gt;
&lt;br /&gt;
test [1]&lt;br /&gt;
&lt;br /&gt;
== test [2] ==&lt;br /&gt;
&lt;br /&gt;
test [2]&lt;/div&gt;</summary>
		<author><name>Gabriel-mlt</name></author>
	</entry>
	<entry>
		<id>https://wiki.alpinelinux.org/w/index.php?title=User_talk:Gabriel-mlt&amp;diff=32159</id>
		<title>User talk:Gabriel-mlt</title>
		<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/w/index.php?title=User_talk:Gabriel-mlt&amp;diff=32159"/>
		<updated>2026-03-21T23:06:12Z</updated>

		<summary type="html">&lt;p&gt;Gabriel-mlt: /* test [1] */ new section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== test [1] ==&lt;br /&gt;
&lt;br /&gt;
test [1]&lt;/div&gt;</summary>
		<author><name>Gabriel-mlt</name></author>
	</entry>
	<entry>
		<id>https://wiki.alpinelinux.org/w/index.php?title=User:Gabriel-mlt&amp;diff=32158</id>
		<title>User:Gabriel-mlt</title>
		<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/w/index.php?title=User:Gabriel-mlt&amp;diff=32158"/>
		<updated>2026-03-21T23:05:45Z</updated>

		<summary type="html">&lt;p&gt;Gabriel-mlt: Created page with &amp;quot;test&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;test&lt;/div&gt;</summary>
		<author><name>Gabriel-mlt</name></author>
	</entry>
</feed>