Arch Linux is a simple and lightweight Linux distribution that you can install in Termux without root. It is very fast and gives you full control to customize your system the way you want. You can use it to learn Linux, install tools, and run commands easily on your Android device.
Requirements
Before installing Arch Linux in Termux, make sure your device meets these basic requirements.
- Processor required: 64-bit CPU (ARM64 recommended).
- Internet data required: Approx 200MB – 400MB.
- Free storage required: Minimum 1GB.
- Android version required: Android 7.0 or above.
- RAM required: Minimum 2GB.
- Installation time: Approx 10–25 minutes.
Installation Commands
Below are the simple commands to install Arch Linux in Termux. You can copy and paste the commands one by one in Termux.
Update Termux and install required packages:
pkg update && pkg upgrade && pkg install proot-distro -yList available distros:
proot-distro install -helpInstall Arch Linux (ARM64 devices only):
proot-distro install danhunsaker/archlinuxarm:latestLogin to Arch Linux:
proot-distro login archlinuxarmUsage Commands
Start Arch Linux anytime:
proot-distro login archlinuxarmExit Arch session:
exitRemove Arch Linux (if needed):
proot-distro remove archlinuxarmArch Linux Basic Commands
Arch Linux uses pacman instead of apt, so commands are slightly different.
Update system:
pacman -SyuInstall a package:
pacman -S gitRemove a package:
pacman -R gitSearch for a package:
pacman -Ss package-nameShow system info:
uname -aShow current user:
whoamiList files and folders:
lsCreate a folder:
mkdir foldernameChange directory:
cd foldernameRemove file:
rm filenameRemove folder:
rm -rf foldernameClear terminal screen:
clearEnd Note
Arch Linux ARM provides a lightweight and flexible Linux environment that can run directly on Android devices using the Termux application. It is a good choice for learning Linux, managing packages with Pacman, and exploring the Arch Linux ecosystem without requiring root access.

