Capstone: Setting Up and Securing a New Mac

macOS

Chapter 12 · Capstone: Setting Up and Securing a New Mac

Elena is a freelance designer who just replaced an aging Windows laptop with her first Mac. Everything from Chapter 1 onward gets applied here, in the order a genuine new-Mac setup would actually hit it — not as an abstract review, but as one continuous session getting a real machine from "just unboxed" to "secured and ready for daily client work."

Step 1 — First Boot, and Proving It's Really Unix

The out-of-box setup assistant walks Elena through language, Wi-Fi, and her first Administrator account. Once the desktop appears, she spends a few minutes on the interface tour itself — the Dock, the Menu Bar following whichever app is active, Spotlight for launching her first few apps. Out of curiosity, she opens Terminal and runs uname -a, seeing "Darwin" reported directly — the same proof Chapter 1 walked through, now confirmed on her own machine rather than as an abstract claim.

Step 2 — Accounts and Authentication

Rather than working daily from the Administrator account created during setup, Elena creates a Standard account for herself and reserves the Admin account for actual administrative tasks — the same least-privilege habit Chapter 3 argued for. She sets up Touch ID, and the first time she installs something requiring elevation, she notices the authentication dialog demanding her actual password rather than a single consent click — exactly the stricter default Chapter 3 named.

Step 3 — Terminal, zsh, and Homebrew

Opening Terminal again, she confirms her shell with echo $SHELL — zsh, as expected since Catalina. She installs Homebrew from brew.sh, then runs brew --prefix to confirm the install path on her Apple Silicon machine is /opt/homebrew, not the /usr/local path an older tutorial she'd bookmarked assumed.

Step 4 — Installing Software, and Checking What Gatekeeper Actually Did

Through Homebrew, she installs a couple of command-line Formulas (git, wget) and one Cask, a design tool distributed outside the Mac App Store. Before trusting it with client files, she runs codesign -dv --verbose=4 and spctl -a -vv against it, confirming a valid Developer ID signature and a passed Gatekeeper assessment — turning Chapter 6's abstract three-tier trust model into an actual five-second check.

Step 5 — Understanding the Disk Underneath

Curious how her storage is actually laid out, Elena runs diskutil apfs list and sees her Data and system volumes sharing one APFS container's free space, rather than sitting in fixed, separately-sized partitions — Chapter 7's container model, visible on her own drive.

Step 6 — Locking Down the Security Stack

In System Settings, she turns on FileVault, storing the recovery key with her Apple ID rather than only locally. From Terminal, csrutil status confirms System Integrity Protection is enabled — she never touches Recovery to disable it, since there's no reason to, but knowing where that door is (and how deliberately inconvenient it is to open) is itself part of Chapter 8's own point.

Step 7 — Backup, and the Mistake She Almost Made

She connects an external drive for Time Machine. When the setup dialog offers to encrypt the backup disk, she nearly skips it to save a step — then remembers Chapter 9's own warning directly: an unencrypted backup would quietly undermine the FileVault protection she'd just turned on in Step 6. She enables backup encryption.

Step 8 — Networking and Sharing

She joins her home Wi-Fi and saves it as a "Home" Location. To move a folder of old files from her previous Windows laptop, she briefly turns on File Sharing — over SMB, meaning the Windows machine sees it natively with no extra software — then turns it back off once the transfer finishes. She sets AirDrop to Contacts Only rather than leaving it on Everyone, a direct application of Chapter 10's own warning about forgetting to turn that setting back down.

Step 9 — A Final Health Check

Before calling the setup finished, Elena opens Activity Monitor to confirm nothing is unexpectedly consuming CPU or memory after a fresh install, and Console.app to skim for any early errors using log show --predicate 'eventMessage contains "error"' --last 1h. Everything's clean — a five-minute check using Chapter 11's own toolkit, confirming the setup actually succeeded rather than just assuming it did.

Chapter Attribution

StepChapter(s) applied
1 — First boot & interfaceChapter 1 (Darwin/Unix core), Chapter 2 (Menu Bar, Dock, Spotlight)
2 — Accounts & authenticationChapter 3 (Standard vs. Admin, authentication dialog, Touch ID)
3 — Terminal, zsh & HomebrewChapter 4 (zsh/BSD toolset), Chapter 5 (Homebrew, prefix by chip)
4 — Installing softwareChapter 6 (code signing, notarization, Gatekeeper)
5 — Disk layoutChapter 7 (APFS containers)
6 — Security stackChapter 8 (FileVault, SIP)
7 — BackupChapter 9 (Time Machine, backup encryption)
8 — Networking & sharingChapter 10 (Locations, File Sharing/SMB, AirDrop)
9 — Health checkChapter 11 (Activity Monitor, Console.app)
What this whole course was really about
Chapter 1 opened by completing a table Windows 11 Fundamentals 1 left with one row reserved: macOS as a genuine third philosophy, a proprietary GUI over a real, certified Unix core. Every chapter since has been one more instance of that same duality — a polished consumer interface (Chapters 2, 3) sitting directly on top of, and constantly cooperating with, mechanisms that are genuinely, verifiably Unix (Chapters 1, 4, 7) and genuinely, deliberately Apple's own (Chapters 6, 8, 11's NVRAM/SMC material). Elena's setup session didn't touch anything this course hadn't already explained.
Honest scope note
This capstone deliberately stays within a single-user, personally-owned Mac. It doesn't cover MDM enrollment or Apple Business Manager, enterprise Configuration Profiles, multi-user family setups, VPN configuration, or Time Machine backing up to networked/NAS storage rather than a directly attached disk. Those belong to genuinely different territory — managed-fleet Mac administration — outside what a 12-chapter fundamentals course can responsibly claim to cover.

Hands-On Exercises

Exercise 1

Walk through Elena's Step 7 (backup) and explain, in your own words, exactly what mistake she almost made and which earlier chapter's warning stopped her. Why does this chapter call it "the mistake she almost made" rather than just describing the correct steps directly?

📄 View solution
Exercise 2

This chapter's own finding-box ties the entire course back to Chapter 1's "proprietary GUI over a certified Unix core" framing. Pick any two steps from Elena's setup session and explain how each one shows both halves of that duality at once.

📄 View solution
Exercise 3

Explain why this capstone's honest scope note excludes MDM enrollment and multi-user family setups specifically, rather than treating the single-user setup shown as universally complete.

📄 View solution

Chapter 12 Quick Reference — Course Complete

  • 9 steps, 11 prior chapters — one continuous, realistic new-Mac setup session, from first boot to a verified health check
  • This course's own throughline, closed out: macOS as a genuine third philosophy — a proprietary GUI over a real, certified Unix core — completing the row Windows 11 Fundamentals 1 left reserved
  • Honest scope note: single-user only — no MDM/Apple Business Manager, no enterprise profiles, no multi-user family setup, no VPN, no NAS-based Time Machine
  • The macOS course is now complete — 12/12 chapters