Hello there...
I was wondering if there were instructions out there for creating an El Capitan bootable DVD, like there is for Yosemite, etc.? Thanks!
This code worked for me.
It was done with the terminal utility.
It seems there was code that was included in the O/S to dissuade the creation of optical discs though.
The reason being that during the installation,toward the end of the boot process it freezes.
Here's the code anyway.Maybe someone else can tweak it to make it work.
On the last line,it starts with "sudo",replace "YOURNAME" with the username for the account you are logged into at the time.
hdiutil attach /Applications/Install\ OS\ X\ El\ Capitan.app/Contents/SharedSupport/InstallESD.dmg -noverify -nobrowse -mountpoint /Volumes/install_app
hdiutil convert /Volumes/install_app/BaseSystem.dmg -format UDSP -o /tmp/El\ Capitan
hdiutil resize -size 9g /tmp/El\ Capitan.sparseimage
hdiutil attach /tmp/El\ Capitan.sparseimage -noverify -nobrowse -mountpoint /Volumes/install_build
rm /Volumes/install_build/System/Installation/Packages
cp -rp /Volumes/install_app/Packages /Volumes/install_build/System/Installation/
cp -rp /Volumes/install_app/BaseSystem.chunklist /Volumes/install_build
cp -rp /Volumes/install_app/BaseSystem.dmg /Volumes/install_build
hdiutil detach /Volumes/install_app
hdiutil detach /Volumes/install_build
hdiutil resize -size `hdiutil resize -limits /tmp/El\ Capitan.sparseimage | tail -n 1 | awk '{ print $1 }'`b /tmp/El\ Capitan.sparseimage
hdiutil convert /tmp/El\ Capitan.sparseimage -format UDTO -o /tmp/El\ Capitan
rm /tmp/El\ Capitan.sparseimage
mv /tmp/El\ Capitan.cdr ~/Desktop/El\ Capitan.iso
sudo drutil burn /Users/YOURNAME/Desktop/El\ Capitan.iso