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
  •  


1U Supermicro Server 10 Bay 2x Intel Xeon 3.3Ghz 8C 128GB RAM 480GB SSD 2x 10GBE picture

1U Supermicro Server 10 Bay 2x Intel Xeon 3.3Ghz 8C 128GB RAM 480GB SSD 2x 10GBE

$297.00



HP ProLiant Xeon E3-1220L V2 MicroServer Gen8 2.30 GHz 16 GB RAM NO DRIVES picture

HP ProLiant Xeon E3-1220L V2 MicroServer Gen8 2.30 GHz 16 GB RAM NO DRIVES

$199.99



HPE ProLiant MicroServer Gen10 Plus v2 Ultra Micro Tower Server - 1 x Intel Xeon picture

HPE ProLiant MicroServer Gen10 Plus v2 Ultra Micro Tower Server - 1 x Intel Xeon

$846.19



HP ProLiant Xeon E3-1220L V2 2.30 GHz 16 GB RAM MicroServer Gen8 NO DRIVES picture

HP ProLiant Xeon E3-1220L V2 2.30 GHz 16 GB RAM MicroServer Gen8 NO DRIVES

$199.99



HP ProLiant HSTNS-5151 Micro Server 8GB RAM No Drives/Key/Caddies *READ* picture

HP ProLiant HSTNS-5151 Micro Server 8GB RAM No Drives/Key/Caddies *READ*

$94.99



SuperMicro Server 505-2 Intel Atom 2.4GHz 8GB RAM SYS-5018A-FTN4 1U Rackmount picture

SuperMicro Server 505-2 Intel Atom 2.4GHz 8GB RAM SYS-5018A-FTN4 1U Rackmount

$202.49



Supermicro 5018A-FTN4 Rack Server - Black picture

Supermicro 5018A-FTN4 Rack Server - Black

$125.00



SuperMicro SuperServer 505-2 Intel Atom @ 2.4GHz 8GB w/ Ears 5018A-FTN4 picture

SuperMicro SuperServer 505-2 Intel Atom @ 2.4GHz 8GB w/ Ears 5018A-FTN4

$159.80



SUPERMICRO CSE-512 AMD Opteron Processor 6128, 32GB DDR3 RAM NO HDD picture

SUPERMICRO CSE-512 AMD Opteron Processor 6128, 32GB DDR3 RAM NO HDD

$90.00



1U Supermicro Server X10DRU-i+ 2x Xeon E5-2690 V4 28 Cores 64GB 4x 10GBE-T 2PS picture

1U Supermicro Server X10DRU-i+ 2x Xeon E5-2690 V4 28 Cores 64GB 4x 10GBE-T 2PS

$324.00