AWS offers EC2-optimized macOS AMIs for developer use. The EC2 Mac AMIs provided by AWS include this Tap by default, which provides a simple way to get these tools and updates to them.
Homebrew is a package manager for macOS, which provides easy installation and update management of additional software.
A third-party (in relation to Homebrew) repository, which provides installable packages on macOS.
See more at https://docs.brew.sh/Taps.
This Tap (repository) contains the formulae that are used in the macOS AMI(s) that are offered by AWS for launching EC2 Mac instances.
This includes:
Name | Description | Type | Package Name |
---|---|---|---|
Amazon ENA | EC2 Mac ENA Network Driver for macOS | Cask | amazon-ena-ethernet |
Amazon ENA DriverKit | EC2 Mac ENA Network Driver for macOS Monterey and later (arm64 only) | Cask | amazon-ena-ethernet-dext |
Amazon EFS | Amazon Elastic File System | Keg | amazon-efs-utils |
Amazon SSM Agent | Amazon SSM Agent | Cask | amazon-ssm-agent |
EC2 macOS Init | Instance initialization and configuration, including performance optimization | Cask | ec2-macos-init |
EC2 System Monitor for macOS | For collecting system monitoring CloudWatch metrics on mac1.metal instances | Cask | ec2-macos-system-monitoring |
EC2 macOS Utils | Provides common command-line tool for customizing EC2 Mac instances | Cask | ec2-macos-utils |
EC2 Instance Connect | EC2 Instance Connect | Cask | ec2-instance-connect |
This Tap follows standard Homebrew commands, for more information, please refer to the Homebrew Documentation. Updating homebrew itself is done via the following command:
brew update
The above command will update homebrew itself and this comamnd should always be run prior to attempts to install or update any packages with brew.
The macOS AMIs provided by AWS already come with Homebrew installed and this Tap "pretapped". To manually install the Tap, use the the brew tap
command:
brew tap aws/homebrew-aws
If this Tap needs to be removed for any reason, Homebrew includes a specific command for this. (Note: This will only remove the Tap and it will preserve anything that was previously installed)
brew untap aws/homebrew-aws
To update a specific package (Keg or Cask) that has been installed from this tap. Kegs use the default brew upgrade <package>
command, while Casks have their own sub-command: brew upgrade --cask <package>
.
For example:
Type | Update Command |
---|---|
Full System | brew upgrade |
Keg | brew upgrade amazon-efs-utils |
Cask | brew upgrade --cask amazon-ena-ethernet-dext |
There are two primary ways to install software from the Tap. Kegs use the default brew install <package>
command, while Casks have their own sub-command: brew install --cask <package>
.
For example:
Type | Install Command |
---|---|
Keg | brew install amazon-efs-utils |
Cask | brew install --cask amazon-ena-ethernet-dext |
Removing software is similar to installing software. Kegs and Casks now use the same brew remove <package>
command.
For example:
Type | Uninstall Command |
---|---|
Keg | brew remove amazon-efs-utils |
Cask | brew remove amazon-ssm-agent |
To get more information about brew you can run brew help
or man brew
on a mac1.metal instance or check Homebrew's documentation for Homebrew's complete documentation.
This project is licensed under the Apache License, version 2.0.