Termux is a powerful, open-source terminal emulator for Android that provides a complete Linux environment without requiring root access. It allows you to run a full command-line system on your mobile device for programming, automation, and advanced networking tasks. 1. Getting Started & Installation
ls: List files and directories. Example: ls to list files in the current directory.mkdir: Create a new directory. Example: mkdir MyFolder to create a new directory named "MyFolder".rm: Remove files or directories. Example: rm myfile.txt to delete a file named "myfile.txt".| Action | Input |
|--------|-------|
| Ctrl+C | Volume Down + C |
| Ctrl+Z | Volume Down + Z |
| Tab completion | Tab key |
| Interrupt process | Ctrl+C |
| Exit session | exit or Ctrl+D |
| Clear screen | clear or Ctrl+L |
| Open new session | Swipe from left → New session | termux complete tutorial
cd : Changes your directory to the specified folder. mkdir : Creates a new directory/folder. rm : Deletes a file. pwd: Shows the path of your current working directory. 3. Working with Text and Files Termux is a powerful, open-source terminal emulator for
All files in ~/ are private to Termux and deleted if app data is cleared. Use shared storage for permanent files. ls : List files and directories
Getting around the Linux environment requires knowing a few fundamental commands: ls: Lists all files and folders in your current directory.