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
  •  


Dell PowerEdge R720 Server - 2x8c CPU,256Gb RAM, 128Gb SSD/3x900Gb SAS, Proxmox picture

Dell PowerEdge R720 Server - 2x8c CPU,256Gb RAM, 128Gb SSD/3x900Gb SAS, Proxmox

$340.00



Dell PowerEdge R620 Server 2x E5-2660 v1 2.2GHz 16 Cores 256GB RAM 2x 300GB HDD picture

Dell PowerEdge R620 Server 2x E5-2660 v1 2.2GHz 16 Cores 256GB RAM 2x 300GB HDD

$79.19



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



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



DELL POWEREDGE T430 SERVER W/ DUAL XEON E5-2609 CPU & 16GB MEMORY picture

DELL POWEREDGE T430 SERVER W/ DUAL XEON E5-2609 CPU & 16GB MEMORY

$329.00



Dell PowerEdge R620 4-Bay Server 2x Xeon E5-2690 8 Core 2.9GHz 32GB No HDD H710P picture

Dell PowerEdge R620 4-Bay Server 2x Xeon E5-2690 8 Core 2.9GHz 32GB No HDD H710P

$95.63



CTO Dell PowerEdge R630 Server, 2x Xeon E5-2620V4, 64GB- 512GB RAM, 480GB SSDs picture

CTO Dell PowerEdge R630 Server, 2x Xeon E5-2620V4, 64GB- 512GB RAM, 480GB SSDs

$246.67



Dell PowerEdge R620 Server 2x E5-2650 V2 = 16 Cores H710P 128GB RAM 2x 600GB SAS picture

Dell PowerEdge R620 Server 2x E5-2650 V2 = 16 Cores H710P 128GB RAM 2x 600GB SAS

$274.99



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 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

$289.99