Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update install docs #398

Merged
merged 2 commits into from
Sep 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/install/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ The resulting build includes the following projects:
* [r2frida](https://github.com/nowsecure/r2frida) (only in supported platforms)
* [r2dec](https://github.com/wargio/r2dec-js)
* [r2yara](https://github.com/radareorg/r2yara)
* [r2ai](https://github.com/radareorg/r2ai) (only decai r2plugin)
* [r2pipe](https://pypi.org/project/r2pipe/) (for Python)

To use this docker image you can use either:
Expand Down
2 changes: 1 addition & 1 deletion src/install/flatpak.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,4 +103,4 @@ flatpak override --user --filesystem=/mnt/hdd:ro org.radare.iaito
flatpak override --user --reset org.radare.iaito
```

The Flatpak version of iaito comes bundled with several useful plugins: [r2dec](https://github.com/wargio/r2dec-js), [r2ghidra](https://github.com/radareorg/r2ghidra), [r2frida](https://github.com/nowsecure/r2frida), and [r2yara](https://github.com/radareorg/r2yara). These plugins enhance the functionality of radare2, providing additional capabilities for decompilation, integration with Ghidra, dynamic analysis with Frida, and YARA rule matching.
The Flatpak version of iaito comes bundled with several useful plugins: [r2dec](https://github.com/wargio/r2dec-js), [r2ghidra](https://github.com/radareorg/r2ghidra), [r2frida](https://github.com/nowsecure/r2frida), [r2yara](https://github.com/radareorg/r2yara), and [decai](https://github.com/radareorg/r2ai). These plugins enhance the functionality of radare2, providing additional capabilities for decompilation, integration with Ghidra, dynamic analysis with Frida, and YARA rule matching.
14 changes: 14 additions & 0 deletions src/install/snap.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,17 @@ alias sleighc='radare2.sleighc'
alias yara='radare2.yara'
alias yarac='radare2.yarac'
```

### Iaito Snap

Also **iaito**, as a radare GUI, can be installed using this packaging system.

To install it is required to run the following command:

```sh
sudo snap install iaito --classic
```

In the same way radare2 snap include a set of commands, iaito snap also include radare2 commands prefixed with `iaito.` (for example `iaito.r2`, `iaito.rax2`,...).
This commands can be used from CLI, and allow to use the same environment as iaito GUI.
But to use radare2 from CLI it is prefered to install and use the main `radare2` snap package.
Loading