Recent Changes - Search:

edit SideBar

Note the wiki formating screws this up. If you want to copy the source code, you will need to edit the page to see it properly.

  1. !/bin/bash

echo "Making new compressed KNOPPIX" mkisofs -pad -l -R -U source/ | create_compressed_fs - 65536 > cd/KNOPPIX/KNOPPIX

echo "Finally create the iso image." echo "You currently have the following DSL images:" echo

ls -w 1 Knoppix* echo echo -n "Do you want to continue?" echo

while [ "y" != "$answer" ] && [ "n" != "$answer" ];

do

        echo 'Enter y for "Yes" or  n for "No" '
        read answer

done

if [ "$answer" == "n" ] then

    echo "Ending Script"
   exit 0

else

echo -n "What version of the image is this? " read vnum

IMAGE_NAME="Knoppix."$vnum

echo "Creating "$IMAGE_NAME".iso" cd cd && find . -type f -print0 |xargs -0 md5sum > md5sum.txt mkisofs -r -V "$IMAGE_NAME" -cache-inodes -J -l -b boot/isolinux/isolinux.bin -c boot/isolinux/boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table -o ../$IMAGE_NAME.iso .

fi

Edit - History - Print - Recent Changes - Search
Page last modified on November 10, 2007, at 12:14 PM