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
Update Termux and install required packages:
pkg update && pkg upgrade && pkg install proot-distro -yList available distros:
proot-distro listInstall Arch Linux:
proot-distro install archlinuxLogin to Arch Linux:
proot-distro login archlinuxUsage Commands
Start Arch Linux anytime:
proot-distro login archlinuxExit Arch session:
exitRemove Arch Linux (if needed):
proot-distro remove archlinuxArch 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:
clear
