Hello friends, In this blog we will see how we can install Parrot Os on Android without having root access.
ParrotOs is a debian based Linux distro made for Hacking and pentesting. It can be an alternative to Kali Linux.
Prerequisite :
Termux
Installation :
First of all make sure that repositories are upto date
pkg update
Now install proot-distro and wget
pkg install wget proot-distro
Next, we need to add ParrotOs rootfs in proot-distro, for that create a new file named parrot.sh
nano $PREFIX/etc/proot-distro/parrot.sh
paste the following code in it
DISTRO_NAME="ParrotOs"
TARBALL_URL['aarch64']="https://raw.githubusercontent.com/EXALAB/AnLinux-Resources/master/Rootfs/Parrot/arm64/parrot-rootfs-arm64.tar.xz"
TARBALL_SHA256['aarch64']="d563b790ef367d9857d928de8fb967116561d4050cc00d0ffd58390be32641c6"
TARBALL_URL['arm']="https://raw.githubusercontent.com/EXALAB/AnLinux-Resources/master/Rootfs/Parrot/armhf/parrot-rootfs-armhf.tar.xz"
TARBALL_SHA256['arm']="ad5352df583e315869b12e5eb4fa3205b0d7a4284216f6d6d3e4d9a87209b12c"
distro_setup() {
# Don't update gvfs-daemons and udisks2
run_proot_cmd apt-mark hold gvfs-daemons udisks2
}
and save the file.
Now install ParrotOs
proot-distro install parrot
Now you have installed ParrotOs, just login to it
proot-distro login parrot