Enter SYSLinux bootmenu from GRUB 2


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Enter SYSLinux bootmenu from GRUB 2
# 1  
Old 05-29-2013
Enter SYSLinux bootmenu from GRUB 2

hello guys!

i found this thread [*] on the internet and registered right here in this community.

on a USB-drive i installed Debian. boot manager is GRUB 2 (1.99) [1]. in a folder within my Debian i have some ISO-images of some linux-distros and other live-systems. one of these is Parted Magic, which i can start via GRUB 2 with an menuentry in "40_custom" [2]. this works fine and i'm happy with it...

the only problem i have now is, that this way i can't enter Parted Magic's boot-manager [3] (SYSLINUX AFAIK). because of my menuentry in GRUB 2 [2], Parted Magic boots directly without accessing it's boot-manager.

in this way i can not:
  • choose between 32 or 64 bit
  • choose language and keyboard-locale
  • start Clonezilla or other tools that came with Parted Magic
  • do or change some more options...

my question is now: how can i access a boot-manager of an ISO (in Parted Magic's case SYSLINUX [3]) from GRUB 2 [1]?


as an alternative solution i could add all boot-menu entries from SYSLINUX to my GRUB 2 - BUT: this is a huge amount of work to do and with a newer version of this live-system maybe there will be other entries, so that i have to rework my GRUB 2-entries at every time, when a newer version comes out...

what i also tried (after i took the screenshot [1], so it's not to see on it now): i added a new partition on my USB-stick and placed (via "dd") the content of the Parted Magic ISO-image in this partition. with another menuentry [4] in my GRUB 2 i tried to came into the boot-manager of this new partition, but this also didn't work yet...


---

[*]
unix.com/unix-dummies-questions-answers/132619-how-get-grub-launch-isolinux-syslinux-boot-menu.html
(i'm not allowed to add "real" URLs, because of new member restriction...)


[1]
Image


[2]
Code:
menuentry "Parted Magic 2013-05-01" {
set isofile="/root/software/images/partedmagic_2013-05-01.iso"
loopback loop (hd0,1)$isofile
linux (loop)/pmagic/bzImage iso_filename=$isofile boot=live
initrd (loop)/pmagic/initrd.img

[3]
Image


[4]
Code:
menuentry "Parted Magic 2013-05-01 from Partition" {
  insmod ext3
  set root=(hd0,3)
  chainloader +1
}


Last edited by J0CH3N; 05-30-2013 at 09:06 AM..
 
Login or Register to Ask a Question

Previous Thread | Next Thread

4 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Loop logic, enter into respective IF as per enter input file name

have three big data file, however I just need to see the mentioned below one line form the all the file which has SERVER_CONNECTION Value File 1 export SERVER_CONNECTION=//dvlna002:10001/SmartServer File2 export SERVER_CONNECTION=///SmartServer File3 export... (1 Reply)
Discussion started by: Nsharma3006
1 Replies

2. Red Hat

Can we specify which grub.conf to use in grub-install.

Hi, Can we specify which grub.conf to use while installing grub on RHEL. We are working on application which requires different grub configurations needed, depending on certain criteria we need to update grub with correct grub.conf. Can we use grub-install for this purpose? (4 Replies)
Discussion started by: successlin
4 Replies

3. UNIX for Dummies Questions & Answers

How to get grub to launch isolinux/syslinux boot menu.

Hello, I'm trying to get a multi-boot setup going for a USB. I have different vfat-32 partitions I have copied ISOs of several linux distros. The first one I installed using unetbootin, which works great and uses syslinux, but syslinux can't boot other partitions. So, I have grub... (1 Reply)
Discussion started by: Narnie
1 Replies

4. UNIX for Dummies Questions & Answers

grub problem- keeps rebooting as soon as it tries to do grub

Hi, I installed solaris 10 a few weeks ago. It was working fine during the past two weeks. However, now when I start to load to the drive, I get this problem: The BIOS screen comes up like normal, then screen goes blank and a message "Grub loading stage 2" flashes real quick then the computer... (1 Reply)
Discussion started by: moesays
1 Replies
Login or Register to Ask a Question