Mac, MacOS, and OS/X
3 minute read
Here’s what I have for Apple Macintosh operating systems, aka Mac, MacOS, OS/X, and so on.
It’s a bit of a grab bag at the moment. I’ll add additional material over time.
Finder
Hidden files
Finder hides system files (and folders) by default.
To view hidden files for the current Finder session, press Command + Shift + .
(period). (This affects all open Finder windows.)
This is a toggle setting. Press the key to hide the files.
To always display hidden files, start terminal and then run:
$ defaults write com.apple.Finder AppleShowAllFiles true`
To hide system files by default, run this command with false
as the final parameter.
You need to restart all Finder instances to pick up changes. To do so quickly, run:
$ killall Finder
(This command is case-sensitive.)
Brew (Homebrew)
Brew (formally Homebrew) is a popular package manager for macOS, generally run from the command line (Terminal).
Set up instructions are on the Homebrew site (brew.sh).
To keep everything up-to-date:
brew update
brew outdated
brew upgrade
For best results, consider running brew doctor
twice before starting this process. (There are times when it seems to help.)
To learn more, see the brew FAQs (brew.sh).
Force quit
It doesn’t happen often, but apps can stop responding on Macs & iPads. Here a few quick reminders:
-
To close an unresponsive app:
- From Apple menu (), choose Force Quit.
- Next, select the unresponsive app and then select the Force Quit button to close it.
-
The keyboard shortcut is
Command + Option + Esc
on current Macs andCommand + Alt + Esc
on earlier devices. -
If you prefer the command line, you can use
top
to determine the process ID (pid) of the app and thenkill
to stop its process. (For details, see the relevantman
pages.) -
On the iPad Mini:
- Hold the Sleep/Power button until the “Slide to Power off” message appears
- Release the power button
- Quickly press and hold the Home button. After roughly six seconds, the active app quits.
If you do not release the power button in Step 2, the device restarts.
-
If you prefer to use Terminal commands, go for it.
Safari
Enable developer tools
Safari hides View Source and Developer tools by default.
To show them:
-
Start Safari and then use the menu to select Safari > Settings.
-
From the Advanced tab of the Settings dialog, place a checkmark next to Show features for web developers
When you do this:
- a Develop tab appears in the Settings dialog
- a Develop menu appears in the app menu
The Developer tools can help troubleshoot website issues.
To open the Console, for example, use the Safari menu to select Develop > Show JavaScript Console.
Vital statistics
- August 24 2025: Started expanding.
- 20 Jun 2024: Minor edits
- 9 May 2024: First post