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

Thread: where has more information about DVD 5.3.1 remastering?

  1. #1
    Junior Member
    Join Date
    Jun 2008
    Posts
    3

    where has more information about DVD 5.3.1 remastering?

    I've downloaded the KNOPPIX DVD 5.3.1, and would like to remastering on it, but there are a few different in between 5.1 and 5.3

    in 5.3, there is no /etc/X11/Xsession.d/45xsession file for me to modify.

    and when I try to change the startup script text, I goto mount /master/boot/isolinux/minirt file,
    this file was gunzip from /master/boot/isolinux/minirt.gz
    but it is not muntable, it has some script included in that minirt file,
    this is what I did
    # mount -t ext2 -o loop minirt todelete
    but it says wrong fs type.

    I've looked at the knoppix wiki page in the knoppix remastering howto, it seems still base on the 5.1 version.

    anyone got any ideas? or where can get more detail about this? or when will the knoppix wiki site be updated?

    many thanks,
    Winson

  2. #2
    Junior Member
    Join Date
    Aug 2008
    Posts
    1
    The filesystem seems to be now ramfs, not ext2. Try this.

    edit: Sorry, doesnt work either. Seems to get mounted without errormessages, but then the mounted filesystem seems to be empty

    Nix

  3. #3
    Member registered user
    Join Date
    Jun 2004
    Location
    Canada
    Posts
    67
    I've made a bootable 5.3.1 on an 8GB USB key. It starts to boot up but then drops into the shell because it can't find a Knoppix filesystem. I'm pretty sure all I need to do is modify linuxrc in minirt.gz but I also have the problem that I can't get mount to work with the minirt file. I've tried all sorts of variations of mounting it as loop, cloop with different filesystem types and I also tried copying minirt to /dev/ram (with dd) and then trying to mount that but nothing works.
    Has anyone figured out a solution for this?

    Thanks
    Pete

  4. #4
    Junior Member
    Join Date
    Sep 2008
    Posts
    4
    After copying minirt.gz to a temp directory, execute the following:

    Code:
    zcat minirt.gz | cpio --extract --no-absolute-filenames

  5. #5
    Member registered user
    Join Date
    Jun 2004
    Location
    Canada
    Posts
    67
    Thanks for the tip. That works, but I was trying to mount the minirt file in the same way as I had been able to do with previous versions of Knoppix.
    With the 5.1.1 CD version I can do this:
    cp /cdrom/boot/isolinux/minirt.gz .
    gunzip minirt.gz
    mkdir mrt
    sudo mount -o loop minirt mrt

    and then I can access the file structure in the mrt directory.

    But if I do the equivalent thing with the 5.3.1 DVD I can't mount the minirt file.

    Even though the zcat/cpio commands undo the file, the 5.3.1 version seems to have a different structure or format than that of 5.1.1.
    If I do an octal dump of the first 64 bytes of the 5.1.1 minirt I get this:
    0000000 000 000 000 000 000 000 000 000 000 000 000 000 000 000 000 000
    \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0

    Just plain null characters.

    but 5.3.1 minirt looks like this:
    0000000 060 067 060 067 060 061 060 060 060 060 060 062 104 061 060 060
    0 7 0 7 0 1 0 0 0 0 0 2 D 1 0 0
    0000020 060 060 064 061 105 104 060 060 060 060 060 060 060 060 060 060
    0 0 4 1 E D 0 0 0 0 0 0 0 0 0 0
    0000040 060 060 060 060 060 060 060 060 060 060 060 060 060 062 064 067
    0 0 0 0 0 0 0 0 0 0 0 0 0 2 4 7
    0000060 105 101 061 065 065 063 060 060 060 060 060 060 060 060 060 060
    E A 1 5 5 3 0 0 0 0 0 0 0 0 0 0

    Lots of ASCII characters!

    Anyone know how to mount the 5.3.1 minirt?

    BTW. I solved the problem of getting my USB key to boot with the 5.3.1 DVD version. I made a mistake in copying one of the commands in the USB key wiki. Once I fixed that it all worked great and I now have the 5.3.1 DVD and a 2GB persistent home on the 8GB USB key.

    Pete

  6. #6
    Junior Member
    Join Date
    Sep 2008
    Posts
    4
    You can't mount a cpio archive. Knoppix version 5.3.1 uses initramfs instead of initrd. It's a lot easier to work with:

    http://en.wikipedia.org/wiki/Initram...on_with_initrd

  7. #7
    Junior Member
    Join Date
    Sep 2008
    Posts
    4
    It's easy to create an initramfs archive. Change directories to where the extracted file are and issue the following:

    Code:
    find . | cpio -H newc -o > /tmp/knoppix-initramfs-2.6.24.4.cpio && cat /tmp/knoppix-initramfs-2.6.24.4.cpio | gzip > /tftpboot/knoppix-initramfs-2.6.24.4.gz
    If you wish to revert back to an initrd image, then you could always use dd to create an image, format the image (mke2fs), mount it, and then copy the extracted files over the the mounted image.

  8. #8
    Member registered user
    Join Date
    Jun 2004
    Location
    Canada
    Posts
    67
    Thanks very much for that info tpat. That explains why I can't get the thing to work like it used to
    I've got some reading to do and then I can play around with the minirt.gz again.

    Pete

  9. #9
    Member registered user
    Join Date
    Jan 2006
    Posts
    64
    Quote Originally Posted by tpat
    It's easy to create an initramfs archive. Change directories to where the extracted file are and issue the following:

    Code:
    find . | cpio -H newc -o > /tmp/knoppix-initramfs-2.6.24.4.cpio && cat /tmp/knoppix-initramfs-2.6.24.4.cpio | gzip > /tftpboot/knoppix-initramfs-2.6.24.4.gz
    If you wish to revert back to an initrd image, then you could always use dd to create an image, format the image (mke2fs), mount it, and then copy the extracted files over the the mounted image.
    Will a K5.3.1 remaster boot with an ext2 minirt.gz?
    can one just replace the minirt.gz?
    That's what I want...

  10. #10
    Senior Member registered user
    Join Date
    Jan 2005
    Location
    UK
    Posts
    282
    Quote Originally Posted by tpat
    After copying minirt.gz to a temp directory, execute the following:

    Code:
    zcat minirt.gz | cpio --extract --no-absolute-filenames

    Can anyone tell me how to recompress the minirt acrchive in knoppix 5.3.1 ?

    Also, it appears that default language is set in the file linuxrc in the expanded minirt and
    there appears to be an abcense of the files that were common in knoppix 5.1.1.
    Thanks in advance

Page 1 of 2 12 LastLast

Similar Threads

  1. Trying to Retrieve Information
    By ade123007 in forum Hardware & Booting
    Replies: 1
    Last Post: 02-20-2007, 09:05 PM
  2. Storing Information
    By Teh_Lex in forum General Support
    Replies: 1
    Last Post: 12-30-2006, 07:33 PM
  3. Forum Information
    By freeblue86 in forum General Support
    Replies: 1
    Last Post: 12-18-2005, 08:52 PM
  4. Replies: 2
    Last Post: 09-09-2004, 09:45 AM
  5. more specific information...
    By zeus916 in forum Hardware & Booting
    Replies: 4
    Last Post: 02-26-2003, 04:14 AM

Posting Permissions

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


Vintage Apple Design Keyboard M29080 And Mouse M2706 ADB Mac 1995 Tested Working picture

Vintage Apple Design Keyboard M29080 And Mouse M2706 ADB Mac 1995 Tested Working

$54.96



Vintage Apple Macintosh SE M5010 Computer w/ Keyboard  & mouse -power up- no OS picture

Vintage Apple Macintosh SE M5010 Computer w/ Keyboard & mouse -power up- no OS

$139.99



Vintage Apple Macintosh 512K / Mouse, Keyboard & Extras + Carry Case / Turns On picture

Vintage Apple Macintosh 512K / Mouse, Keyboard & Extras + Carry Case / Turns On

$260.00



Vintage Apple IIe 2e iie Computer A2S2064  picture

Vintage Apple IIe 2e iie Computer A2S2064

$215.00



Vintage Classic Apple Macintosh System Boot Install Disk Floppy/CD *Pick Version picture

Vintage Classic Apple Macintosh System Boot Install Disk Floppy/CD *Pick Version

$10.39



Vintage Apple 3.5

Vintage Apple 3.5" Drive Floppy Disk Drive A9M0106 - Untested

$69.99



Vintage Apple Mac M0116 Keyboard salmon Alps switches, no ADB cable, bad T key picture

Vintage Apple Mac M0116 Keyboard salmon Alps switches, no ADB cable, bad T key

$50.00



Vintage Apple II Plus A2S1016 Computer For PARTS Fans Joysticks Manuals Disks picture

Vintage Apple II Plus A2S1016 Computer For PARTS Fans Joysticks Manuals Disks

$249.00



Vintage Apple A2M2010 Monitor II, Green Phosper CRT picture

Vintage Apple A2M2010 Monitor II, Green Phosper CRT

$99.99



Vintage Apple iMac G3 Blue Blueberry M5521 450MHZ 20GB 128MB Ram Tested Working picture

Vintage Apple iMac G3 Blue Blueberry M5521 450MHZ 20GB 128MB Ram Tested Working

$249.87