Page 1 of 2 12 LastLast
Results 1 to 10 of 12

Thread: runtimelivecd frugal or loopback

  1. #1
    Junior Member
    Join Date
    Mar 2015
    Posts
    6

    runtimelivecd frugal or loopback

    Hi,

    Have been trying to do a frugal install thru menu.lst (grub legacy)
    or a loopback install thru grub.cfg (grub2).

    Have followed the wiki info verbatim for other Knoppix iso's to
    no avail. This is the runtimelivecd.iso which is a Knoppix system
    recovery disc. Used the isolinux.cfg as boot parameters to no
    avail and also some other boot parameters (bootfrom=) on both
    grub and grub2. No go.

    Error messages include cannot find KNOPPIX on /isos/runtimelivecd.iso
    and Searching for Runtime Live cannot find.

    Like it's looking for a CD drive and can't find it tho boot parameters
    give the iso location.

    So, rather than throwing dice at my grub.cfg all day long I need to ask.

    For a grub.cfg loopback what is the proper stanza for this iso ? menu.lst
    is also a possibility but my flash drive has grub2 on it and that would be great
    if a loopback in there with grub.cfg completed boot OK then.

    thanks in advance.

    Patrick

  2. #2
    Moderator Moderator
    Join Date
    Nov 2010
    Location
    Germany/ Dietzenbach
    Posts
    1,124
    Have followed the wiki info verbatim..
    I suppose you are speaking about this Wiki and the method ISO install to HD.

    Please tell us the menuentry you've append within '/etc/grub.d/40_custom'.

  3. #3
    Junior Member
    Join Date
    Mar 2015
    Posts
    6
    Quote Originally Posted by Werner P. Schulz View Post
    I suppose you are speaking about this Wiki and the method ISO install to HD.

    Please tell us the menuentry you've append within '/etc/grub.d/40_custom'.
    Yes, that is the main source for info.

    Here are 2 stanzas I tried before giving up. And thanks for the response.

    Code:
    menuentry "KNOPPIX LOOPBACK"   {
            echo     Please Wait
            insmod loopback
            loopback loop /isos/runtimelivecd.iso
            linux (loop)/boot/isolinux/linux iso_filename=/isos/runtimelivecd.iso myconfig=/mnt ramdisk_size=100000 lang=en apm=power-off initrd=minirt.gz nomce libata.force=noncq hpsa.hpsa_allow_any=1 loglevel=1 noswap tz=localtime debug
            initrd (loop)/boot/isolinux/minirt.gz
    }
    
    
    menuentry "Knoppix Runtime" {
               echo     Please Wait 
             # set root=(hd0,1)
               loopback loop /isos/runtimelivecd.iso
               linux (loop)/boot/isolinux/linux root=(loop) toram bootfrom=/dev/sdb1/isos/runtimelivecd.iso
               initrd (loop)/boot/isolinux/minirt.gz
    }

    If the ISO had a loopback.cfg file I could boot it with this line:

    configfile /boot/grub/loopback.cfg

    So easy but it doesn't.

  4. #4
    Moderator Moderator
    Join Date
    Nov 2010
    Location
    Germany/ Dietzenbach
    Posts
    1,124
    If you've really read this Wiki, why doesn't you use the example there for the menuentry within '/etc/grub.d/40_custom'? The examples you've posted cannot work.

  5. #5
    Junior Member
    Join Date
    Mar 2015
    Posts
    6
    Quote Originally Posted by Werner P. Schulz View Post
    If you've really read this Wiki, why doesn't you use the example there for the menuentry within '/etc/grub.d/40_custom'? The examples you've posted cannot work.
    I did just today, the stanza wouldn't even start. So I tried some modifications
    and at least it tried to look for the iso. The exact config there for sdb1 (flash drive)
    is a no go.

    thanks for the response, if you think of anything else let me know.


    Patrick

  6. #6
    Moderator Moderator
    Join Date
    Nov 2010
    Location
    Germany/ Dietzenbach
    Posts
    1,124
    Code:
    menuentry "KNOPPIX LOOPBACK"   {
            echo     Please Wait
            insmod loopback
            loopback loop (hd1,1)/isos/runtimelivecd.iso
            linux (loop)/boot/isolinux/linux bootfrom=/dev/sdb1/isos/runtimelivecd.iso iso_filename=/isos/runtimelivecd.iso myconfig=/mnt ramdisk_size=100000 lang=en apm=power-off >initrd=minirt.gz< nomce libata.force=noncq hpsa.hpsa_allow_any=1 loglevel=1 noswap tz=localtime debug
            initrd (loop)/boot/isolinux/minirt.gz
    }
    Delete the blue part, insert the red part.
    Last edited by Werner P. Schulz; 03-03-2015 at 09:34 AM.

  7. #7
    Junior Member
    Join Date
    Mar 2015
    Posts
    6
    No go, wish I could say otherwise.

    My loopback and frugal install syntax keeps getting a result where it says that

    Cannot read Knoppix from dir from iso /dev/sdb1/isos/runtimelivecd.iso (or similar message)

    I'm tempted to say my flash drive needs to be FAT32, this one is a linux filesystem.

    Anyway, here's the actual iso location, no rush at all, if ever you can get a loopback or frugal
    install stanza to work for grub2 let me know.

    Thanks for taking a look, have a good one.

    Patrick



    ---------
    Full quote and link to commercial software deleted
    Last edited by Werner P. Schulz; 03-07-2015 at 10:04 PM.

  8. #8
    Moderator Moderator
    Join Date
    Nov 2010
    Location
    Germany/ Dietzenbach
    Posts
    1,124
    The description in the Wiki is tested for origin Knoppix version. If you use a modified Knoppix, you may seek help by the these people which created this CD. And it's a bad joke, it they wrote: "We do not provide support for the Runtime Live CD,"

  9. #9
    Senior Member registered user
    Join Date
    May 2006
    Location
    Columbia, Maryland USA
    Posts
    1,631
    link to commercial software deleted
    If you are using a 'commercial product', then it is possible that the iso is damaged.
    This can be determined by doing a checksum comparison, like md5sum if this has been
    included in what you have received.

    If you have no such checksum, then one avenue you might consider is downloading a
    new iso and checksum from a Knoppix site or mirror. This would require a reasonably
    fast internet connection, but is otherwise free.

    Knoppix mirrors are listed at:
    http://www.knopper.net/knoppix-mirrors/index-en.html

    The latest version is the Knoppix 7.4.2 DVD.
    I usually use the ftp site:
    ftp://ftp.uni-kl.de/pub/linux/knoppix/

    There is not usually any recovery from a bad iso except getting a replacement.

    Good Luck & HTH.

  10. #10
    Junior Member
    Join Date
    Mar 2015
    Posts
    6
    Well it's a free linux iso with their driveimageXML wine'd into it.
    Thought I'd recommend it here to some people.
    The md5's check out OK btw, just a weird iso that needs a full install then.
    thanks for the response.

    Patrick

Page 1 of 2 12 LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


IBM QRadar xx29 Server 4412Q2A picture

IBM QRadar xx29 Server 4412Q2A

$200.00



IBM Power 720 POWER7 00E6516 3.6GHz CPU 64GB RAM Server  picture

IBM Power 720 POWER7 00E6516 3.6GHz CPU 64GB RAM Server

$209.98



IBM 7944AC1 System x3550 M3 Server 1*Intel Xeon X5650 2.67GHz 4GB SEE NOTES picture

IBM 7944AC1 System x3550 M3 Server 1*Intel Xeon X5650 2.67GHz 4GB SEE NOTES

$27.25



IBM SYSTEM x3200 M2 Server - HDD wiped, No OS picture

IBM SYSTEM x3200 M2 Server - HDD wiped, No OS

$75.00



IBM Power S822 12-Bay Server System Power8 Core 3.42Ghz DVD-Rom Drive 64GB No HD picture

IBM Power S822 12-Bay Server System Power8 Core 3.42Ghz DVD-Rom Drive 64GB No HD

$399.99



IBM System x3650 M3 Server (16GB RAM, 2x Intel Xeon E5649) w/ Rail Kit picture

IBM System x3650 M3 Server (16GB RAM, 2x Intel Xeon E5649) w/ Rail Kit

$125.00



IBM Power S822 8284-22A 12SFF Power8 3.89GHz 6-Core 64GB RAM No Bezel/HDD Server picture

IBM Power S822 8284-22A 12SFF Power8 3.89GHz 6-Core 64GB RAM No Bezel/HDD Server

$359.99



IBM x3650 M4 Server 8-Bay 2.5

IBM x3650 M4 Server 8-Bay 2.5" SAS/SATA HDD Hard Drive Backplane Board 94Y7751

$11.79



IBM 8203 E4A p520 Server 8203-E4A 4.2GHz 2-Core POWER6 32GB RAM / NO HDD USED picture

IBM 8203 E4A p520 Server 8203-E4A 4.2GHz 2-Core POWER6 32GB RAM / NO HDD USED

$109.99



IBM System X 3250 M5 Single Xeon Quad Core E3-1220 v3 @3.1GHz,8GB RAM,Linux SUSE picture

IBM System X 3250 M5 Single Xeon Quad Core E3-1220 v3 @3.1GHz,8GB RAM,Linux SUSE

$199.87