# cd /tmp # mkdir sles11sp1 # mkdir oes11beta # mount -o loop /path/to/SLES-11-SP1-DVD-x86_64-GM-DVD1.iso sles11sp1/ # mount -o loop /path/to/OES11-addon-x86_64-Public-Beta-CD1.iso oes11beta/ # mkdir sles11sp1_oes11beta # cp -Rv sles11sp1/* sles11sp1_oes11beta/ # cp -Rv oes11beta/ sles11sp1_oes11beta/ # cd sles11sp1_oes11beta/ # vi add_on_products.xml Copy and paste the following content to create the add_on_products.xml file <?xml version="1.0"?> <add_on_products xmlns="http://www.suse.com/1.0/yast2ns" xmlns:config="http://www.suse.com/1.0/configns"> <product_items config:type="list"> <product_item> <name>OES11 Public Beta</name> <url>cd:///oes11beta</url> <path>/</path> <ask_user config:type="boolean">false</ask_user> <selected config:type="boolean">true</selected> </product_item> <!-- Another product item --> <product_item /> </product_items> </add_on_products> # mkisofs -R -o ../SLES-1-SP1_with_OES11-Public-Beta-x86_64-DVD.iso -b boot/x86_64/loader/isolinux.bin -c boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table . # cd .. # umount sles11sp1/ # umount oes11beta/ # rmdir sles11sp1/ # rmdir oes11beta/ # rm -rf sles11sp1_oes11beta/ You should now have a SLES11-SP1_with_OES11-Public-Beta-x86_64-DVD.iso file in /tmp which you can either use to create a physical DVD or point your virtualization software at when installing a virtual machine.