Debian is a stable and lightweight Linux distribution that you can run inside Termux without root using proot-distro. It is known for its reliability and huge software repository. Debian is a great choice for beginners as well as advanced users who want a clean and fast Linux environment on Android.
Requirements
Before installing Debian in Termux, make sure your device meets these basic requirements for smooth performance.
- Processor required: 64-bit CPU (ARM64 recommended).
- Internet data required: Approx 1GB – 2GB.
- Free storage required: Minimum 4GB.
- 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 Debian:
proot-distro install debianLogin to Debian:
proot-distro login debianUsage Commands
Start Debian anytime:
proot-distro login debianExit Debian session:
exitRemove Debian and its data (if needed):
proot-distro remove debianDebian Basic Commands
Debian basic commands help you manage files, install tools, and navigate the system easily inside Termux.
Update system packages:
apt update && apt upgrade -yInstall a package:
apt install git -yCheck Debian version:
cat /etc/os-releaseShow current user:
whoamiList files and folders:
lsCreate a folder:
mkdir foldernameChange directory:
cd foldernameRemove file:
rm filenameRemove folder:
rm -rf foldernameCheck disk usage:
df -hClear terminal screen:
clear