Manjaro CLI is a lightweight Arch-based Linux system that can be installed on Android device using Termux terminal application without root access. It allows you to run a full Linux command-line environment, install packages using Pacman, and practice Linux commands directly from your mobile for learning, development, and testing purposes. Here’s what you can do with Manjaro CLI on Android:
- Run Arch-based Manjaro Linux on Android.
- Practice Linux terminal and system commands.
- Install packages using Pacman package manager.
- Use development and networking tools.
- Test Linux server and scripting environments.
Requirements
Before installing Manjaro CLI on Android device, make sure you have these requirements:
- Termux Application (latest version).
- Internet connection: 200MB – 300MB.
- Free storage: Minimum 3GB.
- RAM required: Minimum 3GB recommended.
- Processor required: 64-bit CPU (ARM64 recommended).
- Android version required: Android 7.0 or above.
- Installation time: Approx 10–20 minutes.
Installation Commands
Update Termux and install proot-distro:
pkg update && pkg upgrade && pkg install proot-distro -yList available distros:
proot-distro listInstall Manjaro Linux:
proot-distro install manjaroLogin to Manjaro:
proot-distro login manjaroUsage Commands
Start Manjaro Linux anytime:
proot-distro login manjaroExit Manjaro session:
exitRemove Manjaro Linux (if needed):
proot-distro remove manjaroBasic Manjaro CLI Commands
Basic Manjaro CLI commands are used to handle system management, package installation, file operations, and general Linux tasks inside the Manjaro environment.
Update system packages:
pacman -SyuInstall a package:
pacman -S gitRemove a package:
pacman -R gitSearch a package:
pacman -Ss packagenameCheck system info:
cat /etc/os-releaseList files and folders:
lsCreate a folder:
mkdir foldernameChange directory:
cd foldernameRemove file:
rm filenameRemove folder:
rm -rf foldernameClear terminal screen:
clearServer & Development Practice Commands
Server & Development practice commands help run and test web servers, development tools, and networking utilities inside Manjaro CLI on Android. These commands are useful for learning server management, system configuration, and basic Linux development environments directly from the terminal.
Install Apache web server:
pacman -S apacheStart Apache service:
systemctl start httpdInstall Nginx server:
pacman -S nginxCheck Nginx version:
nginx -vInstall SSH tools:
pacman -S opensshCheck IP addres:
curl ifconfig.meInstall Python and Git:
pacman -S python gitInstall Node.js:
pacman -S nodejsManjaro CLI on Android gives a practical way to explore Linux commands, package management, and system operations in an Arch-based environment. It is helpful for learning, experimenting, and building basic Linux and server knowledge directly from a mobile device.

