Skip to content

Instantly share code, notes, and snippets.

@TrainerGuy22
Last active August 29, 2015 14:03
Show Gist options
  • Save TrainerGuy22/87ffe41b69f73fd53e8d to your computer and use it in GitHub Desktop.
Save TrainerGuy22/87ffe41b69f73fd53e8d to your computer and use it in GitHub Desktop.

How to get Unix out of your Mac, Mac style.

Web Developement

  • You'll want to download Google Chrome Canary. Google explicitly dosen't let you set this as a default browser, but most of the time it's very stable. To set it as your default browser, open up Safari. On the top bar, go to Safari -> Preferences -> Default Web Browser. Chrome Canary should show up in the list.

Terminal Work, and most Unix-like stuff

Now, your probably coming from Linux. Will most of your command line stuff work? Absolutely. OSX is based of Darwin, which is an offical Unix-like POSIX system. Most things under the hood will work the same, a lot of the GNU tools are already installed. Also, device mounting is a little different, but that's about it.

  • First, you'll need your arsenal of general command-line and development tools (clang, git, etc...). The Terminal will prompt you to download XCode Developer Tools when you run a command that comes bundled with it (the prompt is misleading, it does not install the full XCode). So type git, and accept the prompt. Then wait it out while it downloads.

  • Secondly, the default OSX Terminal rather sucks. For this, I recomend iTerm 2. It's nice.

  • Now, you'll want your package manager. Use Homebrew. Once you install it, installing packages (called formulas) is as simple as brew install FORMULA. You can read the man pages for the rest, but it's like pacman's more straight forward and slower brother (I blame Ruby for the slowness).

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