Page 1 of 1
Frugal install, What is a working menu.lst entry for it?
Posted: Mon Nov 20, 2023 11:23 pm
by xx_T3n0ch_X
Hi,
I have been trying to test EasyOS, but unfortunately I can't figure out how to write the bootloader entry for it. I already have a USB with a bunch of puppies, where I just copy the same entry and change the directory name accordingly, this approach does not work for easyos, I have managed to extract the .img file and copy the three files to a folder in the USB.
here is a working entry in my menu.lst file, and my attempt to write the entry for EasyOS:
Code: Select all
# menu.lst produced by grub4dosconfig-v1.9.2
color blue/cyan yellow/blue white/black cyan/black
#splashimage=/splash.xpm
timeout 10
default 0
# Frugal installed Puppy
title F96CE4 (sdb1/f96ce4)
find --set-root --ignore-floppies --ignore-cd /f96ce4/initrd.gz
kernel /f96ce4/vmlinuz psubdir=f96ce4 pmedia=usb pfix=fsck
initrd /f96ce4/initrd.gz
title EasyOS (sdb1/easyos)
find --set-root --ignore-floppies --ignore-cd /easyos/initrd.gz
kernel /easyos/vmlinuz --set-root-uuid () 5a63fc5e-e12c-47bb-99f4-dd627fc3f6ff
initrd /easyos/initrd.gz
Re: Frugal install, What is a working menu.lst entry for it?
Posted: Mon Nov 20, 2023 11:59 pm
by williwaw
Re: Frugal install, What is a working menu.lst entry for it?
Posted: Wed Nov 22, 2023 12:29 am
by BarryK
That tutorial page needed updating, have just now revised and improved it:
https://easyos.org/install/easy-frugal- ... ation.html
...of course, you may need to click the "page refresh" button in your browser.
Re: Frugal install, What is a working menu.lst entry for it?
Posted: Thu Nov 23, 2023 3:33 am
by xx_T3n0ch_X
There is an error in the Grub4dos entry, initially, I could not load the system, the tutorial includes the line
Code: Select all
find --set-root-uuid () 054a04b8-0f00-11ed-aeb9-287fcfeb4376
but you actually need to remove the - between root and uuid,
Code: Select all
find --set-root uuid () 054a04b8-0f00-11ed-aeb9-287fcfeb4376
Re: Frugal install, What is a working menu.lst entry for it?
Posted: Thu Nov 23, 2023 9:37 am
by BarryK
xx_T3n0ch_X wrote: Thu Nov 23, 2023 3:33 amThere is an error in the Grub4dos entry, initially, I could not load the system, the tutorial includes the line
Code: Select all
find --set-root-uuid () 054a04b8-0f00-11ed-aeb9-287fcfeb4376
but you actually need to remove the - between root and uuid,
Code: Select all
find --set-root uuid () 054a04b8-0f00-11ed-aeb9-287fcfeb4376
Thanks for reporting that, I will fix it.