summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author Eric Hameleers <alien@slackware.com>2023-01-04 12:57:32 +0100
committer Eric Hameleers <alien@slackware.com>2023-01-04 12:57:32 +0100
commite1154ffb0c80258ea7a5c7a577ed31ad3bfdc2da (patch)
treeaf4efd857ce61b736108603b21d3326e1c2dc80c
parentdb70f3856f1245207c2521d90075575b675c10c4 (diff)
downloadliveslak-e1154ffb0c80258ea7a5c7a577ed31ad3bfdc2da.tar.gz
liveslak-e1154ffb0c80258ea7a5c7a577ed31ad3bfdc2da.tar.xz
README.txt: be more specific in 'Boot from an ISO file on disk' example
-rw-r--r--README.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.txt b/README.txt
index 7d66d43..8331e03 100644
--- a/README.txt
+++ b/README.txt
@@ -134,7 +134,7 @@ Note that you can create your own SSL certificate plus private key and use those
=== Boot from an ISO file on disk ===
-If you downloaded a liveslak ISO file and want to boot that ISO directly from its location on your computer's hard drive, you can use the following Grub configuration block and add it to your ''/boot/grub/grub.cfg'':<code>
+If you downloaded a liveslak ISO file and want to boot that ISO directly from its location on your computer's hard drive, you can use the following Grub configuration block and add it to your ''/boot/grub/grub.cfg'' (the example code assumes you downloaded the XFCE ISO and stored it as ''/data/ISOS/slackware64-live-xfce-current.iso''):<code>
menuentry " LIVESLAK ISO" --class gnu-linux --class os --class icon-linux {
set iso='/data/ISOS/slackware64-live-xfce-current.iso'
set bootparms='load_ramdisk=1 prompt_ramdisk=0 rw printk.time=0 kbd=us tz=Europe/Amsterdam lang=nl'
@@ -144,7 +144,7 @@ menuentry " LIVESLAK ISO" --class gnu-linux --class os --class icon-linux {
linux (loop)/boot/generic livemedia=scandev:$iso $bootparms
initrd (loop)/boot/initrd.img
}</code>
-This example will add a 'LIVESLAK ISO' menu entry to your local computer's boot menu, through which you can start a XFCE Live ISO which you previously downloaded to directory ''/data/ISOS/'', pre-configured for a US keyboard, Dutch language and Amsterdam timezone.
+This example will add a 'LIVESLAK ISO' menu entry to your local computer's boot menu, through which you can start a XFCE Live ISO which you previously downloaded to directory ''/data/ISOS/'', pre-configured for a US keyboard, Dutch language and Amsterdam timezone. You should of course change the ''bootparms'' string so that it matches your requirements.
Alternatively you could look into Ventoy, which is a tool to create a bootable USB drive containing multiple ISO files. Ventoy allows you to boot from any of these ISOs by automatically generating on every boot a Grub menu containing all the images found on disk. Liveslak is fully Ventoy-compatible. Website: https://www.ventoy.net/ .