Nota: si tienes algo que realmente necesita java6 y no funciona con java7, es posible que desees suspender la instalación de java7. La razón es que podría ser un poco difícil tratar de mantener tanto el 6 como el 7 en la misma Macintosh, ya que el paquete de 7 hace algunos problemas con algunos de los elementos de Apple-6-Java, como se detalla a continuación. Por lo tanto, estaré buscando instrucciones paso a paso para mantener 6 y 7 en la misma Mac antes de implementar esto ... Ver también enlace el 18 de octubre de 2012.
DETALLES
El script de shell de preinstalación en jre-7u9-macosx-x64.dmg simplemente elimina el panel de Apple (así como el complemento), sin advertencia, a continuación.
#!/bin/bash
PLUGIN_BASEDIR=/Library/Internet\ Plug-Ins
PLUGIN_NAME=${PLUGIN_BASEDIR}/JavaAppletPlugin.plugin
MKDIR='which mkdir'
RM=/bin/rm
# Remove the symlink before installation forcing ystem Preferences.app to refresh its cache
PREF_PANE_NAME=JavaControlPanel.prefpane
PREF_PANE_DEST=/Library/PreferencePanes/
# Actually removes the symlink
if [[ -h "${PREF_PANE_DEST}/${PREF_PANE_NAME}" ]]; then
${RM} -rf "${PREF_PANE_DEST}/${PREF_PANE_NAME}"
fi
# Create the /Library/Internet Plug-Ins if not present
if [[ ! -d "${PLUGIN_BASEDIR}" ]]; then
${MKDIR} -p "${PLUGIN_BASEDIR}"
fi
# If Apple's plugin is present, then delete it
if [[ -h "${PLUGIN_NAME}" ]] && [[ -d "${PLUGIN_NAME}" ]]; then
${RM} -rf "${PLUGIN_NAME}"
fi
=== Y el script posterior a la instalación configura un enlace simbólico ===
#!/bin/bash
LN='which ln'
CHOWN='which chown'
PLUGIN_FILEPATH=/Library/Internet\ Plug-Ins/JavaAppletPlugin.plugin
PREF_PANE_NAME=JavaControlPanel.prefpane
PREF_PANE_SRC=/Library/Internet\ Plug- Ins/JavaAppletPlugin.plugin/Contents/Home/lib/deploy/JavaControlPanel.prefpane
PREF_PANE_DEST=/Library/PreferencePanes/
if [ ! -h "${PREF_PANE_DEST}/${PREF_PANE_NAME}" ]; then
${LN} -s "${PREF_PANE_SRC}" "${PREF_PANE_DEST}"
fi
${CHOWN} -R root:wheel "${PLUGIN_FILEPATH}"