Installation
Currently only Windows, macOS, and Linux binaries from GitHub Releases are provided. For now these binaries are unsigned. Any other binaries from 3rd party services (crates.io, Homebrew, Chocolatey, etc) are unofficial. Support for additional distribution services may be considered in the future.
Supported Systems
Currently artemis
has been tested on the following types of systems:
- Windows 8.1 and higher. Arch: 64-bit
- macOS Catalina and higher. Arch: 64-bit and ARM
- Ubuntu, Fedora, Arch Linux. Arch: 64-bit and ARM
If you would like support for another OS or architecture please open an issue.
GitHub Releases
Once downloaded for you platform from GitHub, extract the binary from the archive and you should be able to start collecting forensic data!
Build from Source
You may also build artemis from source.
In order build artemis you will need to install the Rust programming langague.
Instructions to install Rust can be found on the
Rust Homepage.
Once Rust
is installed you can download the source code for artemis using
git
:
git clone https://github.com/puffycid/artemis
Navigate to your downloaded repo and run:
cargo build
By default cargo builds a debug
version of the binary. If you want to build
the release
version (recommended) of the binary run:
cargo build --release
The release
version will be much faster and smaller than the debug
version. The compiled binary will be located at:
<path to artemis repo>\target\debug\artemis
for the debug version<path to artemis repo>\target\release\artemis
for the release version