Nota: si tiene algo que realmente necesita java6 y no funcionará con java7, es posible que desee retrasar la instalación de java7. La razón es que puede ser un poco complicado tratar de mantener tanto 6 como 7 en el mismo Macintosh, ya que el paquete de 7 hace algunos juegos con algunos de los elementos apple-6-java, como se detalla a continuación. Entonces, buscaré algunas instrucciones paso a paso sobre cómo mantener 6 y 7 en la misma Mac antes de implementar esto ... Ver también http://reviews.cnet.com/8301-13727_7-57533880-263/ java -ferences-missing-after-latest-os-x-java-update / 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 preferencias de Apple (así como el complemento), sin previo aviso, 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}"