JeffElkins
Group: Members
Posts: 26
Joined: Dec. 2005 |
|
Posted: Dec. 31 2005,04:01 |
|
I'm trying to remaster a KNOPPIX image for use with embedded. However, I keep ending up with a humongous image, rather than the standard 50Mb.
I copied the KNOPPIX source from a live CD to my hd.
cp -Rp /KNOPPIX/* /mnt/hdb1/dsl/source/KNOPPIX
After which I reboot. I can chroot into the copied DSL environment. I make no changes at this point.
As a test, I run this script:
#!/bin/bash
if ls "$1" >/dev/null 2>&1; then mkisofs -R "$1" | create_compressed_fs - 65536 > "$2" else echo "Usage: mkknoppix src_dir dest_file" echo "" echo "Creates a compressed KNOPPIX image file" fi
(copied from this forum)
and the resulting KNOPPIX image is 500 or more Mb.
What have I missed?
|