50+ Best Termux Tools and Packages You Should Install in 2026 (With Commands)

Termux is one of the most powerful terminal applications available for Android. It allows you to run a Linux environment directly on your smartphone. With Termux, you can install hundreds of useful tools that help with networking, downloading files, editing code, managing files, monitoring your system, and much more.

Many developers, ethical hackers, Linux learners, and tech enthusiasts use Termux because it brings the power of Linux directly to Android. Instead of using a computer, you can run powerful command-line tools right from your phone.

In this guide, you will discover 50+ useful Termux tools you should install in 2026. For each tool, you will also see the installation command and a simple usage command so beginners can understand easily.

Why These Termux Tools Are Important

When you install Termux for the first time, it only includes a basic environment. To unlock the full power of Termux, you need to install additional packages.

These packages help you:

  • Run Linux utilities
  • Download files faster
  • Scan networks
  • Manage files easily
  • Edit code and scripts
  • Monitor system performance
  • Automate tasks

Once these tools are installed, your Android phone becomes a mini Linux workstation.

Best Termux Tools and Their Usage Commands

Termux Tools and Commands

Below you will find some of the best and most useful Termux tools that you can install on your Android device. Each tool includes the installation command and a simple usage command so that beginners can easily understand how it works.

These tools help you perform many tasks such as downloading files, scanning networks, managing files, editing text, monitoring system performance, and automating tasks directly from the terminal.

1. Git

Installation command

pkg install git

Usage command

git clone https://github.com/username/repository.git

Git is one of the most important tools in Termux. It allows you to download open-source projects from GitHub and manage source code.

2. Wget

Installation command

pkg install wget

Usage command

wget https://example.com/file.zip

Wget is a simple tool used to download files directly from the internet.

3. Curl

Installation command

pkg install curl

Usage command

curl https://example.com

Curl is often used to send requests to websites or APIs.

4. Nmap

Installation command

pkg install nmap

Usage command

nmap example.com

Nmap is a powerful network scanning tool used for discovering hosts and open ports.

5. Neofetch

Installation command

pkg install neofetch

Usage command

neofetch

Neofetch displays system information such as device model, operating system, CPU, and memory.

6. Htop

Installation command

pkg install htop

Usage command

htop

Htop is used to monitor running processes and system resources in real time.

7. Tmux

Installation command

pkg install tmux

Usage command

tmux

Tmux allows you to run multiple terminal sessions at the same time.

8. OpenSSH

Installation command

pkg install openssh

Usage command

ssh username@server-ip

OpenSSH allows secure remote login to servers.

See also  How to Install and Use Ngrok in Termux (Complete Guide)

9. FFmpeg

Installation command

pkg install ffmpeg

Usage command

ffmpeg -i video.mp4 audio.mp3

FFmpeg is widely used for converting and editing audio and video files.

10. Zip

Installation command

pkg install zip

Usage command

zip archive.zip file.txt

Zip compresses files into zip archives.

11. Unzip

Installation command

pkg install unzip

Usage command

unzip archive.zip

Unzip extracts compressed zip files.

12. Nano

Installation command

pkg install nano

Usage command

nano file.txt

Nano is one of the easiest text editors available in Termux.

13. Vim

Installation command

pkg install vim

Usage command

vim file.txt

Vim is a powerful text editor used by many developers.

14. Tree

Installation command

pkg install tree

Usage command

tree

Tree displays the folder structure in a visual format.

15. Ranger

Installation command

pkg install ranger

Usage command

ranger

Ranger is a terminal file manager that makes navigation easier.

16. Midnight Commander

Installation command

pkg install mc

Usage command

mc

Midnight Commander is a visual file manager for the terminal.

17. Figlet

Installation command

pkg install figlet

Usage command

figlet Hello

Figlet creates large ASCII text banners.

18. Cowsay

Installation command

pkg install cowsay

Usage command

cowsay Hello

Cowsay displays fun text messages in a talking cow format.

19. Cmatrix

Installation command

pkg install cmatrix

Usage command

cmatrix

Cmatrix creates a Matrix-style animation inside the terminal.

20. Hollywood

Installation command

pkg install hollywood

Usage command

hollywood

Hollywood shows a fake hacker-style terminal interface.

21. Aria2

Installation command

pkg install aria2

Usage command

aria2c download-link

Aria2 is a powerful command-line download manager.

22. Rsync

Installation command

pkg install rsync

Usage command

rsync file.txt backup/

Rsync helps you synchronize files between folders or systems.

23. DNS Utilities

Installation command

pkg install dnsutils

Usage command

nslookup google.com

These tools allow you to check domain and DNS information.

24. Traceroute

Installation command

pkg install traceroute

Usage command

traceroute google.com

Traceroute shows the path packets take across networks.

25. Tcpdump

Installation command

pkg install tcpdump

Usage command

tcpdump

Tcpdump captures and analyzes network packets.

26. Termux API

Installation command

pkg install termux-api

Usage command

termux-battery-status

This package allows Termux to interact with Android features.

27. Glow

Installation command

pkg install glow

Usage command

glow README.md

Glow allows you to read Markdown files inside the terminal.

28. Toilet

Installation command

pkg install toilet

Usage command

toilet Hello

Toilet creates styled ASCII text banners in the terminal.

29. Screen

Installation command

pkg install screen

Usage command

screen

Screen allows you to run multiple terminal sessions.

See also  How to Install Ubuntu in Android Without Root

30. Exa

Installation command

pkg install exa

Usage command

exa

Exa is a modern replacement for the ls command.

31. Bat

Installation command

pkg install bat

Usage command

bat file.txt

Bat displays file contents with syntax highlighting.

32. FD

Installation command

pkg install fd

Usage command

fd filename

FD is a faster alternative to the find command.

33. Ripgrep

Installation command

pkg install ripgrep

Usage command

rg word

Ripgrep searches text inside files very quickly.

34. FZF

Installation command

pkg install fzf

Usage command

fzf

FZF is a fuzzy finder used to search files interactively.

35. Grep

Installation command

pkg install grep

Usage command

grep word file.txt

Grep searches text patterns inside files.

36. Sed

Installation command

pkg install sed

Usage command

sed 's/old/new/' file.txt

Sed is used to edit and transform text.

37. Awk

Installation command

pkg install awk

Usage command

awk '{print $1}' file.txt

Awk is used for text processing and data extraction.

38. BC

Installation command

pkg install bc

Usage command

bc

BC is a command-line calculator.

39. Man

Installation command

pkg install man

Usage command

man ls

Man shows documentation for Linux commands.

40. Make

Installation command

pkg install make

Usage command

make

Make is used to build and compile software projects.

41. CMake

Installation command

pkg install cmake

Usage command

cmake .

CMake helps configure and build software.

42. Patch

Installation command

pkg install patch

Usage command

patch file.patch

Patch applies changes to source code files.

43. Tar

Installation command

pkg install tar

Usage command

tar -xvf file.tar

Tar creates and extracts archive files.

44. Inetutils

Installation command

pkg install inetutils

Usage command

ping google.com

Inetutils provides basic networking tools.

45. Util-linux

Installation command

pkg install util-linux

Usage command

mount

Util-linux provides many important Linux system utilities.

46. Coreutils

Installation command

pkg install coreutils

Usage command

ls

Coreutils includes basic Linux commands like ls, cp, and mv.

47. Fish Shell

Installation command

pkg install fish

Usage command

fish

Fish is a user-friendly command-line shell.

48. Zsh

Installation command

pkg install zsh

Usage command

zsh

Zsh is an advanced and customizable shell.

49. Bash

Installation command

pkg install bash

Usage command

bash script.sh

Bash is the default shell used in most Linux systems.

50. JQ

Installation command

pkg install jq

Usage command

jq '.' file.json

JQ is used to process and format JSON data.

These are some of the most useful Termux tools and packages that beginners and advanced users commonly use in Termux. You can use these tools and explore their features to get the most out of Termux on your Android phone.

See also  How to Install Kali Linux on Android | Without Root | Latest Method | 100% Working

Tips to Get the Best Performance From Termux

Before installing tools in Termux, always update your packages using the command below.

pkg update && pkg upgrade

Updating ensures that all tools run smoothly and avoids dependency problems.

You should also install commonly used utilities like git, curl, and wget because many other tools depend on them.

Final Thoughts

Termux turns your Android phone into a powerful Linux environment. By installing the tools mentioned in this guide, you can perform many advanced tasks such as downloading files, managing servers, scanning networks, editing scripts, and monitoring system performance.

These 50+ Termux tools are some of the most useful packages available in 2026. Beginners can start with basic tools like Git, Nano, and Wget, while advanced users can explore tools like Nmap, Tcpdump, and Tmux.

If you want to learn more Termux tutorials, Linux commands, and powerful command-line tools, you can explore more guides on TermuxCommands.com, where we regularly publish beginner-friendly tutorials.

SHARE THIS POST:

Leave a Reply

Your email address will not be published. Required fields are marked *