Cybersecurity
DevOps Cloud (ADM)
IT Operations Cloud
# cd /tmp
# mkdir sles11sp1
# mkdir oes11
# mount -o loop /path/to/SLES-11-SP1-DVD-x86_64-GM-DVD1.iso sles11sp1/
# mount -o loop /path/to/OES11-addon-x86_64-CD1.iso oes11/
# mkdir sles11sp1_oes11
# cp -Rv sles11sp1/* sles11sp1_oes11/
# cp -Rv oes11/ sles11sp1_oes11/
# cd sles11sp1_oes11/
# vi add_on_products.xml
<?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</name>
<url>cd:///oes11</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 ../SLES11-SP1_with_OES11-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 oes11/
# rmdir sles11sp1/
# rmdir oes11/
# rm -rf sles11sp1_oes11/
# cd /tmp
# mkdir sles11sp1
# mkdir oes11
# hdiutil attach -mountpoint sles11sp1/ /path/to/SLES-11-SP1-DVD-x86_64-GM-DVD1.iso
# hdiutil attach -mountpoint oes11/ /path/to/OES11-addon-x86_64-CD1.iso
# mkdir sles11sp1_oes11
# cp -Rv sles11sp1/* sles11sp1_oes11/
# cp -Rv oes11 sles11sp1_oes11/
# cd sles11sp1_oes11/
# vi add_on_products.xml
<?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</name>
<url>cd:///oes11</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 ../SLES11-SP1_with_OES11-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 ..
# hdiutil detach sles11sp1/
# hdiutil detach oes11/
# rmdir sles11sp1/
# rmdir oes11/
# rm -rf sles11sp1_oes11/