proxmark3/doc/md/Installation_Instructions/Mac-OS-X-Homebrew-Installation-Instructions.md

109 lines
4.4 KiB
Markdown
Raw Normal View History

2019-08-21 03:30:43 +08:00
# Homebrew (Mac OS X), automatic installation
## Install Proxmark3 tools
2019-05-06 01:53:58 +08:00
These instructions comes from @Chrisfu, where we got the proxmark3.rb scriptfile from.
For further questions about Mac & Homebrew, contact @Chrisfu (https://github.com/chrisfu/)
1. Install homebrew if you haven't yet already done so: http://brew.sh/
2. Tap this repo: `brew tap RfidResearchGroup/proxmark3`
3. Install Proxmark3:
- (Optional) `export HOMEBREW_PROXMARK3_PLATFORM=xxxxxx` to specify [platform](https://github.com/RfidResearchGroup/proxmark3/blob/master/doc/md/Use_of_Proxmark/4_Advanced-compilation-parameters.md#platform), default value is `PM3RDV4` if none
- `brew install proxmark3` for stable release
- `brew install --HEAD proxmark3` for latest non-stable from GitHub (use this if previous command fails)
2020-04-17 03:25:30 +08:00
- `brew install --with-blueshark proxmark3` for blueshark support, stable release
- `brew install --HEAD --with-blueshark proxmark3` for blueshark support, latest non-stable from GitHub (use this if previous command fails)
For more info, go to https://github.com/RfidResearchGroup/homebrew-proxmark3
2019-08-21 03:30:43 +08:00
## Upgrade HomeBrew tap formula
2019-05-06 01:53:58 +08:00
*This method is useful for those looking to run bleeding-edge versions of RRG/iceman's client. Keep this in mind when attempting to update your HomeBrew tap formula as this procedure could easily cause a build to break if an update is unstable on macOS.*
Tested on macOS Mojave 10.14.4
2019-05-06 01:53:58 +08:00
*Note: This assumes you have already installed RRG/iceman's fork from HomeBrew as mentioned above*
2019-05-06 01:53:58 +08:00
Force HomeBrew to pull the latest source from github
```sh
brew upgrade --fetch-HEAD proxmark3
2019-05-06 01:53:58 +08:00
```
## Flash the BOOTROM & FULLIMAGE
With your Proxmark3 unplugged from your machine, press and hold the button on your Proxmark3 as you plug it into a USB port. You can release the button, two of the four LEDs should stay on. You're in bootloader mode, ready for the next step. In case the two LEDs don't stay on when you're releasing the button, you've an old bootloader, start over and keep the button pressed during the whole flashing procedure.
2019-09-04 04:54:42 +08:00
In principle, the helper script `pm3-flash-all` should auto-detect your port, so you can just try:
```sh
2019-09-04 04:54:42 +08:00
pm3-flash-all
```
2019-09-04 04:54:42 +08:00
If port detection failed, you'll have to call the flasher manually and specify the correct port:
2019-09-04 04:54:42 +08:00
```sh
2019-09-09 07:54:59 +08:00
proxmark3 /dev/tty.usbmodemiceman1 --flash --unlock-bootloader --image /usr/local/share/proxmark3/firmware/bootrom.elf --image /usr/local/share/proxmark3/firmware/fullimage.elf
2019-09-04 04:54:42 +08:00
```
> Depending on the firmware version your Proxmark3 can also appear as `/dev/tty.usbmodem881`.
2019-05-06 01:53:58 +08:00
2019-05-06 01:53:58 +08:00
## Run the client
2019-05-06 01:53:58 +08:00
```sh
2019-09-04 04:54:42 +08:00
pm3
```
or, if the port doesn't get properly detected:
```sh
proxmark3 /dev/tty.usbmodemiceman1
2019-05-06 01:53:58 +08:00
```
## Next steps
For the next steps, please read the following pages:
* [Validating proxmark client functionality](/doc/md/Use_of_Proxmark/1_Validation.md)
* [First Use and Verification](/doc/md/Use_of_Proxmark/2_Configuration-and-Verification.md)
* [Commands & Features](/doc/md/Use_of_Proxmark/3_Commands-and-Features.md)|
2019-08-21 03:30:43 +08:00
# Homebrew (Mac OS X), developer installation
These instructions will show how to setup the environment on OSX to the point where you'll be able to clone and compile the repo by yourself, as on Linux, Windows, etc.
1. Install homebrew if you haven't yet already done so: http://brew.sh/
2. Install dependencies:
```
brew install readline qt5 pkgconfig
2019-08-21 03:30:43 +08:00
brew install RfidResearchGroup/proxmark3/arm-none-eabi-gcc
```
3. (optional) Install makefile dependencies:
```
brew install recode
brew install astyle
```
2019-08-21 03:30:43 +08:00
## Compile and use the project
2019-09-10 01:55:55 +08:00
To use the compiled client, the only difference is that the Proxmark3 port is `/dev/tty.usbmodemiceman1`, so commands become:
2019-09-04 04:54:42 +08:00
2019-08-21 03:30:43 +08:00
```sh
2019-09-10 01:55:55 +08:00
proxmark3 /dev/ttyACM0 => proxmark3 /dev/tty.usbmodemiceman1
2019-08-21 03:30:43 +08:00
```
2019-09-10 01:55:55 +08:00
Now you're ready to follow the [compilation instructions](/doc/md/Use_of_Proxmark/0_Compilation-Instructions.md).
2019-08-21 03:30:43 +08:00
2019-09-10 01:55:55 +08:00
To flash on OS X, better to enter the bootloader mode manually, else you may experience errors.
With your Proxmark3 unplugged from your machine, press and hold the button on your Proxmark3 as you plug it into a USB port. You can release the button, two of the four LEDs should stay on. You're in bootloader mode, ready for the next step. In case the two LEDs don't stay on when you're releasing the button, you've an old bootloader, start over and keep the button pressed during the whole flashing procedure.
From there, you can follow the original compilation instructions.