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
  •  


Electric Vacuum Cleaner Air Duster Suction High Pressure for Computer Car Home picture

Electric Vacuum Cleaner Air Duster Suction High Pressure for Computer Car Home

$9.97



Cordless Wireless Air Blower Handheld Vacuum Cleaner Strong Suction Car Home picture

Cordless Wireless Air Blower Handheld Vacuum Cleaner Strong Suction Car Home

$23.98



KLIM Cool Laptop Cooler Fan, Portable Quiet Cooling Vacuum w/Display - BLUE LED picture

KLIM Cool Laptop Cooler Fan, Portable Quiet Cooling Vacuum w/Display - BLUE LED

$15.95



Compressed Air Duster with Air Blower 100000RPM Vacuum Cleaner and Air Duster picture

Compressed Air Duster with Air Blower 100000RPM Vacuum Cleaner and Air Duster

$38.99



Mini Computer Vacuum USB Keyboard Cleaner PC Laptop Brush Dust Cleaning Kit US picture

Mini Computer Vacuum USB Keyboard Cleaner PC Laptop Brush Dust Cleaning Kit US

$12.19



Mini USB Keyboard Vacuum Cleaner PC Laptop Computer Brush Dust Cleaning Kit picture

Mini USB Keyboard Vacuum Cleaner PC Laptop Computer Brush Dust Cleaning Kit

$2.99



3in1 Handheld Vacuum  Keyboard Cleaner Dust Cleaning Laptop Desktop PC Computer picture

3in1 Handheld Vacuum Keyboard Cleaner Dust Cleaning Laptop Desktop PC Computer

$16.99



Electric Mini Air Duster Blower Vacuum Cleaner for PC Computer Laptop Dust picture

Electric Mini Air Duster Blower Vacuum Cleaner for PC Computer Laptop Dust

$29.40



1pc, Cordless Vacuum Cleaner, Lightweight Stick Vacuum Cleaner With Powerful picture

1pc, Cordless Vacuum Cleaner, Lightweight Stick Vacuum Cleaner With Powerful

$149.99



Eureka Stylus Nec380 Cordless Vacuum Bldc Motor Led Headlights Lightweight Grey picture

Eureka Stylus Nec380 Cordless Vacuum Bldc Motor Led Headlights Lightweight Grey

$128.99