Termux is a powerful terminal emulator for Android that brings the Linux command line to your pocket. Unlike simple terminal apps, Termux is a full Linux environment that doesn’t require root access to be useful.
Use this guide to set up your environment, learn essential commands, and unlock the full potential of your phone. termux complete tutorial
pkg install php
php -S localhost:8080 # serves current directory
Access from your phone browser: http://localhost:8080 The Ultimate Termux Tutorial: From Zero to Hero
pkg install clang make
# Write hello.c, then:
clang hello.c -o hello
./hello
cp ~/storage/downloads/myfile.txt .
pkg install git pythongit clone <repo>python -m venv venv && source venv/bin/activatepip install -r requirements.txtpkg install python
python -m http.server 8000 --directory ~/public
Access via Android browser at http://127.0.0.1:8000