How to Install and Use Termux App for Android

Learn how to install and use the Termux app for Android to run Linux commands, hacking tools, and scripts without root access.

If you are looking for a way to run Linux commands or hacking tools on your phone, the Termux app for Android is a great place to start. It turns your Android device into a portable terminal that can do many powerful things — like installing packages, writing scripts, or even ethical hacking.

How to Install and Use Termux App for Android – Kalimux blog post banner
Install and Use Termux for Android

In this post, I’ll show you how to install Termux, set it up, and get started as a beginner.

What is Termux?

Termux is a terminal emulator for Android that gives you access to a full Linux environment. You can use it for coding, penetration testing, or just learning how Linux works — all from your phone.

The best part? You don’t need to root your device.

Features of Termux App for Android

  • Run Linux commands and scripts
  • Install over 1000+ packages like python, git, nmap, and more
  • Use tools like Metasploit, Hydra, and SQLmap
  • Customize the terminal with themes and shells
  • Works without root access

How to Install Termux App for Android

  • Step 1: Download Termux

    The Termux app is no longer updated on the Play Store. So, to get the latest version:

    Note: Don’t install Termux from the Play Store. That version is outdated and no longer supported. Always download it from F-Droid or GitHub.

    1. Go to the official GitHub page: https://github.com/termux/termux-app
    2. Scroll down to find the F-Droid link or use this:
      https://f-droid.org/en/packages/com.termux/
    3. Download the APK file and install it on your device.

      You may need to allow "Install from unknown sources" in your phone settings.

  • Step 2: First Setup

    Open the Termux app and run these commands one by one:

    pkg update && pkg upgrade

    This will update the package list and upgrade the existing packages.

    Next, install some useful tools:

    pkg install git curl wget python

    If you like editing files, install a text editor too:

    pkg install nano
  • Step 3: Customize Termux (Optional)

    You can make Termux look cooler by installing zsh and oh-my-zsh.

    pkg install zsh
    chsh -s zsh

    Now install Oh My Zsh:

    sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"

    You can also change the font, color, and style to make it feel like your own custom terminal.

  • What’s Next?

    Now that you have the Termux app for Android ready, you can start using it for:

    • Ethical hacking tools
    • Learning Linux commands
    • Writing shell scripts
    • Running Python code

    In my next posts, I’ll show you how to use tools like:

    • Metasploit
    • Nmap
    • Zphisher
    • SQLmap
    • Hydra

    Stay tuned!

    Final Words

    The Termux app for Android is a must-have if you want to learn hacking, programming, or just explore the Linux terminal from your phone. It’s free, powerful, and easy to use.

    Thanks for reading! If you found this post helpful, bookmark my blog kalimux.blogspot.com and follow me for more Termux tutorials.

Post a Comment