aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author Eric Hameleers <alien@slackware.com>2021-11-10 11:20:39 +0100
committer Eric Hameleers <alien@slackware.com>2021-11-10 11:20:39 +0100
commita74de0880e591feef46002eaa36ca7b612782dc2 (patch)
tree8a1dac337ff73f8717b910046d437fd8a263e40c
parent7c9b8f0300a833111046fd5ea144763f26069f84 (diff)
downloadliveslak-a74de0880e591feef46002eaa36ca7b612782dc2.tar.gz
liveslak-a74de0880e591feef46002eaa36ca7b612782dc2.tar.xz
README: add an example Grub menu entry for 'frugal install' on harddisk
-rw-r--r--README.txt16
1 files changed, 16 insertions, 0 deletions
diff --git a/README.txt b/README.txt
index 6f334cb..9e221d5 100644
--- a/README.txt
+++ b/README.txt
@@ -130,6 +130,22 @@ Note that MOK key enrollment is a one-time action for the official liveslak base
Note that you can create your own SSL certificate plus private key and use those to generate custom liveslak ISO images with Secure Boot support. All you need to do is to enroll the public key (the DER-encoded version of your SSL certificate) into the MOK database of your computer. The MOK database has room for multiple keys so yours as well as liveslak's keys (and more) will fit there.
+=== 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 this Grub configuration block and add it to your ''/boot/grub/grub.cfg'':<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'
+
+ search -f $iso --set=root
+ loopback loop $iso
+ 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 downloaded XFCE Live ISO pre-configured for a US keyboard, Dutch language and Amsterdam timezone.
+
+
==== Transfering ISO content to USB stick ====