Fedora Linux is a modern and powerful Linux distribution that focuses on stability, performance, and updated software packages. You can run Fedora inside Termux using proot-distro without root access. It is a great choice for users who want a clean Linux environment with newer tools and better package management. Fedora Linux distro in Termux can be used to:
- Run a modern Linux environment on Android.
- Install latest development tools.
- Practice Linux commands safely.
- Use it for learning server-side Linux basics.
- Test packages with DNF package manager.
Requirements
Before installing Fedora Linux in Termux, make sure your device is ready.
- Termux installed (latest version).
- Internet data required: 200MB – 300MB.
- Free storage: Minimum 2GB.
- RAM required: Minimum 2GB recommended.
- Installation time: Approx 10–25 minutes.
Installation Commands
Update Termux and install proot-distro:
pkg update && pkg upgrade && pkg install proot-distro -yList available distros:
proot-distro listInstall Fedora Linux Distro:
proot-distro install fedoraLogin to Fedora:
proot-distro login fedoraUsage Commands
Start Fedora Linux anytime:
proot-distro login fedoraExit Fedora session:
exitRemove Fedora Linux distribution and its data:
proot-distro remove fedoraBasic Fedora Linux Commands
These commands help you manage Fedora Linux easily inside Termux.
Update system packages:
dnf update -yUpgrade system:
dnf upgrade -yInstall a package:
dnf install git -yRemove a package:
dnf remove git -yCheck 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:
clearCheck disk usage:
df -h