| Revision 190,
521 bytes
checked in by alanbach-guest, 6 years ago
(diff) |
|
Added ISO and BIG compressed file making scripts.
|
-
Property svn:executable set to
*
|
| Line | |
|---|
| 1 | #!/bin/bash |
|---|
| 2 | # Bash script to create ISO image. |
|---|
| 3 | # Coyright 2005-2007 Alan Baghumian / GNU/GPL |
|---|
| 4 | |
|---|
| 5 | PUBLISHER="Parsix Project" |
|---|
| 6 | |
|---|
| 7 | echo -n "Enter Version:" |
|---|
| 8 | read VER |
|---|
| 9 | echo -n "Enter ISO file name:" |
|---|
| 10 | read ISO |
|---|
| 11 | cd master/ |
|---|
| 12 | find -type f -not -name md5sums -not -name boot.cat -not -name isolinux.bin \ |
|---|
| 13 | -exec md5sum '{}' \; > KNOPPIX/md5sums |
|---|
| 14 | cd .. |
|---|
| 15 | mkisofs -pad -l -r -J -v -V $VER -P "$PUBLISHER" -no-emul-boot -boot-load-size 4 -boot-info-table -b boot/isolinux/isolinux.bin -c boot/isolinux/boot.cat -hide-rr-moved -o $ISO master/ |
|---|
Note: See
TracBrowser
for help on using the repository browser.