From da81619140e8919f2496fe6e8a1e759536d33699 Mon Sep 17 00:00:00 2001 From: Brooke Kuhlmann Date: Sat, 28 Jul 2018 17:45:55 -0600 Subject: [PATCH] Updated boot disk format documentation. Added emphasis for using *Mac OS Extended (Journaled)* format for the USB drive and *APFS (Encrypted)* for the main drive. --- bin/create_boot_disk | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/bin/create_boot_disk b/bin/create_boot_disk index 5343db3..4fe6b38 100755 --- a/bin/create_boot_disk +++ b/bin/create_boot_disk @@ -5,14 +5,15 @@ # EXECUTION printf "macOS Boot Disk Tips\n" -printf " - Use a USB drive (8GB or higher is best).\n" -printf " - Use Disk Utility to format the USB drive (Use \"Untitled\" for the label).\n" +printf " - Use a USB drive (8GB or higher).\n" +printf " - Use Disk Utility to format the USB drive as \"Mac OS Extended (Journaled)\".\n" +printf " - Use Disk Utility to label the USB drive as \"Untitled\".\n" printf "\nmacOS Boot Disk Usage:\n" printf " 1. Insert the USB boot disk into the machine to be upgraded.\n" printf " 2. Reboot the machine.\n" printf " 3. Hold down the OPTION key before the Apple logo appears.\n" printf " 4. Select the USB boot disk from the menu.\n" -printf " 5. Format the machine's internal drive using Disk Utility (choose APFS).\n" +printf " 5. Use Disk Utility to format the machine's drive as \"APFS (Encrypted)\".\n" printf " 6. Install the new operating system.\n" printf "\nmacOS Reinstall:\n" printf " 1. Click the Apple icon from the operating system main menu.\n"