LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions
User Name
Password
Linux - Distributions This forum is for Distribution specific questions.
Red Hat, Slackware, Debian, Novell, LFS, Mandriva, Ubuntu, Fedora - the list goes on and on... Note: An (*) indicates there is no official participation from that distribution here at LQ.

Notices


Reply
  Search this Thread
Old 06-14-2019, 08:28 AM   #1
wiokru
LQ Newbie
 
Registered: Jun 2019
Posts: 6

Rep: Reputation: Disabled
Linux Live Kit. Creating live system - could not locate data error.


Hi all I'm trying to make a live version of my current system (Slackware 14.2, ver. 64bit) with Linux live kit scripts. I'm using kernel with aufs support and have squashfs-tools installed. But each time I'm creating live distro and try to boot it, it stops at
Looking for mySys data in /mySys ...
and then I'm getting an error saying:
Fatal error occurred - Could not locate mySys data

I have no idea what's causing that. I've tried to add from= parameter to syslinux.cfg but that doesn't help.

Does anyone have any idea how can I fix that?
Or maybe knows a different way to achieve what I want
I'll be grateful for any help.
 
Old 06-14-2019, 09:39 AM   #2
linus72
LQ Guru
 
Registered: Jan 2009
Location: Gordonsville-AKA Mayberry-Virginia
Distribution: Slack14.2/Many
Posts: 5,573

Rep: Reputation: 470Reputation: 470Reputation: 470Reputation: 470Reputation: 470
Have you edited anything in the config or build scripts?
What kernel are you using and how did you patch it?
 
Old 06-14-2019, 09:44 AM   #3
wiokru
LQ Newbie
 
Registered: Jun 2019
Posts: 6

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by linus72 View Post
Have you edited anything in the config or build scripts?
What kernel are you using and how did you patch it?
Yes, I've changed config to use specified kernel (changed path to /boot/vmlinuz)
Didn't change anything in build script, tho.
The kernel I'm using is one of xanmod kernels, already patched.
I've downloaded sources and compiled it (ver. 5.1.4)
https://xanmod.org/
 
Old 06-14-2019, 09:46 AM   #4
linus72
LQ Guru
 
Registered: Jan 2009
Location: Gordonsville-AKA Mayberry-Virginia
Distribution: Slack14.2/Many
Posts: 5,573

Rep: Reputation: 470Reputation: 470Reputation: 470Reputation: 470Reputation: 470
so everything went error free during build and it output a folder named MySys?
are you booting off hard drive or usb?
 
Old 06-14-2019, 09:49 AM   #5
wiokru
LQ Newbie
 
Registered: Jun 2019
Posts: 6

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by linus72 View Post
so everything went error free during build and it output a folder named MySys?
are you booting off hard drive or usb?
Yes, I'm not getting errors during build, generating zip or running bootinst.sh script.
I'm booting from USB, and the system I'm trying to make live is installed on vmplayer

Last edited by wiokru; 06-14-2019 at 09:50 AM.
 
Old 06-14-2019, 09:51 AM   #6
linus72
LQ Guru
 
Registered: Jan 2009
Location: Gordonsville-AKA Mayberry-Virginia
Distribution: Slack14.2/Many
Posts: 5,573

Rep: Reputation: 470Reputation: 470Reputation: 470Reputation: 470Reputation: 470
ok so you created it from a virtual disk...that shouldnt make a difference...
can you post your syslinux.cfg for me?
just copy/paste it into your reply
 
Old 06-14-2019, 10:34 AM   #7
wiokru
LQ Newbie
 
Registered: Jun 2019
Posts: 6

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by linus72 View Post
ok so you created it from a virtual disk...that shouldnt make a difference...
can you post your syslinux.cfg for me?
just copy/paste it into your reply



UI /MySys/boot/vesamenu.c32

TIMEOUT 140
MENU ROWS 4

MENU CLEAR
MENU BACKGROUND /MySys/boot/bootlogo.png

LABEL default
MENU LABEL Run Linux
KERNEL /MySys/boot/vmlinuz-5.1.4-xanmod3
APPEND vga=769 initrd=/MySys/boot/initrfs.img load_ramdisk=1 prompt_ramdisk=0 rw printk.time=0
from=MySys

LABEL default
MENU LABEL Run Linux debug
KERNEL /MySys/boot/vmlinuz-5.1.4-xanmod3
APPEND vga=769 initrd=/MySys/boot/initrfs.img load_ramdisk=1 prompt_ramdisk=0 rw printk.time=0 debug
 
Old 06-14-2019, 10:38 AM   #8
linus72
LQ Guru
 
Registered: Jan 2009
Location: Gordonsville-AKA Mayberry-Virginia
Distribution: Slack14.2/Many
Posts: 5,573

Rep: Reputation: 470Reputation: 470Reputation: 470Reputation: 470Reputation: 470
Is your squashfs file in boot or MySys folder?
it's called 01-core.sb, is it in boot or in MySys folder?
 
Old 06-14-2019, 10:40 AM   #9
wiokru
LQ Newbie
 
Registered: Jun 2019
Posts: 6

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by linus72 View Post
Is your squashfs file in boot or MySys folder?
it's called 01-core.sb, is it in boot or in MySys folder?
It's in MySys folder.
 
Old 06-14-2019, 10:42 AM   #10
linus72
LQ Guru
 
Registered: Jan 2009
Location: Gordonsville-AKA Mayberry-Virginia
Distribution: Slack14.2/Many
Posts: 5,573

Rep: Reputation: 470Reputation: 470Reputation: 470Reputation: 470Reputation: 470
ok try moving your vmlinuz and initrd up into the MySys folder and dont use the from=MySys parameter.
Edit your syslinux.cfg too, so it'd be /MySys/vmlinuz-5.1.4-xanmod3 etc
Did your linux live kit make it that way with vmlinuz/initrd in MySys/boot folder?
 
Old 06-14-2019, 10:50 AM   #11
wiokru
LQ Newbie
 
Registered: Jun 2019
Posts: 6

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by linus72 View Post
ok try moving your vmlinuz and initrd up into the MySys folder and dont use the from=MySys parameter.
Edit your syslinux.cfg too, so it'd be /MySys/vmlinuz-5.1.4-xanmod3 etc
Did your linux live kit make it that way with vmlinuz/initrd in MySys/boot folder?

Nope, now it does not boot at all - it goes into a boot loop
 
Old 06-14-2019, 10:56 AM   #12
linus72
LQ Guru
 
Registered: Jan 2009
Location: Gordonsville-AKA Mayberry-Virginia
Distribution: Slack14.2/Many
Posts: 5,573

Rep: Reputation: 470Reputation: 470Reputation: 470Reputation: 470Reputation: 470
That's strange...
I think you should try my variation of it and see what happens please?
You can find it here
https://sourceforge.net/projects/lin...-slack-debian/

I dont think its your kernel, You havent overly edited anything so the only other thing is you made it from a virtual image.
I make all mine from hard drive or frugal hard drive install.

Have you tried booting it from hard drive?
You just need to place the MySys folder on a partition (ext2/3/4 or ntfs/fat32 and edit your grub.cfg to boot it.
Here's my grub.cfg, you can see I have many running around lol

Code:
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
insmod part_gpt
insmod part_msdos
if [ -s $prefix/grubenv ]; then
  load_env
fi
if [ "${next_entry}" ] ; then
   set default="${next_entry}"
   set next_entry=
   save_env next_entry
   set boot_once=true
else
   set default="1"
fi

if [ x"${feature_menuentry_id}" = xy ]; then
  menuentry_id_option="--id"
else
  menuentry_id_option=""
fi

export menuentry_id_option

if [ "${prev_saved_entry}" ]; then
  set saved_entry="${prev_saved_entry}"
  save_env saved_entry
  set prev_saved_entry=
  save_env prev_saved_entry
  set boot_once=true
fi

function savedefault {
  if [ -z "${boot_once}" ]; then
    saved_entry="${chosen}"
    save_env saved_entry
  fi
}

function load_video {
  if [ x$feature_all_video_module = xy ]; then
    insmod all_video
  else
    insmod efi_gop
    insmod efi_uga
    insmod ieee1275_fb
    insmod vbe
    insmod vga
    insmod video_bochs
    insmod video_cirrus
  fi
}

set menu_color_normal=yellow/black
set menu_color_highlight=light-cyan/blue

if [ x$feature_default_font_path = xy ] ; then
   font=unicode
else
insmod part_msdos
insmod ext2
set root='hd0,msdos2'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint-ieee1275='ieee1275//disk@0,msdos2' --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2  b72ad7a1-89ab-48c9-a8b4-e40f8f7e024b
else
  search --no-floppy --fs-uuid --set=root b72ad7a1-89ab-48c9-a8b4-e40f8f7e024b
fi
    font="/usr/share/grub/unicode.pf2"
fi

if loadfont $font ; then
  set gfxmode=640x480x16
  load_video
  insmod gfxterm
  set locale_dir=$prefix/locale
  set lang=en_US
  insmod gettext
fi
terminal_input console
terminal_output gfxterm
insmod part_msdos
insmod ext2
set root='hd0,msdos2'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint-ieee1275='ieee1275//disk@0,msdos2' --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2  b72ad7a1-89ab-48c9-a8b4-e40f8f7e024b
else
  search --no-floppy --fs-uuid --set=root b72ad7a1-89ab-48c9-a8b4-e40f8f7e024b
fi
insmod gfxmenu
loadfont ($root)/boot/grub/themes/slackware/ascii.pf2
loadfont ($root)/boot/grub/themes/slackware/DejaVuSans10.pf2
loadfont ($root)/boot/grub/themes/slackware/DejaVuSans12.pf2
loadfont ($root)/boot/grub/themes/slackware/DejaVuSans-Bold14.pf2
insmod png
set theme=($root)/boot/grub/themes/slackware/theme.txt
export theme
if [ x$feature_timeout_style = xy ] ; then
  set timeout_style=menu
  set timeout=5
# Fallback normal timeout code in case the timeout_style feature is
# unavailable.
else
  set timeout=10
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/10_linux ###
menuentry 'PLOP' --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-b72ad7a1-89ab-48c9-a8b4-e40f8f7e024b' {
	load_video
	set gfxpayload=keep
	insmod gzio
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos2'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-ieee1275='ieee1275//disk@0,msdos2' --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2  b72ad7a1-89ab-48c9-a8b4-e40f8f7e024b
	else
	  search --no-floppy --fs-uuid --set=root b72ad7a1-89ab-48c9-a8b4-e40f8f7e024b
	fi
	linux16	/boot/plpbt
}
menuentry 'ArcoLinuxB Linux' --class arcolinuxb --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-b72ad7a1-89ab-48c9-a8b4-e40f8f7e024b' {
	load_video
	set gfxpayload=keep
	insmod gzio
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos2'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-ieee1275='ieee1275//disk@0,msdos2' --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2  b72ad7a1-89ab-48c9-a8b4-e40f8f7e024b
	else
	  search --no-floppy --fs-uuid --set=root b72ad7a1-89ab-48c9-a8b4-e40f8f7e024b
	fi
	echo	'Loading Linux linux ...'
	linux	/boot/vmlinuz-linux root=UUID=b72ad7a1-89ab-48c9-a8b4-e40f8f7e024b rw  quiet resume=UUID=1bb80d05-a82c-4763-92d5-6b222e9d700e
	echo	'Loading initial ramdisk ...'
	initrd	/boot/initramfs-linux.img
}
menuentry 'ArcoLinuxB Linux Recovery (fallback initramfs)' --class arcolinuxb --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-fallback-b72ad7a1-89ab-48c9-a8b4-e40f8f7e024b' {
		load_video
		set gfxpayload=keep
		insmod gzio
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-ieee1275='ieee1275//disk@0,msdos2' --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2  b72ad7a1-89ab-48c9-a8b4-e40f8f7e024b
		else
		  search --no-floppy --fs-uuid --set=root b72ad7a1-89ab-48c9-a8b4-e40f8f7e024b
		fi
		echo	'Loading Linux linux ...'
		linux	/boot/vmlinuz-linux root=UUID=b72ad7a1-89ab-48c9-a8b4-e40f8f7e024b rw  quiet resume=UUID=1bb80d05-a82c-4763-92d5-6b222e9d700e
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initramfs-linux-fallback.img
	}
}

### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_linux_xen ###
### END /etc/grub.d/20_linux_xen ###

### BEGIN /etc/grub.d/30_os-prober_proxy ###
menuentry "Ronin Debian Live (on /dev/sda1)" --class debian buster --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-8c93d1f6-eeff-4bba-a743-838f86fd114a' {
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos1'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-ieee1275='ieee1275//disk@0,msdos1' --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  8c93d1f6-eeff-4bba-a743-838f86fd114a
	else
	  search --no-floppy --fs-uuid --set=root 8c93d1f6-eeff-4bba-a743-838f86fd114a
	fi
	linux /RoninOS/vmlinuz vga=788 initrd=/RoninOS/initrfs.img load_ramdisk=1 prompt_ramdisk=0 rw printk.time=0 slax.flags=perch
	initrd /RoninOS/initrfs.img
}
menuentry "Ronin Xanmod Live (on /dev/sda1)" --class debian buster --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-8c93d1f6-eeff-4bba-a743-838f86fd114a' {
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos1'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-ieee1275='ieee1275//disk@0,msdos1' --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  8c93d1f6-eeff-4bba-a743-838f86fd114a
	else
	  search --no-floppy --fs-uuid --set=root 8c93d1f6-eeff-4bba-a743-838f86fd114a
	fi
	linux /RoninOS/vmlinuzx vga=788 initrd=/RoninOS/initrfsx.img load_ramdisk=1 prompt_ramdisk=0 rw printk.time=0 slax.flags=perch
	initrd /RoninOS/initrfsx.img
}
menuentry 'Buster Build Xanmod' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-8c93d1f6-eeff-4bba-a743-838f86fd114a' {
	load_video
	insmod gzio
	if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos1'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  8c93d1f6-eeff-4bba-a743-838f86fd114a
	else
	  search --no-floppy --fs-uuid --set=root 8c93d1f6-eeff-4bba-a743-838f86fd114a
	fi
	linux	/boot/vmlinuz-5.1.4-xanmod3 root=UUID=8c93d1f6-eeff-4bba-a743-838f86fd114a ro 
	initrd	/boot/initrd.img-5.1.4-xanmod3
}
menuentry "Buster Build (on /dev/sda1)" --class debian buster --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-8c93d1f6-eeff-4bba-a743-838f86fd114a' {
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos1'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-ieee1275='ieee1275//disk@0,msdos1' --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  8c93d1f6-eeff-4bba-a743-838f86fd114a
	else
	  search --no-floppy --fs-uuid --set=root 8c93d1f6-eeff-4bba-a743-838f86fd114a
	fi
	linux /boot/vmlinuz-4.19.0-5-amd64 root=UUID=8c93d1f6-eeff-4bba-a743-838f86fd114a ro
	initrd /boot/initrd.img-4.19.0-5-amd64
}
menuentry "Buster Build Recovery (on /dev/sda1)" --class debian buster --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-8c93d1f6-eeff-4bba-a743-838f86fd114a' {
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos1'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-ieee1275='ieee1275//disk@0,msdos1' --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  8c93d1f6-eeff-4bba-a743-838f86fd114a
	else
	  search --no-floppy --fs-uuid --set=root 8c93d1f6-eeff-4bba-a743-838f86fd114a
	fi
	linux /vmlinuz root=UUID=8c93d1f6-eeff-4bba-a743-838f86fd114a ro single
	initrd /initrd.img
}
menuentry "LIVE Buster (on /dev/sda1)" --class debian buster --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-8c93d1f6-eeff-4bba-a743-838f86fd114a' {
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos1'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-ieee1275='ieee1275//disk@0,msdos1' --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  8c93d1f6-eeff-4bba-a743-838f86fd114a
	else
	  search --no-floppy --fs-uuid --set=root 8c93d1f6-eeff-4bba-a743-838f86fd114a
	fi
	linux /Buster/vmlinuz vga=788 initrd=/Buster/initrfs.img load_ramdisk=1 prompt_ramdisk=0 rw printk.time=0 slax.flags=perch
	initrd /Buster/initrfs.img
}
### END /etc/grub.d/30_os-prober_proxy ###

### BEGIN /etc/grub.d/40_custom_proxy ###
menuentry "Generic Slackware 14.2 (on /dev/sda3)" --class slackware --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-5f562de2-5c23-4f95-a6ae-5b97c8d348bb' {
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos3'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-ieee1275='ieee1275//disk@0,msdos3' --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3  5f562de2-5c23-4f95-a6ae-5b97c8d348bb
	else
	  search --no-floppy --fs-uuid --set=root 5f562de2-5c23-4f95-a6ae-5b97c8d348bb
	fi
	linux /boot/vmlinuz root=/dev/sda3 ro  vt.default_utf8=0 vga = normal
	initrd /boot/initrd.gz
}
menuentry "PWriter LIVE 5.0.8-xanmod5 (on /dev/sda3)" --class slackware --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-5f562de2-5c23-4f95-a6ae-5b97c8d348bb' {
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos3'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-ieee1275='ieee1275//disk@0,msdos3' --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3  5f562de2-5c23-4f95-a6ae-5b97c8d348bb
	else
	  search --no-floppy --fs-uuid --set=root 5f562de2-5c23-4f95-a6ae-5b97c8d348bb
	fi
	linux /Pwriter/vmlinuz vga=788 initrd=/Pwriter/initrfs.img load_ramdisk=1 prompt_ramdisk=0 rw printk.time=0 slax.flags=perch
	initrd /Pwriter/initrfs.img
}
menuentry "Slacker LIVE 4.4.172l (on /dev/sda3)" --class slackware --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-5f562de2-5c23-4f95-a6ae-5b97c8d348bb' {
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos3'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-ieee1275='ieee1275//disk@0,msdos3' --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3  5f562de2-5c23-4f95-a6ae-5b97c8d348bb
	else
	  search --no-floppy --fs-uuid --set=root 5f562de2-5c23-4f95-a6ae-5b97c8d348bb
	fi
	linux /Slacker/vmlinuz vga=788 initrd=/Slacker/initrfs.img load_ramdisk=1 prompt_ramdisk=0 rw printk.time=0 slax.flags=perch noload=runlevel3.sb
	initrd /Slacker/initrfs.img
}
### END /etc/grub.d/40_custom_proxy ###

### BEGIN /etc/grub.d/41_os-prober_proxy ###
menuentry "Slackware Current Build (on /dev/sda5)" --class slackware --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-6be5b691-f45e-407e-873a-dcb0b012bf4b' {
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos5'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-ieee1275='ieee1275//disk@0,msdos5' --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5  6be5b691-f45e-407e-873a-dcb0b012bf4b
	else
	  search --no-floppy --fs-uuid --set=root 6be5b691-f45e-407e-873a-dcb0b012bf4b
	fi
	linux /boot/vmlinuz-4.19.47-xanmod24 root=/dev/sda5 ro   vga = normal
	initrd /boot/initrdx24.gz
}
menuentry "LIVE Slacker Current (on /dev/sda5)" --class slackware --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-6be5b691-f45e-407e-873a-dcb0b012bf4b' {
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos5'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-ieee1275='ieee1275//disk@0,msdos5' --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5  6be5b691-f45e-407e-873a-dcb0b012bf4b
	else
	  search --no-floppy --fs-uuid --set=root 6be5b691-f45e-407e-873a-dcb0b012bf4b
	fi
	linux /Slackerc/vmlinuz  vga=788 initrd=/Slackerc/initrfs.img load_ramdisk=1 prompt_ramdisk=0 rw printk.time=0 slax.flags=perch noload=runlevel3.sb
	initrd /Slackerc/initrfs.img
}
menuentry "SlackerR LIVE (on /dev/sda6)" --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-2359cd84-dc34-4386-a3ba-f441e7fce7bc' {
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos6'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-ieee1275='ieee1275//disk@0,msdos6' --hint-bios=hd0,msdos6 --hint-efi=hd0,msdos6 --hint-baremetal=ahci0,msdos6  2359cd84-dc34-4386-a3ba-f441e7fce7bc
	else
	  search --no-floppy --fs-uuid --set=root 2359cd84-dc34-4386-a3ba-f441e7fce7bc
	fi
	linux /SlackerR/vmlinuz  vga=788 initrd=/SlackerR/initrfs.img load_ramdisk=1 prompt_ramdisk=0 rw printk.time=0 slax.flags=perch
	initrd /SlackerR/initrfs.img 
}
menuentry "LIVE Stretch (on /dev/sda6)" --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-2359cd84-dc34-4386-a3ba-f441e7fce7bc' {
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos6'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-ieee1275='ieee1275//disk@0,msdos6' --hint-bios=hd0,msdos6 --hint-efi=hd0,msdos6 --hint-baremetal=ahci0,msdos6  2359cd84-dc34-4386-a3ba-f441e7fce7bc
	else
	  search --no-floppy --fs-uuid --set=root 2359cd84-dc34-4386-a3ba-f441e7fce7bc
	fi
	linux /Stretch/vmlinuz  vga=788 initrd=/Stretch/initrfs.img load_ramdisk=1 prompt_ramdisk=0 rw printk.time=0 slax.flags=perch
	initrd /Stretch/initrfs.img 
}
menuentry "Stretch Build GNU/Linux 9 (on /dev/sda6)" --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-2359cd84-dc34-4386-a3ba-f441e7fce7bc' {
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos6'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-ieee1275='ieee1275//disk@0,msdos6' --hint-bios=hd0,msdos6 --hint-efi=hd0,msdos6 --hint-baremetal=ahci0,msdos6  2359cd84-dc34-4386-a3ba-f441e7fce7bc
	else
	  search --no-floppy --fs-uuid --set=root 2359cd84-dc34-4386-a3ba-f441e7fce7bc
	fi
	linux /vmlinuz root=UUID=2359cd84-dc34-4386-a3ba-f441e7fce7bc ro 
	initrd /initrd.img
}
menuentry "Stretch Build (recovery mode) (on /dev/sda6)" --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.9.0-8-amd64-root=UUID=2359cd84-dc34-4386-a3ba-f441e7fce7bc ro single-2359cd84-dc34-4386-a3ba-f441e7fce7bc' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos6'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-ieee1275='ieee1275//disk@0,msdos6' --hint-bios=hd0,msdos6 --hint-efi=hd0,msdos6 --hint-baremetal=ahci0,msdos6  2359cd84-dc34-4386-a3ba-f441e7fce7bc
		else
		  search --no-floppy --fs-uuid --set=root 2359cd84-dc34-4386-a3ba-f441e7fce7bc
		fi
		linux /vmlinuz root=UUID=2359cd84-dc34-4386-a3ba-f441e7fce7bc ro single
		initrd /initrd.img
}
menuentry "LIVE Writer (on /dev/sda6)" --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-2359cd84-dc34-4386-a3ba-f441e7fce7bc' {
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos6'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-ieee1275='ieee1275//disk@0,msdos6' --hint-bios=hd0,msdos6 --hint-efi=hd0,msdos6 --hint-baremetal=ahci0,msdos6  2359cd84-dc34-4386-a3ba-f441e7fce7bc
	else
	  search --no-floppy --fs-uuid --set=root 2359cd84-dc34-4386-a3ba-f441e7fce7bc
	fi
	linux /Writer/vmlinuz  vga=788 initrd=/Writer/initrfs.img load_ramdisk=1 prompt_ramdisk=0 rw printk.time=0 slax.flags=perch
	initrd /Writer/initrfs.img 
}
menuentry "SlackerF LIVE (on /dev/sda7)" --class slackware --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-a101efd4-c90e-4431-8cdb-b5348e9626cd' {
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos7'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-ieee1275='ieee1275//disk@0,msdos7' --hint-bios=hd0,msdos7 --hint-efi=hd0,msdos7 --hint-baremetal=ahci0,msdos7  a101efd4-c90e-4431-8cdb-b5348e9626cd
	else
	  search --no-floppy --fs-uuid --set=root a101efd4-c90e-4431-8cdb-b5348e9626cd
	fi
	linux /Slackerf/vmlinuz vga=788 initrd=/Slackerf/initrfs.img load_ramdisk=1 prompt_ramdisk=0 rw printk.time=0 slax.flags=perch
	initrd /Slackerf/initrfs.img
}
menuentry "NfluxOS 10.10" {
        insmod part_msdos
        insmod ext2
        set root='hd0,msdos1'
        if [ x$feature_platform_search_hint = xy ]; then
          search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  624bc8a6-e85d-461a-92ea-7d2031bfa347
        else
          search --no-floppy --fs-uuid --set=root 624bc8a6-e85d-461a-92ea-7d2031bfa347
        fi
        iso_path="/Ubuntu-new-10.10.iso"
        export iso_path
        loopback loop /Ubuntu-new-10.10.iso
        linux (loop)/casper/vmlinuz file=/cdrom/preseed/ubuntu.seed boot=casper initrd=/casper/initrd.lz noprompt cdrom-detect/try-usb=true iso-scan/filename=/Ubuntu-new-10.10.iso noeject noprompt
        initrd (loop)/casper/initrd.lz
}
menuentry "Grml Rescue System (RoninOS-053119-x86_64.iso)" {
        insmod part_msdos
        insmod ext2
        set root='hd0,msdos1'
        if [ x$feature_platform_search_hint = xy ]; then
          search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  8c93d1f6-eeff-4bba-a743-838f86fd114a
        else
          search --no-floppy --fs-uuid --set=root 8c93d1f6-eeff-4bba-a743-838f86fd114a
        fi
        iso_path="/boot/grml/RoninOS-053119-x86_64.iso"
        export iso_path
        kernelopts="   "
        export kernelopts
        loopback loop "/boot/grml/RoninOS-053119-x86_64.iso"
        set root=(loop)
        configfile /boot/grub/loopback.cfg
}
menuentry "Grml Rescue System (grml64-full_testing_latest.iso)" {
        insmod part_msdos
        insmod ext2
        set root='hd0,msdos1'
        if [ x$feature_platform_search_hint = xy ]; then
          search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  8c93d1f6-eeff-4bba-a743-838f86fd114a
        else
          search --no-floppy --fs-uuid --set=root 8c93d1f6-eeff-4bba-a743-838f86fd114a
        fi
        iso_path="/boot/grml/grml64-full_testing_latest.iso"
        export iso_path
        kernelopts="   "
        export kernelopts
        loopback loop "/boot/grml/grml64-full_testing_latest.iso"
        set root=(loop)
        configfile /boot/grub/loopback.cfg
}
### END /etc/grub.d/41_os-prober_proxy ###

### BEGIN /etc/grub.d/42_custom_proxy ###

# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.



### END /etc/grub.d/42_custom_proxy ###

### BEGIN /etc/grub.d/43_custom ###
if [ -f  ${config_directory}/custom.cfg ]; then
  source ${config_directory}/custom.cfg
elif [ -z "${config_directory}" -a -f  $prefix/custom.cfg ]; then
  source $prefix/custom.cfg;
fi
### END /etc/grub.d/43_custom ###

### BEGIN /etc/grub.d/44_grub-customizer_menu_color_helper ###
### END /etc/grub.d/44_grub-customizer_menu_color_helper ###

### BEGIN /etc/grub.d/60_memtest86+ ###
if [ "${grub_platform}" == "pc" ]; then
    menuentry "Memory Tester (memtest86+)" --class memtest86 --class gnu --class tool {
        search --fs-uuid --no-floppy --set=root --hint-ieee1275='ieee1275//disk@0,msdos2' --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2  b72ad7a1-89ab-48c9-a8b4-e40f8f7e024b
        linux16 /boot/memtest86+/memtest.bin 
    }
fi
### END /etc/grub.d/60_memtest86+ ###
 
  


Reply

Tags
data, kit, linux, live, slackware



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Kit for easy creating of your own live distro Mr. Alex Linux - Distributions 1 12-22-2013 05:38 PM
[SOLVED] E: Unable to locate package nova-comm E: Unable to locate package python-psycopq2 mint12 Linux - Virtualization and Cloud 2 01-05-2012 12:07 PM
Package kit error - comp categories could not be loaded bmartin220 Linux - Newbie 2 11-20-2008 11:39 PM
cpan> locate -u Unknown shell command 'locate -u'. Type ? for help. sharad2005 Linux From Scratch 1 08-04-2006 12:40 AM
Can't locate locate hindenbergbaby Linux - Newbie 3 10-22-2003 04:13 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions

All times are GMT -5. The time now is 06:19 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration