You'll spend most of this bootcamp in a terminal. If you've never opened one before, this page gets you oriented — what these words mean, how to move around, and how to find your files afterwards in Finder or Windows Explorer.
Press ⌘ + Space, type Terminal, hit Enter. You're done. Follow any bootcamp example exactly as written.
Open the Ubuntu app from your Start menu. That's it. Everything a bootcamp example says to type will work the same as on a Mac.
"Ubuntu" is the app we want you to use on Windows for this bootcamp. If you haven't installed it yet, follow the Pre-Class Setup Guide.
Shows you where you are right now. When in doubt, run this.
$ pwd
/Users/patrick
Lists the files and folders in the current directory.
$ ls
Documents Downloads Desktop Music Pictures
Optional: use ls -la to see more detail, including hidden files.
Moves you into a folder. This is how you navigate.
$ cd Documents # go into Documents $ cd .. # go UP one level $ cd ~ # go to your home folder $ cd # (same thing — home folder) $ cd /tmp # jump straight to a specific folder
Tab. The terminal finishes the name for you. This is one of the easiest ways to avoid typos.Creates a new folder in your current directory.
$ mkdir my-first-project $ cd my-first-project $ pwd /Users/patrick/my-first-project
cd My Project won't work. Use cd "My Project" with quotes, or just skip spaces when you name folders — use my-project or my_project instead.From the terminal, you can open the current folder in Finder directly:
$ open . # opens current folder in Finder $ open ~/Documents # opens Documents in Finder
Or from Finder's menu: Go → Go to Folder… (⌘ + Shift + G), then paste a path like /Users/yourname/my-first-project.
To see hidden files in Finder (anything starting with ., like .claude): press ⌘ + Shift + . (period).
From the Ubuntu window, open the current folder in Windows Explorer:
$ explorer.exe . # opens the current folder in Explorer
The files you create in Ubuntu don't show up in your normal Windows drives — they live in their own spot on your computer. The easy way to browse them: open Explorer and look in the left sidebar for a Linux entry (penguin icon). Your Ubuntu home folder is inside.
cd into it from the terminal.cd (with a trailing space) in Terminal, then drag the folder from Finder onto the Terminal window. The full path gets pasted in for you. Hit Enter.Option → "Copy as Pathname."cd in Ubuntu.Shift + right-click a folder → "Copy as path."clear to clean up the screen when it gets noisy.Documents and documents are different folders as far as the terminal is concerned.pwd, ls, cd, or mkdir. Poke around freely.cmd.exe). Same deal — not what we're using. Close and open Ubuntu.$ or >. When a guide shows $ ls, the $ is the prompt — don't type it, just type ls./Users/patrick/Documents/project — read that as "inside Users, inside patrick, inside Documents, the project folder."~ (tilde).pwd to see it.