Termux Commands List – Latest | PDF | 2025

5/5 - (1 vote)

Termux is a powerful app that turns your Android phone into a mini Linux machine but if you are a new user of it then all the commands might feel a bit confusing. Don’t worry! In this article, you will find all the basic and latest Termux commands list of 2025, which can help you learn Termux easily even if you are a total beginner.

What is Termux

What is Termux

Termux is a free Android app that turns your phone into a simple Linux machine. It gives you a text-based interface where you can type commands to install apps like Python or Git, write scripts, edit files, or even control other computers over the internet. You can use it to learn basic coding, automate phone tasks, or ethical hacking.

Why Use Termux in 2025?

Before we jump into the Termux commands list, let’s see why Termux is important for Android users in 2025:

  • Portable Linux: Turn your phone into a mini-computer.
  • Free & Open-Source: No ads or hidden costs.
  • No Root Needed: Works safely without “hacking” your phone.
  • Run Linux Tools: You can use almost all Linux tools and packages.
  • Learn Coding: Practice Python, JavaScript, or HTML.
  • Ethical Hacking: Test Wi-Fi security or scan networks (legally!).

How to install Termux latest version 2025

First, download Termux from F-Droid (the Play Store version is outdated).

  1. Open F-Droid, search “Termux,” and install it.
  2. Open Termux and allow storage permissions.
  3. Update Termux to the latest 2025 packages by running the following command:
pkg update && pkg upgrade  

Termux Commands List 2025

Termux commands list 2025

Here’s a Termux commands list to help you begin:

  1. Update Packages
    Keep Termux tools up-to-date:
   pkg update && pkg upgrade  


Tip: Run this weekly to avoid bugs.

  1. Install New Tools
    Want to add software like Python or Git? Use:
   pkg install [tool-name]  


Example: pkg install python installs Python.

  1. List Installed Packages
    Forgot what you installed? Type:
   pkg list-installed  
  1. Delete a Tool
    Remove apps you don’t need:
   pkg uninstall [tool-name]  
  1. Clear the Screen
    Is your Termux cluttered? Clean it fast:
   clear  

File Management: Termux Commands List

Work with files and folders easily:

  1. See What’s Inside a Folder
   ls  


Bonus: Use ls -a to show hidden files.

  1. Create a New Folder
   mkdir [folder-name]  


Example: mkdir Projects makes a “Projects” folder.

  1. Delete a File or Folder
   rm [file-name]  


For folders: rm -rf [folder-name]

  1. Copy Files
   cp [original-file] [new-location]  
  1. Move/Rename Files
   mv [old-name] [new-name]  

Networking & Hacking Termux Commands

Use Termux for Wi-Fi scanning or security tests:

  1. Check Your IP Address
   ifconfig  
  1. Ping a Website
    Test your internet connection:
   ping google.com  
  1. Scan Networks (Nmap)
    Install Nmap first: pkg install nmap
    Then scan a target:
   nmap [website-IP]  
  1. Clone Websites
    Download a site’s code for testing:
   git clone [website-link]  

Fun Termux Commands

Termux isn’t just for work—try these:

  1. Play Termux Games
    Install a text-based game:
   pkg install nudoku  


Then run nudoku to play Sudoku!

  1. Watch Star Wars
    Yes, really! Type:
   pkg install telnet  
   telnet towel.blinkenlights.nl  

Download Termux Commands List PDF

Download Termux Commands List PDF

Termux Commands List in a PDF file is a valuable resource for Termux beginners where all the latest and basic Termux commands are available to use at any time, even offline.

READ ALSO  How to Install SQLmap in Termux 2024

In this PDF file, we have provided all the basic and advanced Termux commands list of 2025, perfect for beginners and experienced users.

67 KB


Pro Tips for Termux 2025

  • Backup Files: Use tar -czvf backup.tar.gz [folder-name] to save data.
  • Avoid Root Access: Don’t use sudo unless you’re 100% sure—it can break your phone.
  • Use Help Menus: Stuck? Type [command] --help (e.g., nmap --help).

FAQs: Termux Commands List

  1. Are these commands safe?
    Yes, if you avoid messing with system files.
  2. Do I need to root my phone?
    No! Termux works without root.
  3. How to exit a command?
    Press Ctrl + C to stop any running task.
  4. How to update Termux?
    Just run pkg update regularly.

Conclusion

This Termux commands list 2025 covers everything from basics to fun tricks. Bookmark this guide, practice the commands, and soon you’ll feel like a Termux pro! Remember, start small and explore one tool at a time.


proud owner of termuxcommands.com, Assam native. Tech enthusiast, sharing Termux and Linux expertise. Simplifying tech for all—from beginners to pros. Join me on this knowledge-sharing adventure!

Leave a Comment