User Guide: Basic Mac Housekeeping 🧹✨
Keeping your Mac tidy and running smoothly doesn’t have to be complicated. Think of it like cleaning your room—just a few simple habits can make a big difference. Follow these steps to keep your Mac fast, secure, and clutter-free.
1. Keep Your Software Up-to-Date 🔄
Outdated software can slow down your Mac or leave it vulnerable to security issues. Here’s how to stay updated:
macOS Updates
- Click the Apple Menu () in the top-left corner of your screen.
- Select System Settings.
- Go to General > Software Update.
- Install any available updates.
Homebrew Updates (Command-Line Tools)
If you use Homebrew to install apps and tools, keep them updated regularly. Open your terminal (e.g., iTerm2 or Terminal) and run:
brew update && brew upgrade
brew update
: Updates the list of available software.brew upgrade
: Updates all installed tools and apps to the latest versions.
App Store Updates
- Open the App Store.
- Click Updates in the sidebar.
- Install any available updates for your apps.
Alternatively, if you use the mas
command-line tool (installed via Homebrew), you can update App Store apps directly from the terminal:
mas outdated # Lists apps with updates available
mas upgrade # Updates all outdated apps
2. Clean Up Files and Free Up Space 💾
Digital clutter can slow down your Mac. Here’s how to keep things organized:
Homebrew Cleanup
After updating Homebrew, remove old versions of software to free up space:
brew cleanup
Example output:
Removing: /opt/homebrew/Cellar/git/2.40.0... (150 files, 45.2MB)
Organize Your Downloads Folder
The ~/Downloads
folder often collects unnecessary files. Here’s what to do:
- Open the Downloads folder in Finder.
- Delete
.dmg
files (disk images) after installing apps. - Remove old installers, zip files, or anything you no longer need.
- Move important files to proper folders like Documents or project-specific directories.
(Tip: Your Dock includes a stack for quick access to Downloads!)
Empty the Trash
Files you delete aren’t gone until you empty the Trash:
- Right-click (or Ctrl-click) the Trash icon in your Dock.
- Select Empty Trash.
Find Large Files
If you’re running out of space, find and delete large files:
- Open Finder and press
Cmd + F
to start a search. - Click the Kind dropdown and select Other....
- Search for File Size, check the box, and click OK.
- Set the search criteria to
File Size
|is greater than
|1
|GB
(or500 MB
). - Select Search: This Mac to find large files.
Be careful not to delete system files! If unsure, leave it alone.
(Optional: Use a disk visualizer like GrandPerspective to see what’s taking up space: brew install --cask grandperspective
.)
3. Check Your Mac’s Performance 🩺
If your Mac feels slow, here’s how to troubleshoot:
Use Activity Monitor
- Open Activity Monitor (search for it using
Cmd + Space
). - Check the % CPU and Memory tabs.
- Sort by usage to see which apps are using the most resources.
- If an app is unresponsive, select it and click the X button to Force Quit. (Save your work first if possible!)
(Advanced users can use the htop
command in the terminal for more details: sudo htop
.)
Restart Regularly
Restarting clears temporary memory and gives your Mac a fresh start. Aim to restart once a week:
- Click the Apple Menu ().
- Select Restart....
Manage Login Items
Too many apps starting automatically can slow down your Mac:
- Go to System Settings > General > Login Items.
- Under Open at Login, remove apps you don’t need by selecting them and clicking the
-
(minus) button.
4. Back Up Your Mac with Time Machine 🛡️
Backing up your Mac is essential to protect your data. Here’s how to set up Time Machine:
- Get an External Drive: Use a USB hard drive or SSD that’s at least 2-3 times the size of your Mac’s storage.
- Connect the Drive: Plug it into your Mac.
- Enable Time Machine:
- macOS should ask if you want to use the drive for Time Machine. Click Yes.
- If it doesn’t, go to System Settings > General > Time Machine, click Add Backup Disk..., and select your drive.
- Check Backups: Look for the Time Machine icon in the menu bar (top-right). Click it to see the last backup time or choose Back Up Now.
5. Keep Docker in Check (If You Use Docker) 🐳
Docker can take up a lot of disk space over time. Clean up unused containers, images, and volumes with this command:
docker system prune
(See the Docker guide for more details.)
6. Bonus Tips for a Happy Mac 😊
Keep Your Desktop Clean
A cluttered desktop can slow down your Mac. Move files into folders and keep only what you need visible.
Use Spotlight for Quick Searches
Press Cmd + Space
to open Spotlight and quickly find files, apps, or even perform calculations.
Learn Keyboard Shortcuts
Shortcuts save time! Here are a few useful ones:
Cmd + Q
: Quit an app.Cmd + W
: Close a window.Cmd + Tab
: Switch between open apps.Cmd + Shift + 4
: Take a screenshot of a selected area.
By following these simple steps, you’ll keep your Mac running smoothly and efficiently. A little maintenance goes a long way—happy housekeeping! 🧹✨