What is the equivalent to System32 on a Mac?

What is the equivalent to System32 on a Mac? Where are the system files kept is what I am trying to get at, obviously , they exist, but does Apple choose to not make them accessible?

4

2 Answers

It's Unix, so everything that's not under a user's home directory (that is, somewhere under /Users/) is basically a system file. And I suppose you're not counting /Applications/ as system files.

You're probably mainly looking for /System/.

Here's a few more to look at:

/
/bin
/sbin
/usr
/etc
/var
/System
/Library

The Finder hides a lot of these by default. Use the Terminal to get to them. Use open <path to some directory> to make the Finder open a window for that directory. See other Answers on this site and elsewhere for how to make the Finder show more stuff by default.

There is no direct equivalent, but there are a few places that are kind of similar-ish:

/System/Library is kind of similar, though not exactly. Things like kernel extensions, core frameworks, and other tools live there.

/Library contains a bunch of system configuration stuff, and some support frameworks and other ephemera that contain binaries for some things.

/sbin, and /usr/sbin contain a bunch of the sysadmin focused binaries, and /bin and /usr/bin contain various other Unix binaries, many of which are involved in the "system32" equivalent side of things, and are not directly visible.

Without knowing exactly why you want to know this, it is hard to give a more exact answer.

You Might Also Like