Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save woswos/6c6e41f337ddff53b465ed535dde77e6 to your computer and use it in GitHub Desktop.
Save woswos/6c6e41f337ddff53b465ed535dde77e6 to your computer and use it in GitHub Desktop.

Steam Client on APFS Case Sensitive Mac OS Drive

If you are using APFS Case Sensitive File system and trying to use Steam, it will flicker & silently fail or show the following error message:

steam requires that '~/library/application support/steam/steam.appbundle/steam/contents/macos' be on a case-insensitive filesystem.

To fix the issue, follow the instruction here.

Run from your user account, NOT ROOT!

$ brew cask install steam
$ diskutil apfs addVolume disk1 APFS Steam
$ mv /Applications/Steam.app /Volumes/Steam/Steam.app
$ ln -s /Volumes/Steam/Steam.app /Applications/Steam.app
$ mv ~/Library/Application\ Support/Steam /Volumes/Steam/Library
$ ln -s /Volumes/Steam/Library ~/Library/Application\ Support/Steam

Then start Steam as normal.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment