Page 1 of 3 123 LastLast
Results 1 to 10 of 26

Thread: Error customising Knoppix 3.7

  1. #1
    Junior Member registered user
    Join Date
    Feb 2005
    Posts
    12

    Error customising Knoppix 3.7

    What I am trying to do is add the mmls program to Knoppix 3.7

    I was following the Knoppix customising instructions at:

    http://www.knoppix.net/wiki/Knoppix_Remastering_Howto

    I removed the Open office package and then copied the mmls file into the knx\source\KNOPPIX\bin directory.

    I was at the following step:

    Now we'll make the big KNOPPIX file which is a cloop compressed ISO 9660 filesystem : mkisofs -R -U -V "KNOPPIX.net filesystem" -publisher "KNOPPIX www.knoppix.net" -hide-rr-moved -cache-inodes -no-bak -pad /mnt/hda1/knx/source/KNOPPIX | nice -5 /usr/bin/create_compressed_fs - 65536 > /mnt/hda1/knx/master/KNOPPIX/KNOPPIX

    I get to:

    [ 9] Block # 24577 size 65536 -> 8287 [compression ratio 12% overall 37%]
    Killed

    Does anyone know why the build is killing itself and stopping (I have tried it twice)? Is there a better meathod to add the mmls function (the file is only ~200 k).

    Thanks.

    -Saint

  2. #2
    Member registered user
    Join Date
    Jan 2005
    Location
    India
    Posts
    47

    Re: Error customising Knoppix 3.7

    Quote Originally Posted by Saint0453
    I get to:

    [ 9] Block # 24577 size 65536 -> 8287 [compression ratio 12% overall 37%]
    Killed

    Does anyone know why the build is killing itself and stopping (I have tried it twice)? Is there a better meathod to add the mmls function (the file is only ~200 k).

    Thanks.

    -Saint
    Do you have the required RAM and swap space (1 GB or more)? If yes, had you forgot to enable swap space before starting compression?

    Check and reply..

  3. #3
    Junior Member registered user
    Join Date
    Feb 2005
    Posts
    12
    No my machine only has 256 MB of RAM. For that reason I input (from the instructions):

    cd /mnt/hda1/knx ; dd if=/dev/zero of=swapfile bs=1M count=750 ; mkswap swapfile ; swapon swapfile

    I figured that command would give me the swapspace I needed. Do I have to enable that someway?

    Thanks.

  4. #4
    Member registered user
    Join Date
    Jan 2005
    Location
    India
    Posts
    47
    No it is fine. It is giving you the required swap space. But I recommend you to have swap of 1GB i.e. change the count=750 to 1000 in the command and retry. I faced similar problem once but the reason was that I hadn't enabled enough swap space.

    Tell the results.

  5. #5
    Junior Member registered user
    Join Date
    Feb 2005
    Posts
    12
    Thank you so much. That worked, guess didn't have enough swap space.

    Thanks again.

    -Saint

    ---------------------------------------------------------------------------------------------------------------------------------------

    Do you know if there is a way to remove the checksum from the knoppix cd? (I have seen numerous post about this but no respose).

    Why I ask is because:

    I am trying to use Magic ISO (http://www.magiciso.com/) to create a tripple dual boot Helix, DOS and KNOPPIX CD/DVD. So I can boot either Helix or KNOPPIX or Snapback/Ghost in DOS.

    When I Setup the dual boot and try to boot to Helix I get the following error: (I assume KNOPPIX would be the same, thus far I have only tried a dual boot CD using DOS and Helix)

    "ISOLINUX 2.04 (Debian, 2003-06-06) isolinux:
    Image checksum error, sorry..."

    All the files from the original ISO image are present on the CD the only thing that has changed is the dual boot option.

    Is there a way to remove the checksum that occurs at boot?

    Thanks.

    (Would it be better for me to start a new topic for this subject?)

  6. #6
    Member registered user
    Join Date
    Jan 2005
    Location
    India
    Posts
    47
    Quote Originally Posted by Saint0453
    Do you know if there is a way to remove the checksum from the knoppix cd? (I have seen numerous post about this but no respose).
    All you have to need is to remove the md5sums file from the source of CDROM (I guess you are using original FAQ of remastering then this directory will be "knx/master") and then don't type the command that updates the checksums i.e. rm -f KNOPPIX/md5sums; find ...... something like this. Only give the command starting with "mkisofs" to create the iso.

    Tell the progress.

  7. #7
    Junior Member registered user
    Join Date
    Feb 2005
    Posts
    12
    Quote Originally Posted by raj1478
    Quote Originally Posted by Saint0453
    Do you know if there is a way to remove the checksum from the knoppix cd? (I have seen numerous post about this but no respose).
    All you have to need is to remove the md5sums file from the source of CDROM (I guess you are using original FAQ of remastering then this directory will be "knx/master") and then don't type the command that updates the checksums i.e. rm -f KNOPPIX/md5sums; find ...... something like this. Only give the command starting with "mkisofs" to create the iso.

    Tell the progress.
    So i went from the step where you make the big KNOPPIX file. then i did:
    cd /mnt/hda1/knx/master

    I skipped the step:
    rm -f KNOPPIX/md5sums; find -type f -not-name md5sums -not -name boot.cat -not -name isolinux.bin -exec md5sum '{}' \; >> KNOPPIX/md5sums

    I then went to the step:
    mkisofs -pad -l -r -J -v -V "KNOPPIX" -no-emul-boot -boot-load-size 4 -boot-info-table -b boot/isolinux/isolinux.bin -c boot/isolinux/boot.cat -hide-rr-moved -o /mnt/hda1/knx/knoppix.iso /mnt/hda1/knx/master

    At this piont i get the error:
    mkisofs: Uh oh, I cant find the boot image 'boot/isolinux.bin' !

    Any suggestions on how to include this but not the chucksum?

    Thanks.

  8. #8
    Member registered user
    Join Date
    Jan 2005
    Location
    India
    Posts
    47
    The command looks OK.

    Check if there is a boot directory in the master with isolinux directory.

    If yes, have you really given the command "cd /mnt/hda1/knx/master".

    Is your remaster really on "hda1" partition or somewhere else...?

    Update me...

  9. #9
    Junior Member registered user
    Join Date
    Feb 2005
    Posts
    12
    Quote Originally Posted by raj1478
    The command looks OK.

    Check if there is a boot directory in the master with isolinux directory.
    I checked and there is a boot directory in the master with a directory isolinux inside of it. Inside of the isolinux direcotry there is a file: isolinux.bin

    Quote Originally Posted by raj1478
    If yes, have you really given the command "cd /mnt/hda1/knx/master".
    I re-entered the command just to be sure and yes I am in the /mnt/hda1/knx/master directory.

    Quote Originally Posted by raj1478
    Is your remaster really on "hda1" partition or somewhere else...?
    Techincally no, my remaster is on hda2 but starting from the begining of the "Remastering Howto" I changed:
    mount -rw /dev/hda1 /mnt/hda1 to mount -rw /dev/hda2 /mnt/test

    Throughout the instructions anywhere I saw a "hda1" I changed this to a "test" (the mount point for hda2).

    Should there not be a boot directory in the /knx/master directory?

    Thanks.

  10. #10
    Member registered user
    Join Date
    Jan 2005
    Location
    India
    Posts
    47
    The commands look OK. But the problem with the mkisofs command, which itself is reporting, that it can't find boot file "boot/isolinux.bin". So, the only possibility I can think out is a typing mistake or the file isolinux.bin may be corrupt. Try to replace boot directory with the boot directory of original CD and tell the progresss.

Page 1 of 3 123 LastLast

Similar Threads

  1. Yet Another Script for Customising and Remastering
    By Sergey.Khlutchin in forum Customising & Remastering
    Replies: 4
    Last Post: 06-15-2005, 05:17 PM
  2. CHECKSUM error after customising iso ..
    By ktheking in forum Customising & Remastering
    Replies: 0
    Last Post: 06-08-2004, 09:15 PM
  3. Customising & Remastering description?
    By TyphoonMentat in forum The Lounge
    Replies: 0
    Last Post: 03-07-2004, 10:41 PM
  4. Customising K Menu and KDE taskbar
    By Arbiter in forum Customising & Remastering
    Replies: 7
    Last Post: 01-07-2004, 05:42 PM
  5. customising Knoppix that uses finnish language by defaut
    By mpj in forum Customising & Remastering
    Replies: 0
    Last Post: 03-29-2003, 07:52 PM

Posting Permissions

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


A-Tech 8GB DDR3 1600 PC3-12800 Laptop SODIMM 204-Pin Memory RAM PC3L DDR3L 1x 8G picture

A-Tech 8GB DDR3 1600 PC3-12800 Laptop SODIMM 204-Pin Memory RAM PC3L DDR3L 1x 8G

$13.99



Samsung 16GB 2Rx4 PC4-2133P DDR4-17000 1.2V RDIMM ECC Registered Server Memory picture

Samsung 16GB 2Rx4 PC4-2133P DDR4-17000 1.2V RDIMM ECC Registered Server Memory

$16.29



HyperX FURY DDR3 8GB 16GB 32GB 1600 MHz PC3-12800 Desktop RAM Memory DIMM 240pin picture

HyperX FURY DDR3 8GB 16GB 32GB 1600 MHz PC3-12800 Desktop RAM Memory DIMM 240pin

$12.90



A-Tech 8GB PC3-12800 Desktop DDR3 1600 MHz Non ECC 240-Pin DIMM Memory RAM 1x 8G picture

A-Tech 8GB PC3-12800 Desktop DDR3 1600 MHz Non ECC 240-Pin DIMM Memory RAM 1x 8G

$13.99



A-Tech 16GB 2 x 8GB PC3-12800 Laptop SODIMM DDR3 1600 Memory RAM PC3L 16G DDR3L picture

A-Tech 16GB 2 x 8GB PC3-12800 Laptop SODIMM DDR3 1600 Memory RAM PC3L 16G DDR3L

$27.98



8GB PC3L-12800S 1600MHz SODIMM DDR3 RAM | Grade A picture

8GB PC3L-12800S 1600MHz SODIMM DDR3 RAM | Grade A

$12.00



Kingston HyperX FURY DDR3 8GB 16GB 32G 1600 1866 1333 Desktop Memory RAM DIMM picture

Kingston HyperX FURY DDR3 8GB 16GB 32G 1600 1866 1333 Desktop Memory RAM DIMM

$13.25



32GB (4X8GB) DDR3 PC3-12800 1600 NON ECC LOW DENSITY MEMORY F3-12800CL10Q-32GBXL picture

32GB (4X8GB) DDR3 PC3-12800 1600 NON ECC LOW DENSITY MEMORY F3-12800CL10Q-32GBXL

$32.00



A-Tech 256GB 4x 64GB 4Rx4 PC4-19200 ECC Load Reduced LRDIMM Server Memory RAM picture

A-Tech 256GB 4x 64GB 4Rx4 PC4-19200 ECC Load Reduced LRDIMM Server Memory RAM

$287.96



A-Tech 64GB 4x 16GB 2Rx4 PC4-17000R DDR4 2133MHz ECC REG RDIMM Server Memory RAM picture

A-Tech 64GB 4x 16GB 2Rx4 PC4-17000R DDR4 2133MHz ECC REG RDIMM Server Memory RAM

$87.96