Skip to content

Latest commit

 

History

History
64 lines (60 loc) · 5.38 KB

File metadata and controls

64 lines (60 loc) · 5.38 KB

RootFS Image Files

All rootfs images, both mirrored and bootstrapped, are located here: https://files.rb9.xyz/prootify/rootfs/.

Some image files are bootstrapped manually, namely Debian-based distros (Ubuntu, Debian, Kali, Parrot, and Backbox), as opposed to being downloaded from other sources. If you need to build these manually, it's quite simple:

# Install dependencies first!
sudo apt install wget qemu-user-static debian-archive-keyring debootstrap
# Build all images
wget -qO - https://raw.githubusercontent.com/Radialbog9/PRootify/main/bootstrap-images.sh | sudo bash
# Build all images but Parrot
BUILD_INCLUDE_PARROT=false wget -qO - https://raw.githubusercontent.com/Radialbog9/PRootify/main/bootstrap-images.sh | sudo bash
# Build all Parrot Images
BUILD_INCLUDE="parrot" wget -qO - https://raw.githubusercontent.com/Radialbog9/PRootify/main/bootstrap-images.sh | sudo bash
# Build amd64 Parrot image
BUILD_INCLUDE="parrot:amd64" wget -qO - https://raw.githubusercontent.com/Radialbog9/PRootify/main/bootstrap-images.sh | sudo bash
# Build all images but Parrot images
BUILD_INCLUDE_PARROT=false wget -qO - https://raw.githubusercontent.com/Radialbog9/PRootify/main/bootstrap-images.sh | sudo bash

If you get this error while building Parrot:

E: No such script: /usr/share/debootstrap/scripts/parrot-rolling

Then download the Parrot rolling script like this (this is a hacky solution and is by no means recommended):

sudo wget -O /usr/share/debootstrap/scripts/parrot-rolling https://raw.githubusercontent.com/ParrotSec/debootstrap/master/scripts/parrot-rolling
sudo ln -sr /usr/share/debootstrap/scripts/parrot-rolling /usr/share/debootstrap/scripts/rolling

Source downloads

Here's the original links for all of the images mirrored from other locations (which we store here):

Alpine

CentOS

Fedora (no i386 version available)

Void

openSUSE (no i386 version available)

Nethunter