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
  •  


Supermicro 4U 36 Bay Storage Server 2.2Ghz 16-C 128GB 1x1280W Rails TrueNAS ZFS picture

Supermicro 4U 36 Bay Storage Server 2.2Ghz 16-C 128GB 1x1280W Rails TrueNAS ZFS

$725.06



H261-Z61 2U 24SFF AMD Server 8x EPYC 7551 256-Cores 256GB RAM 8x25G NIC 2x2200W picture

H261-Z61 2U 24SFF AMD Server 8x EPYC 7551 256-Cores 256GB RAM 8x25G NIC 2x2200W

$2612.18



HP ProLiant DL360 G9 Server | 2 x E5-2660V3 2.6Ghz | 64GB | 2 x 900GB SAS HDD picture

HP ProLiant DL360 G9 Server | 2 x E5-2660V3 2.6Ghz | 64GB | 2 x 900GB SAS HDD

$339.00



CSE-118 Supermicro 1U GPU Server 2.6Ghz 28-C 128GB 2x Nvidia K40 GPU 2x1600W PSU picture

CSE-118 Supermicro 1U GPU Server 2.6Ghz 28-C 128GB 2x Nvidia K40 GPU 2x1600W PSU

$580.03



DELL PowerEdge R730 Server 2x E5-2690v3 2.6GHz =24 Cores 32GB H730 4xRJ45 picture

DELL PowerEdge R730 Server 2x E5-2690v3 2.6GHz =24 Cores 32GB H730 4xRJ45

$274.00



Dell PowerEdge R730XD 28 Core Server 2X Xeon E5-2680 V4 H730 128GB RAM No HDD picture

Dell PowerEdge R730XD 28 Core Server 2X Xeon E5-2680 V4 H730 128GB RAM No HDD

$389.99



HP Proliant DL360 Gen9 28 Core SFF Server 2X E5-2680 V4 16GB RAM P440ar No HDD picture

HP Proliant DL360 Gen9 28 Core SFF Server 2X E5-2680 V4 16GB RAM P440ar No HDD

$196.95



Dell PowerEdge R720XD Xeon E5-2680 V2 2.8GHz 20 Cores 256GB RAM 12x4TB picture

Dell PowerEdge R720XD Xeon E5-2680 V2 2.8GHz 20 Cores 256GB RAM 12x4TB

$510.00



HP ProLiant DL380 Gen9 16SFF 2x E5-2680v4 2.4GHz =28 Cores 64GB P840 4xRJ45 picture

HP ProLiant DL380 Gen9 16SFF 2x E5-2680v4 2.4GHz =28 Cores 64GB P840 4xRJ45

$353.00



Dell Poweredge R730xd 2.5in 2x E5-2690 v3 2.6ghz 24-Cores  64gb  H730  2x 750w picture

Dell Poweredge R730xd 2.5in 2x E5-2690 v3 2.6ghz 24-Cores 64gb H730 2x 750w

$189.99