Last active
September 9, 2023 02:58
-
-
Save peacefixation/0aa9d7ad64dbd2a55e978b2eee07cd1d to your computer and use it in GitHub Desktop.
Install OS X High Sierra without converting to APFS file system
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# create a USB installer | |
# https://support.apple.com/en-au/HT201372 | |
Download the OS X High Sierra installer via the App Store, it will be installed into the /Applications directory | |
If it opens automatically, close it | |
Insert a USB stick (8GB+) | |
Run the following command where MyVolume is the name of the USB volume: | |
sudo /Applications/Install\ macOS\ High\ Sierra.app/Contents/Resources/createinstallmedia --volume /Volumes/MyVolume | |
# boot the USB installer | |
Boot the computer holding the Option key | |
Select the USB installer as the startup disk | |
# from the menu, select Utilities > Terminal | |
# install without APFS (optional) | |
# use the installpackage parameter to install an extra .pkg (optional) | |
/Volumes/Image\ Volume\Install\ macOS\ High\ Sierra.app/Contents/Resources/startosinstall \ | |
--volume /Volumes/Macintosh\ HD/ \ | |
--converttoapfs NO \ | |
--applicationpath /Volumes/Image\ Volume\Install\ macOS\ High\ Sierra.app \ | |
--agreetolicense \ | |
--installpackage extra-package.pkg | |
#jiltedflower ... try to start under safemode and type under terminal
/Applications/Install\ macOS\ High\ Sierra.app/Contents/Resources/startosinstall --applicationpath /Applications/Install\ macOS\ High\ Sierra.app --agreetolicense --converttoapfs NO --nointeraction
(in my case)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
"Target is not convertible to APFS: You may not install to this volume because it can not be converted to Apple File System.
2021-02-18 08:31:57+00 MacBook-Pro osinstallersetupd[4322]: Disk disk5s2 is not suitable because DMError: -69837`" ~dangerdave777
I am getting a similar message in my log like this one and I am wondering if you were able to resolve this, and if so, how you managed it?