| Home
| Calendar
| Mail Lists
| List Archives
| Desktop SIG
| Hardware Hacking SIG
Wiki | Flickr | PicasaWeb | Video | Maps & Directions | Installfests | Keysignings Linux Cafe | Meeting Notes | Linux Links | Bling | About BLU |
Robert La Ferla <robertlaferla at comcast.net> writes:
>Thanks for your responses. I have one more related question. How can I
>add a couple of files to the iso? I'd like to put the bios and flash
>utility on the boot disk too. i.e. is there a way to merge them or
>perhaps unpack and repack the iso image?
Sure, something like this:
mount -oloop ./old-image.iso /mnt
cp -a /mnt /tmp/foobar
cp /the/new/executables/* /tmp/foobar/usr/bin
cp /the/new/manpages/* /tmp/foobar/usr/share/man/man1
mkisofs -o ./new-image.iso -A "revised iso" -file-mode 644 -J \
-r -V 2004-11-25 -v /tmp/foobar
- Jim Van Zandt