9 lines
332 B
Bash
Executable File
9 lines
332 B
Bash
Executable File
#!/bin/sh
|
|
|
|
ISO_TO_CREATE=/mnt/win_d/FC4-i386_with_updates_20050807-DVD.iso
|
|
LABEL="Fedora Core 4 (i386) with updates 200508507"
|
|
DIR_TO_MAKE_ISO_FROM=/usr/FC4-i386_with_updates_20050807/
|
|
|
|
mkisofs -o $ISO_TO_CREATE -r -A "$LABEL" -b isolinux/isolinux.bin -r \
|
|
-c isolinux/boot.cat -no-emul-boot -boot-info-table $DIR_TO_MAKE_ISO_FROM
|