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 bashIf 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/rollingHere's the original links for all of the images mirrored from other locations (which we store here):
- alpine-mini-rootfs-amd64.tar.gz
- alpine-mini-rootfs-i386.tar.gz
- alpine-mini-rootfs-armhf.tar.gz
- alpine-mini-rootfs-arm64.tar.gz
- centos-rootfs-amd64.tar.xz
- centos-rootfs-i386.tar.xz
- centos-rootfs-armhf.tar.xz
- centos-rootfs-arm64.tar.xz