sh 创建可启动的El Capitan ISO

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh 创建可启动的El Capitan ISO相关的知识,希望对你有一定的参考价值。

#!/usr/bin/env bash -x

hdiutil attach "/Applications/Install OS X El Capitan.app/Contents/SharedSupport/InstallESD.dmg" -noverify -nobrowse -mountpoint /Volumes/install_app
exitStatus=$?
if [ $exitStatus -ne 0 ]; then
	exit $exitStatus
fi

# Convert the boot image to a sparse bundle
hdiutil convert /Volumes/install_app/BaseSystem.dmg -format UDSP -o "/tmp/El Capitan"
exitStatus=$?
if [ $exitStatus -ne 0 ]; then
	exit $exitStatus
fi

# Increase the sparse bundle capacity to accommodate the packages
hdiutil resize -size 8g "/tmp/El Capitan.sparseimage"
exitStatus=$?
if [ $exitStatus -ne 0 ]; then
	exit $exitStatus
fi

# Mount the sparse bundle for package addition
hdiutil attach "/tmp/El Capitan.sparseimage" -noverify -nobrowse -mountpoint /Volumes/install_build
exitStatus=$?
if [ $exitStatus -ne 0 ]; then
	exit $exitStatus
fi

# Remove Package link and replace with actual files
rm /Volumes/install_build/System/Installation/Packages
exitStatus=$?
if [ $exitStatus -ne 0 ]; then
	exit $exitStatus
fi

cp -rp /Volumes/install_app/Packages /Volumes/install_build/System/Installation/
exitStatus=$?
if [ $exitStatus -ne 0 ]; then
	exit $exitStatus
fi

# Unmount the installer image
hdiutil detach /Volumes/install_app
exitStatus=$?
if [ $exitStatus -ne 0 ]; then
	exit $exitStatus
fi

# Unmount the sparse bundle
hdiutil detach /Volumes/install_build
exitStatus=$?
if [ $exitStatus -ne 0 ]; then
	exit $exitStatus
fi

# Resize the partition in the sparse bundle to remove any free space
hdiutil resize -size `hdiutil resize -limits "/tmp/El Capitan.sparseimage" | tail -n 1 | awk '{ print $1 }'`b "/tmp/El Capitan.sparseimage"
exitStatus=$?
if [ $exitStatus -ne 0 ]; then
	exit $exitStatus
fi

# Convert the sparse bundle to ISO/CD master
hdiutil convert "/tmp/El Capitan.sparseimage" -format UDTO -o "/tmp/El Capitan"
exitStatus=$?
if [ $exitStatus -ne 0 ]; then
	exit $exitStatus
fi

# Remove the sparse bundle
rm "/tmp/El Capitan.sparseimage"
exitStatus=$?
if [ $exitStatus -ne 0 ]; then
	exit $exitStatus
fi

# Rename the ISO and move it to the desktop
mv /tmp/El\ Capitan.cdr ~/Desktop/El\ Capitan.iso
exitStatus=$?
if [ $exitStatus -ne 0 ]; then
	exit $exitStatus
fi

exit 0

以上是关于sh 创建可启动的El Capitan ISO的主要内容,如果未能解决你的问题,请参考以下文章

sh 验证/修复OS X El Capitan上的磁盘权限

sh 创建可启动的Mavericks ISO

sh 在OS X El Capitan上安装Autoconf和Automake

sh 从HighSierra Installer创建可启动的ISO

在 Mac OS El Capitan 中安装后自动启动应用程序

在 Mac OS X Yosemite/El Capitan 上自动启动 MySQL 服务器