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
  •  


G5T03 Dell Intel DC S3700 Series 800GB SATA 6Gb/s 2.5

G5T03 Dell Intel DC S3700 Series 800GB SATA 6Gb/s 2.5" SSD 0G5T03 SSDSC2BA800G3E

$55.00



HPGYT DELL 960GB SATA 6Gb/s 2.5in Internal SSD 0HPGYT MTFDDAK960TCB picture

HPGYT DELL 960GB SATA 6Gb/s 2.5in Internal SSD 0HPGYT MTFDDAK960TCB

$59.00



### MZ-7KE1T0 Samsung 850 Pro Series 1TB 2.5 inch SATA3 SSD ### picture

### MZ-7KE1T0 Samsung 850 Pro Series 1TB 2.5 inch SATA3 SSD ###

$105.00



N85XX DELL 3.84TB SAS 12GB/S ENTERPRISE SOLID STATE DRIVE (W/ 14TH GEN CADDY) picture

N85XX DELL 3.84TB SAS 12GB/S ENTERPRISE SOLID STATE DRIVE (W/ 14TH GEN CADDY)

$389.95



Patriot P210 128GB 256GB 512GB 1TB 2TB 2.5

Patriot P210 128GB 256GB 512GB 1TB 2TB 2.5" SATA 3 6GB/s Internal SSD PC/MAC Lot

$14.99



Netac 1TB 2TB 512GB Internal SSD 2.5'' SATA III 6Gb/s Solid State Drive lot picture

Netac 1TB 2TB 512GB Internal SSD 2.5'' SATA III 6Gb/s Solid State Drive lot

$13.99



Fanxiang SSD 512GB 1TB 2TB 4TB 2.5'' SSD SATA III Internal Solid State Drive lot picture

Fanxiang SSD 512GB 1TB 2TB 4TB 2.5'' SSD SATA III Internal Solid State Drive lot

$13.99



Patriot P210 256GB SSD 2.5

Patriot P210 256GB SSD 2.5" SATA III 6GB/s Internal Solid State Drive For PC/MAC

$19.99



1.92TB SSD SATA 2.5 SAMSUNG MZ-7LM1T90 PM863 MZ7LM1T9HCJM Tested 93%+ picture

1.92TB SSD SATA 2.5 SAMSUNG MZ-7LM1T90 PM863 MZ7LM1T9HCJM Tested 93%+

$45.96



500GB SKHynix HFS500G32TND 2.5

500GB SKHynix HFS500G32TND 2.5" SATA SSD Drive Tested Read

$39.99