Termux Apk Download Latest Version 2025 | Termux Command List | Termux Tutorial
Turn your Android device into a powerful Linux environment. Learn essential commands, automate tasks, and unlock advanced featuresโall without root access!
Termux is a powerful terminal emulator and Linux environment designed specifically for Android devices. It provides users with a robust command-line interface and a wide array of tools and utilities, making it an ideal platform for developers, hackers, and tech enthusiasts alike.
Follow these simple steps to install Termux and start using the Linux terminal on your phone.
๐น Option 1: Install from Play Store ( Not Recommended โ Old Version)
1๏ธโฃ Open the Google Play Store 2๏ธโฃ Search for Termux and install it 3๏ธโฃ Open Termux and run:
pkg update && pkg upgrade
โ ๏ธ Note: The Play Store version is outdated. Use the latest version from F-Droid or GitHub instead.
๐น Option 2: Install from F-Droid ( Recommended)
1๏ธโฃ Go to F-Droid Website. 2๏ธโฃ Download and install F-Droid App. 3๏ธโฃ Open F-Droid and search for Termux. 4๏ธโฃ Install Termux and open it. 5๏ธโฃ Run the following command to update packages:
pkg update && pkg upgrade
Basic Termux Commands
Now that users have installed Termux, let’s add a Basic Commands section where they can quickly learn essential terminal commands.
๐ File & Directory Navigation
ls
๐น List files and folders in the current directory.
๐น Install a new package (Example: pkg install python)
pkg uninstall
๐น Remove an installed package.
pkg list-installed
๐น List all installed packages.
๐ฅ๏ธ System Commands
termux-setup-storage
๐น Grant Termux access to internal storage.
clear
๐น Clear the terminal screen.
exit
๐น Close Termux.
Termux Advanced Commands
๐ฅ๏ธ ๐ Networking & Remote Access
ssh user@hostname
๐น Connect to a remote server using SSH.
wget
๐น Download a file from the internet.
curl -O
๐น Download a file using cURL.
ping -c 4 google.com
๐น Check internet connectivity.
netstat -tulnp
๐น Show active network connections.
๐พ File Management & Permissions
cp
๐น Copy a file.
mv
๐น Move or rename a file.
chmod +x
๐น Make a file executable.
chown user:group
๐น Change file ownership.
๐ ๏ธ Development & Scripting
pkg install python
๐น Install Python.
pkg install nodejs
๐น Install Node.js
python script.py
๐น Run a Python script.
bash script.sh
๐น Execute a Bash script.
nano
๐น Open a file in the Nano text editor.
๐ Running a Local Server
pkg install php
php -S localhost:8080
๐น Start a PHP development server.
pkg install apache2
apachectl start
๐น Start an Apache web server.
pkg install nginx
nginx
๐น Start an Nginx server.
๐ Storage & Data Management
df -h
๐น Check disk space usage.
du -sh *
๐น Show the size of all files & folders.
tar -cvf archive.tar
๐น Create a compressed archive.
tar -xvf archive.tar
๐น Extract a compressed archive.
FAQs
What is Termux?
Termux is a powerful Linux terminal emulator for Android that allows you to run Linux commands, install packages, and even set up servers without root access.
Is Termux free to use?
Yes, Termux is completely free and open-source. You can download it from F-Droid for the latest version.
Can I run GUI applications on Termux?
Yes, but you need to install a desktop environment and use a VNC server. Example: