Mac Support: Moving homebrew installs to a new Mac

Our siblings pebblecode posted a good article last week that’s relevant here too.

Moving homebrew installs to a new Mac by George Ornbo:

You are a homebrew user and you have a new Mac. If you don’t want to use Apple’s migration tool to copy over everything you might be faced with running brew install [formula] for everything you have installed.

Unless you have a spare afternoon to do this you can achieve the same things with a few commands and be done in minutes, leaving you to get on with something more interesting.

On your old mac you can output a list of installed software from homebrew.

<code>brew list
</code>

By piping this into a file you can create a text file containing all of your installed software.

<code>brew list &gt; homebrew.txt
</code>

Now you can copy this to your new Mac by Airdrop if you are on the same network, scp or using a cloud service.

Once you have the file on your new Mac and assuming you have homebrew setup you can install all of the software with a single command

<code>cat homebrew.txt | xargs brew install
</code>

You might find that homebrew has removed some formulae since you installed it. If this is the case just edit the file and remove the formula that is no longer available.

If you have your dotfiles in git repository you’ve suddenly got a pretty portable setup.

 

  • Email