Page 1 of 1

Slackware iso parm - [Solved]

Posted: 30 May 2017, 05:07
by Ed_P
Anyone booted a slackware-live iso? I've been trying to boot slackware64-live-xfce-current.iso as an iso with grub2 and failing with a media not found error and a suggestion to issue a mount command.

This is what I'm using in grub2:

Code: Select all

     set iso='/ISOs/slackware64-live-xfce-current.iso'
     set bootparms='load_ramdisk=1 prompt_ramdisk=0 rw printk.time=0 kbd=us '
     
# Possible ISO boot parms: from=all from=$iso, fromiso=$iso, findiso=$iso, iso-scan/filename=$iso 

     search -f $iso --set=root
     loopback loop $iso
     linux (loop)/boot/generic livemedia=/dev/sd6:/$iso $bootparms
     initrd (loop)/boot/initrd.img

Re: Slackware iso

Posted: 30 May 2017, 05:46
by Ed_P
Found the problem. :fool:

This

Code: Select all

     linux (loop)/boot/generic livemedia=/dev/sd6:/$iso $bootparms
should be

Code: Select all

     linux (loop)/boot/generic livemedia=/dev/sda6:/$iso $bootparms
:good:

Re: Slackware iso parm - [Solved]

Posted: 30 May 2017, 10:59
by Evan
sd6 <----------> sda6

LOL , took me a while to spot it.

Re: Slackware iso parm - [Solved]

Posted: 30 May 2017, 14:02
by Ed_P
^ I know! Me too. :D