ORION-Runtime / scripts /termux_install_minimum.sh
Alvoradozerouno's picture
ORION System Update 2026-05-12: Multi-Agent Discussion, KRIA Validation, Agent Refactor, DDGK->ORION Migration
da3e674
Raw
History Blame Contribute Delete
1 kB
#!/data/data/com.termux/files/usr/bin/bash
# Auf dem NOTE10 in Termux ausfuehren (ein Block).
# Wichtig: Datei mit LF-Zeilenumbruechen (kein Windows-CRLF), sonst: bash syntax error
# Oder in Termux: sed -i 's/\r$//' scripts/termux_install_minimum.sh
set -e
echo "=== Termux: Minimal-Install (SSH + Python) ==="
pkg update -y && pkg upgrade -y
# Termux hat KEIN Debian-Paket "build-essential" / oft kein separates "python-pip"
# Zum Kompilieren (falls psutil kein Wheel hat): clang, make, libffi
pkg install -y openssh python clang make libffi pkg-config openssl
echo ""
echo "Jetzt: passwd setzen, dann whoami merken, dann:"
echo " sshd"
echo "Pruefen: ss -tlnp | grep 8022"
echo ""
python3 -m pip install --user -U pip wheel setuptools
python3 -m pip install --user --prefer-binary requests
python3 -m pip install --user --prefer-binary psutil || python3 -m pip install --user psutil || true
echo "OK: pip deps (psutil optional - Agent laeuft sonst mit Fallback)"
echo "Fertig. sshd nicht vergessen!"