u/12EDITUSs

▲ 5 r/termux+1 crossposts

Fixed Frida 17.9.10 on Termux (Android ARM64) - No More Toolchain 404 & _Py_NoneStruct Errors!

Hi everyone,

If you’ve ever tried installing Frida natively on Termux (without proot) and gave up due to compilation errors, I’ve built a solution. I compiled Frida 17.9.10 directly inside Termux against Python 3.13 and patched the symbol errors.

🛑 The Problem with Standard Installation:

Version Mismatch: APT repositories usually host outdated versions (v17.2.x), causing connection breaks with the latest github frida-server.

_Py_NoneStruct Symbol Error: Standard pre-built wheels fail to link properly with Android libraries, crashing Python on startup.

Toolchain 404 Build Error: pip tries to build from source but requests non-existent toolchain files from Frida's servers, causing an HTTP 404 crash.

github.com
u/12EDITUSs — 7 days ago
▲ 95 r/opencode+2 crossposts

How to install Opencode on Termux for Android

I made a simple Bash script to install and update OpenCode on Termux for Android.

It uses the reliable build system from [Hope2333/opencode-termux](https://github.com/Hope2333/opencode-termux) and supports two main functions:

- **Full Fresh Installation** – sets up all dependencies (glibc, openssl, ripgrep, etc.) and builds the latest OpenCode from source.

- **Quick Update** – fetches the newest upstream release via GitHub API and automatically upgrades your existing install.

Everything is menu-driven. No manual steps after running the script.

**How to use:**

```bash

chmod +x manage_opencode.sh

./manage_opencode.sh

```

u/12EDITUSs — 18 days ago