<html><body>John,<br>Thx for the reply, do you have any web link where i can find more info about build this thing?<br>im a little short of "Build a booteable cd"<br><br><br>----- Mensaje Original -----<br>De: John Reiser <jreiser@BitWagon.com><br>Para: Development discussions related to Fedora Core <fedora-devel-list@redhat.com><br>Enviados: lunes 18 de diciembre de 2006 14H47 GMT-0400 America/Santiago<br>Asunto: Re: Customize Rescue CD<br><br>> how can i customize de rescue enviroment of Fedora, i need to add a couple of software to it. <br><br>Find the recipe for building the rescue disk, and change it. :-)<br><br>Or, reverse engineer it:<br>  # mount -o ro,loop FC-6-i386-rescuecd.iso /mnt/tmp1<br>  $ cd /mnt/tmp1; ls<br>  images  isolinux  TRANS.TBL<br>  $ (cd images; ls; file state2.img)<br>  stage2.img  TRANS.TBL<br>  stage2.img: Squashfs filesystem ...<br>  $ (cd isolinux; ls; file initrd.img)<br>  ... initrd.img ...<br>  initrd.img: gzip compressed ...<br>  $ gzip -d -c isolinux/initrd.img >/tmp/initrd<br>  $ file /tmp/initrd<br>  /tmp/initrd: ASCII cpio archive<br>  $ cpio --list --verbose </tmp/initrd<br>  ... init  .profile ...<br><br>So in addition to the normal isolinux stuff for a bootable .iso,<br>there is a squashfs filesystem stage2.img and an initial ramdisk<br>filesystem that contains an init and a .profile.  Find the squashfs<br>tools, put your programs into a new stage2.img, create another .iso.<br><br>> PS: Anyone knows how can i build a live cd with more that one distro?<br><br>Have more than one stage2.img file; choose and mount the one you want.<br><br>-- <br><br>-- <br>fedora-devel-list mailing list<br>fedora-devel-list@redhat.com<br>https://www.redhat.com/mailman/listinfo/fedora-devel-list<br></body></html>