public
This commit is contained in:
parent
9f6b5cb2e3
commit
db2cd30e6e
|
|
@ -5,5 +5,24 @@ BASEDOF="Void"
|
|||
DESCRIPTION="Includes a minimum set of applications so you can build your system on your own."
|
||||
HOMEPAGE="https://sourceforge.net/projects/agarimos"
|
||||
CREDENTIALS="anon:voidlinux,root:voidlinux"
|
||||
|
||||
|
||||
RELEASES="latest"
|
||||
EDITIONS="xfce4 plasma lxqt-kwin gnome cinnamon"
|
||||
|
||||
function releases_() {
|
||||
echo latest
|
||||
}
|
||||
|
||||
function editions_() {
|
||||
echo plasma xfce4 cinnamon lxqt-kwin gnome
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local REL=$(echo "${EDITION}" | tr '[:lower:]' '[:upper:]')
|
||||
local ISOS=$(web_pipe "https://sourceforge.net/projects/agarimos/rss?path=/" | grep 'title><!\[CDATA' | cut -d'[' -f3 | cut -d']' -f1 | grep '.iso')
|
||||
local URL="https://sourceforge.net/projects/agarimos/files/${REL}"
|
||||
local ISO=$(echo "${ISOS}" | grep "${REL}" | cut -d'/' -f3)
|
||||
echo "${URL}/${ISO}"
|
||||
}
|
||||
|
||||
|
|
|
|||
23
public/alma
23
public/alma
|
|
@ -5,5 +5,28 @@ BASEDOF="Fedora RedHat"
|
|||
DESCRIPTION="Community distribution, focused on long-term stability, providing a robust production-grade platform. Binary compatible with RHEL®"
|
||||
HOMEPAGE="https://almalinux.org/"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="9 8"
|
||||
EDITIONS="minimal dvd boot"
|
||||
|
||||
function releases_() {
|
||||
echo 9 8
|
||||
}
|
||||
|
||||
function editions_() {
|
||||
echo boot minimal dvd
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local ISO="AlmaLinux-${RELEASE}-latest-x86_64-${EDITION}.iso"
|
||||
local URL="https://repo.almalinux.org/almalinux/${RELEASE}/isos/x86_64"
|
||||
HASH="$(web_pipe "${URL}/CHECKSUM" | grep "(${ISO}" | cut -d' ' -f4)"
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
function specific_tweaks() {
|
||||
echo "disk_size=\"32G\"" >> "${CONF_FILE}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,30 @@ BASEDOF="-"
|
|||
DESCRIPTION="Security-oriented, lightweight Linux distribution based on musl libc and busybox"
|
||||
HOMEPAGE="https://alpinelinux.org/"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="v3.21 v3.20 v3.19 v3.18 v3.17 v3.16 v3.15 v3.14 v3.13 v3.12"
|
||||
|
||||
|
||||
function releases_() {
|
||||
local REL=""
|
||||
local RELS=""
|
||||
RELS=$(web_pipe "https://dl-cdn.alpinelinux.org/alpine/" | grep '"v' | cut -d'"' -f2 | tr -d / | sort -Vr | head -n 10)
|
||||
for REL in ${RELS}; do
|
||||
if web_check "https://dl-cdn.alpinelinux.org/alpine/${REL}/releases/x86_64/"; then
|
||||
echo -n "${REL} "
|
||||
fi
|
||||
done
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local ISO=""
|
||||
local URL="https://dl-cdn.alpinelinux.org/alpine/${RELEASE}/releases/x86_64"
|
||||
local VERSION=""
|
||||
VERSION=$(web_pipe "${URL}/latest-releases.yaml" | awk '/"Xen"/{found=0} {if(found) print} /"Virtual"/{found=1}' | grep 'version:' | awk '{print $2}')
|
||||
ISO="alpine-virt-${VERSION}-x86_64.iso"
|
||||
HASH=$(web_pipe "${URL}/latest-releases.yaml" | awk '/"Xen"/{found=0} {if(found) print} /"Virtual"/{found=1}' | grep 'sha256:' | awk '{print $2}')
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,36 @@ BASEDOF="-"
|
|||
DESCRIPTION="Port Android Open Source Project to x86 platform"
|
||||
HOMEPAGE="https://www.android-x86.org"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="9.0 8.1 7.1"
|
||||
EDITIONS="x86_64 x86"
|
||||
|
||||
function releases_() {
|
||||
echo 9.0 8.1 7.1
|
||||
}
|
||||
|
||||
function editions_() {
|
||||
echo x86_64 x86
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local ISO=""
|
||||
local JSON_ALL=""
|
||||
local JSON_REL=""
|
||||
local URL="https://mirrors.gigenet.com/OSDN/android-x86"
|
||||
JSON_ALL=$(web_pipe "https://www.fosshub.com/Android-x86-old.html" | grep "var settings =" | cut -d'=' -f2-)
|
||||
JSON_REL=$(echo "${JSON_ALL}" | jq --arg ver "${OS}-${EDITION}-${RELEASE}" 'first(.pool.f[] | select((.n | startswith($ver)) and (.n | endswith(".iso"))))')
|
||||
ISO=$(echo "${JSON_REL}" | jq -r .n)
|
||||
HASH=$(echo "${JSON_REL}" | jq -r .hash.sha256)
|
||||
# Traverse the directories to find the .iso location
|
||||
for DIR in $(web_pipe "${URL}" | grep -o -E '[0-9]{5}' | sort -ur); do
|
||||
if web_pipe "${URL}/${DIR}" | grep "${ISO}" &>/dev/null; then
|
||||
URL="${URL}/${DIR}"
|
||||
break
|
||||
fi
|
||||
done
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
|
|
|
|||
36
public/antix
36
public/antix
|
|
@ -5,5 +5,41 @@ BASEDOF="Debian"
|
|||
DESCRIPTION="Fast, lightweight and easy to install systemd-free linux live CD distribution based on Debian Stable for Intel-AMD x86 compatible systems"
|
||||
HOMEPAGE="https://antixlinux.com"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="23.2 23.1 23 22 21"
|
||||
EDITIONS="net-sysv net-runit full-sysv full-runit core-sysv core-runit base-sysv base-runit"
|
||||
|
||||
function releases_() {
|
||||
echo 23.2 23.1 23 22 21
|
||||
}
|
||||
|
||||
function editions_() {
|
||||
echo net-sysv core-sysv base-sysv full-sysv net-runit core-runit base-runit full-runit
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local ISO="antiX-${RELEASE}"
|
||||
local README="README"
|
||||
local URL="https://sourceforge.net/projects/antix-linux/files/Final/antiX-${RELEASE}"
|
||||
|
||||
# antiX uses a different URL and ISO naming for runit editions
|
||||
if [[ "${EDITION}" == *"runit"* ]];then
|
||||
ISO+="-runit"
|
||||
README="README2"
|
||||
case ${RELEASE} in
|
||||
21) URL+="/runit-bullseye";;
|
||||
*) URL+="/runit-antiX-${RELEASE}";;
|
||||
esac
|
||||
fi
|
||||
case ${EDITION} in
|
||||
base-*) ISO+="_x64-base.iso";;
|
||||
core-*) ISO+="_x64-core.iso";;
|
||||
full-*) ISO+="_x64-full.iso";;
|
||||
net-*) ISO+="-net_x64-net.iso";;
|
||||
esac
|
||||
HASH=$(web_pipe "${URL}/${README}.txt" | grep "${ISO}" | cut -d' ' -f1 | head -n 1)
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,20 @@ BASEDOF="Arch"
|
|||
DESCRIPTION="Yet another minimal Linux distribution, based on Arch Linux"
|
||||
HOMEPAGE="https://archcraft.io"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="latest"
|
||||
|
||||
|
||||
function releases_() {
|
||||
echo latest
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local URL=""
|
||||
URL="https://sourceforge.net/projects/archcraft/files/${RELEASE}/download"
|
||||
URL="$(web_redirect "${URL}" | cut -d? -f1)"
|
||||
echo "${URL} ${HASH}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,21 @@ BASEDOF="-"
|
|||
DESCRIPTION="Lightweight and flexible Linux® distribution that tries to Keep It Simple"
|
||||
HOMEPAGE="https://archlinux.org"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="latest"
|
||||
|
||||
|
||||
function releases_() {
|
||||
echo latest
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local ISO=""
|
||||
local URL="https://mirror.rackspace.com/archlinux"
|
||||
ISO=$(web_pipe "https://archlinux.org/releng/releases/json/" | jq -r '.releases[0].iso_url')
|
||||
HASH=$(web_pipe "https://archlinux.org/releng/releases/json/" | jq -r '.releases[0].sha256_sum')
|
||||
echo "${URL}${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
|
|
|
|||
24
public/arco
24
public/arco
|
|
@ -5,5 +5,27 @@ BASEDOF="Arch"
|
|||
DESCRIPTION="Is all about becoming an expert in linux"
|
||||
HOMEPAGE="https://arcolinux.com"
|
||||
CREDENTIALS="-"
|
||||
RELEASES="v25.02.04 v25.01.05 v25.01.01 v24.12.02 v24.11.01"
|
||||
|
||||
|
||||
RELEASES="v25.03.05 v25.02.04 v25.01.05 v25.01.01 v24.12.02"
|
||||
EDITIONS="pro plasma net"
|
||||
|
||||
function releases_() {
|
||||
#shellcheck disable=SC2046,SC2005
|
||||
echo $(web_pipe "https://mirror.accum.se/mirror/arcolinux.info/iso/" | grep -o -E -e "v[[:digit:]]{2}.[[:digit:]]{2}.[[:digit:]]{2}" | sort -ru | head -n 5)
|
||||
}
|
||||
|
||||
function editions_() {
|
||||
echo net plasma pro
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local ISO=""
|
||||
local URL=""
|
||||
URL="https://mirror.accum.se/mirror/arcolinux.info/iso/${RELEASE}"
|
||||
ISO="arco${EDITION}-${RELEASE}-x86_64.iso"
|
||||
HASH=$(web_pipe "${URL}/${ISO}.sha256" | cut -d' ' -f1)
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,27 @@ BASEDOF="Arch"
|
|||
DESCRIPTION="The Art of Linux. Simple. Fast. Systemd-free"
|
||||
HOMEPAGE="https://artixlinux.org"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="20240823"
|
||||
EDITIONS="xfce-s6 xfce-runit xfce-openrc xfce-dinit plasma-s6 plasma-runit plasma-openrc plasma-dinit mate-s6 mate-runit mate-openrc mate-dinit lxqt-s6 lxqt-runit lxqt-openrc lxqt-dinit lxde-s6 lxde-runit lxde-openrc lxde-dinit community-qt community-gtk cinnamon-s6 cinnamon-runit cinnamon-openrc cinnamon-dinit base-s6 base-runit base-openrc base-dinit"
|
||||
|
||||
function releases_() {
|
||||
#shellcheck disable=SC2046,SC2005
|
||||
echo $(web_pipe "https://mirror1.artixlinux.org/iso/" | grep "artix-" | cut -d'"' -f2 | grep -v sig | cut -d'-' -f 4 | sort -ru | tail -n 1)
|
||||
}
|
||||
|
||||
function editions_() {
|
||||
#shellcheck disable=SC2046,SC2005
|
||||
echo $(web_pipe "https://mirror1.artixlinux.org/iso/" | grep "artix-" | cut -d'"' -f2 | grep -v sig | cut -d'-' -f2-3 | sort -u)
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local ISO=""
|
||||
local URL="https://iso.artixlinux.org/iso"
|
||||
ISO="artix-${EDITION}-${RELEASE}-x86_64.iso"
|
||||
HASH=$(web_pipe "${URL}/sha256sums" | grep "${ISO}")
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,25 @@ BASEDOF="Arch"
|
|||
DESCRIPTION="Offer a different experience than the most used pentesting distributions by providing only tools that fit with the user needs and improving the access to hacking resources and learning materials"
|
||||
HOMEPAGE="https://athenaos.org"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="v23.11 v23.06.23"
|
||||
|
||||
|
||||
function releases_() {
|
||||
#shellcheck disable=SC2046,SC2005
|
||||
echo $(web_pipe "https://api.github.com/repos/Athena-OS/athena/releases" | grep 'download_url' | grep rolling | cut -d'/' -f8 | sort -u)
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local URL="https://github.com/Athena-OS/athena/releases/download/${RELEASE}"
|
||||
local ISO="athena-rolling-x86_64.iso"
|
||||
HASH=$(web_pipe "${URL}/${ISO}.sha256" | cut -d' ' -f1)
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
function specific_tweaks() {
|
||||
echo "disk_size=\"32G\"" >> "${CONF_FILE}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,32 @@ BASEDOF="-"
|
|||
DESCRIPTION="Retro-gaming distribution with the aim of turning any computer/nano computer into a gaming console during a game or permanently"
|
||||
HOMEPAGE="https://batocera.org"
|
||||
CREDENTIALS="-"
|
||||
GUEST="xfce-s6 xfce-runit xfce-openrc xfce-dinit plasma-s6 plasma-runit plasma-openrc plasma-dinit mate-s6 mate-runit mate-openrc mate-dinit lxqt-s6 lxqt-runit lxqt-openrc lxqt-dinit lxde-s6 lxde-runit lxde-openrc lxde-dinit community-qt community-gtk cinnamon-s6 cinnamon-runit cinnamon-openrc cinnamon-dinit base-s6 base-runit base-openrc base-dinit"
|
||||
IMAGE_TYPE=""
|
||||
RELEASES="41 40 39 38 37"
|
||||
|
||||
|
||||
function releases_() {
|
||||
#shellcheck disable=SC2046,SC2005
|
||||
echo $(web_pipe "https://mirrors.o2switch.fr/batocera/x86_64/stable/" | grep ^\<a | cut -d'"' -f2 | cut -d '/' -f1 | grep -v '\.' | sort -ru | tail -n +2 | head -n 5)
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local ISO=""
|
||||
local URL="https://mirrors.o2switch.fr/batocera/x86_64/stable/${RELEASE}"
|
||||
ISO="$(web_pipe "${URL}/" | grep -e 'batocera.*img.gz'| cut -d'"' -f2)"
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
function distro_specific() {
|
||||
if [[ ${ISO} = *".gz"* ]]; then
|
||||
gzip -d "${VM_PATH}/${ISO}"
|
||||
ISO="${ISO/.gz/}"
|
||||
fi
|
||||
}
|
||||
|
||||
function specific_tweaks() {
|
||||
echo "disk_size=\"8G\"" >> "${CONF_FILE}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,32 @@ BASEDOF="Fedora SteamOS"
|
|||
DESCRIPTION="Container native gaming and a ready-to-game SteamOS like"
|
||||
HOMEPAGE="https://bazzite.gg"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="latest"
|
||||
EDITIONS="kde gnome"
|
||||
|
||||
function releases_() {
|
||||
echo latest
|
||||
}
|
||||
|
||||
function editions_() {
|
||||
echo gnome kde
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local ISO=""
|
||||
local URL="https://download.bazzite.gg"
|
||||
case ${EDITION} in
|
||||
gnome) ISO="bazzite-gnome-stable-amd64.iso";;
|
||||
kde) ISO="bazzite-stable-amd64.iso";;
|
||||
esac
|
||||
HASH=$(web_pipe "${URL}/${ISO}-CHECKSUM" | cut -d' ' -f1)
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
function specific_tweaks() {
|
||||
echo "disk_size=\"64G\"" >> "${CONF_FILE}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,26 @@ BASEDOF="Manjaro"
|
|||
DESCRIPTION="Is the right choice if you want to have an easy and enriching experience with Linux. It has been perfected over more than 19 years, following our motto: 'In search of the perfect system'"
|
||||
HOMEPAGE="https://www.biglinux.com.br"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES=""
|
||||
EDITIONS=""
|
||||
|
||||
function releases_() {
|
||||
#shellcheck disable=SC2046,SC2005
|
||||
echo $(web_pipe "https://iso.biglinux.com.br" | grep -Eo 'biglinux_[0-9]{4}(-[0-9]{2}){2}_k[0-9]{2,3}.iso' | cut -d'_' -f2 | sort -ru | head -n 1)
|
||||
}
|
||||
|
||||
function editions_() {
|
||||
#shellcheck disable=SC2046,SC2005
|
||||
echo $(web_pipe "https://iso.biglinux.com.br" | grep -Eo "biglinux_$(releases_biglinux)_k[0-9]{2,3}.iso" | cut -d'_' -f3 | cut -d'.' -f1 | sort -Vru)
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local ISO="biglinux_${RELEASE}_${EDITION}.iso"
|
||||
local URL="https://iso.biglinux.com.br"
|
||||
HASH=$(web_pipe "${URL}/${ISO}.md5" | grep -Eo '[[:alnum:]]{32}')
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,20 @@ BASEDOF="Arch"
|
|||
DESCRIPTION="A seamless blend of all Linux distributions. Allows you to have an immutable, atomic and declarative Arch Linux system, with application support from several Linux distributions & Android"
|
||||
HOMEPAGE="https://blendos.co"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES=""
|
||||
|
||||
|
||||
function releases_() {
|
||||
# there is now just a single latest iso
|
||||
echo latest
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=$(web_pipe "https://git.blendos.co/api/v4/projects/32/jobs/artifacts/main/raw/checksum?job=build-job | cut -d' ' -f1")
|
||||
local ISO="blendOS.iso"
|
||||
local URL="https://git.blendos.co/api/v4/projects/32/jobs/artifacts/main/raw/${ISO}?job=build-job"
|
||||
echo "${URL} ${HASH}"
|
||||
}
|
||||
|
||||
|
|
|
|||
23
public/bodhi
23
public/bodhi
|
|
@ -5,5 +5,28 @@ BASEDOF="Debian Ubuntu"
|
|||
DESCRIPTION="Lightweight distribution featuring the fast & fully customizable Moksha Desktop"
|
||||
HOMEPAGE="https://www.bodhilinux.com"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="7.0.0"
|
||||
EDITIONS="standard s76 hwe apppack"
|
||||
|
||||
function releases_() {
|
||||
echo 7.0.0
|
||||
}
|
||||
|
||||
function editions_() {
|
||||
echo standard hwe s76 apppack
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local ISO=""
|
||||
local URL="https://sourceforge.net/projects/bodhilinux/files/${RELEASE}"
|
||||
case ${EDITION} in
|
||||
standard) ISO="bodhi-${RELEASE}-64.iso";;
|
||||
*) ISO="bodhi-${RELEASE}-64-${EDITION}.iso";;
|
||||
esac
|
||||
HASH=$(web_pipe "${URL}/${ISO}.sha256" | cut -d' ' -f1)
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,20 @@ BASEDOF="Debian"
|
|||
DESCRIPTION="Light-weight and easily customizable Openbox desktop. The project is a community continuation of CrunchBang Linux"
|
||||
HOMEPAGE="https://www.bunsenlabs.org"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="boron"
|
||||
|
||||
|
||||
function releases_() {
|
||||
echo boron
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local ISO="boron-1-240123-amd64.hybrid.iso"
|
||||
local URL="https://ddl.bunsenlabs.org/ddl"
|
||||
HASH=$(web_pipe "${URL}/release.sha256.txt" | head -n 1 | cut -d' ' -f1)
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,26 @@ BASEDOF="Arch"
|
|||
DESCRIPTION="Designed to deliver lightning-fast speeds and stability, ensuring a smooth and enjoyable computing experience every time you use it"
|
||||
HOMEPAGE="https://cachyos.org"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="latest"
|
||||
EDITIONS="handheld desktop"
|
||||
|
||||
function releases_() {
|
||||
# new cdn setup 10/2024
|
||||
echo latest
|
||||
}
|
||||
|
||||
function editions_() {
|
||||
# desktop version now installs different desktop environments
|
||||
echo desktop handheld
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local URL=""
|
||||
URL="$(web_pipe "https://cachyos.org/download/" | tr '&' '\n' | grep "ISO/${EDITION}" | grep -v 'iso.sha' | grep -v 'iso.sig' | cut -d';' -f2)"
|
||||
HASH=$(web_pipe "${URL}.sha256" | cut -d' ' -f1)
|
||||
echo "${URL} ${HASH}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,29 @@ BASEDOF="Fedora RedHat"
|
|||
DESCRIPTION="Continuously delivered distro that tracks just ahead of Red Hat Enterprise Linux (RHEL) development, positioned as a midstream between Fedora Linux and RHEL"
|
||||
HOMEPAGE="https://www.centos.org/centos-stream"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="9 10"
|
||||
EDITIONS="dvd1 boot"
|
||||
|
||||
function releases_() {
|
||||
#shellcheck disable=SC2046,SC2005
|
||||
echo $(web_pipe "https://linuxsoft.cern.ch/centos-stream/" | grep "\-stream" | cut -d'"' -f 6 | cut -d'-' -f 1)
|
||||
}
|
||||
|
||||
function editions_() {
|
||||
echo boot dvd1
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local ISO="CentOS-Stream-${RELEASE}-latest-x86_64-${EDITION}.iso"
|
||||
local URL="https://linuxsoft.cern.ch/centos-stream/${RELEASE}-stream/BaseOS/x86_64/iso"
|
||||
HASH=$(web_pipe "${URL}/${ISO}.SHA256SUM" | grep "SHA256 (${ISO}" | cut -d' ' -f4)
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
function specific_tweaks() {
|
||||
echo "disk_size=\"32G\"" >> "${CONF_FILE}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,31 @@ BASEDOF="Void"
|
|||
DESCRIPTION="Void-based distribution focused on give an user-friendly experience."
|
||||
HOMEPAGE="https://sourceforge.net/projects/cereus-linux"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="latest"
|
||||
EDITIONS="xfce musl-xfce musl-lxqt musl-base lxqt base"
|
||||
|
||||
function releases_() {
|
||||
echo latest
|
||||
}
|
||||
|
||||
function editions_() {
|
||||
echo base musl-base lxqt musl-lxqt xfce musl-xfce
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local EDITION="${1:-}"
|
||||
local HASH=""
|
||||
local DATE=""
|
||||
local ISO=""
|
||||
local URL="https://sourceforge.net/projects/cereus-linux/files"
|
||||
REST=$(web_pipe "https://sourceforge.net/projects/cereus-linux/rss?path=/isos/beta" | grep 'title><!\[CDATA' | cut -d'[' -f3 | cut -d']' -f1 | grep '\.iso' | grep "${EDITION}" | head -1)
|
||||
ISO=$(echo ${REST} | cut -d'/' -f5)
|
||||
case ${EDITION} in
|
||||
base) HASH=$(wget -q -O- "${URL}/SHA256SUM" | grep "${ISO}" | cut -d' ' -f1);;
|
||||
*) HASH=$(wget -q -O- "${URL}/SHA256" | grep "${ISO}" | cut -d' ' -f1);;
|
||||
esac
|
||||
echo "${URL}${REST} ${HASH}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,26 @@ BASEDOF="-"
|
|||
DESCRIPTION="Modern, general-purpose non-GNU Linux distribution"
|
||||
HOMEPAGE="https://chimera-linux.org"
|
||||
CREDENTIALS="anon:chimera root:chimera"
|
||||
|
||||
|
||||
RELEASES="latest"
|
||||
EDITIONS="gnome base"
|
||||
|
||||
function releases_() {
|
||||
echo latest
|
||||
}
|
||||
|
||||
function editions_() {
|
||||
echo base gnome
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local DATE=""
|
||||
local HASH=""
|
||||
local URL="https://repo.chimera-linux.org/live/${RELEASE}"
|
||||
DATE=$(web_pipe "${URL}/sha256sums.txt" | head -n1 | cut -d'-' -f5)
|
||||
local ISO="chimera-linux-x86_64-LIVE-${DATE}-${EDITION}.iso"
|
||||
HASH=$(web_pipe "${URL}/sha256sums.txt" | grep 'x86_64-LIVE' | grep "${EDITION}" | cut -d' ' -f1)
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,20 @@ BASEDOF="Debian"
|
|||
DESCRIPTION="The classic minimal crunchbang feel, now with debian 12 bookworm"
|
||||
HOMEPAGE="https://www.crunchbangplusplus.org"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="9.0 12.0 11.2 10.1"
|
||||
|
||||
|
||||
function releases_() {
|
||||
#shellcheck disable=SC2046,SC2005
|
||||
echo $(web_pipe "https://api.github.com/repos/CBPP/cbpp/releases" | grep 'download_url' | cut -d'-' -f2 | grep '^[0-9]' | sort -gru)
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local ISO=""
|
||||
ISO=$(web_pipe "https://api.github.com/repos/CBPP/cbpp/releases" | grep 'download_url' | grep amd64 | grep "${RELEASE}" | cut -d'"' -f4)
|
||||
echo "${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,47 @@ BASEDOF="-"
|
|||
DESCRIPTION="Complete Free Operating System with perfect level of ease of use and stability"
|
||||
HOMEPAGE="https://www.debian.org"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="12.9.0 11.11.0 10.13.0"
|
||||
EDITIONS="xfce standard netinst mate lxqt lxde kde gnome cinnamon"
|
||||
|
||||
function releases_() {
|
||||
local ARCHIVE=""
|
||||
local MAJ=""
|
||||
local NEW=""
|
||||
local OLD=""
|
||||
NEW=$(web_pipe "https://cdimage.debian.org/debian-cd/" | grep '\.[0-9]/' | cut -d'>' -f 9 | cut -d'/' -f 1)
|
||||
echo -n "${NEW}"
|
||||
MAJ=$(echo "${NEW}" | cut -d'.' -f 1)
|
||||
ARCHIVE="$(web_pipe "https://cdimage.debian.org/cdimage/archive/" | grep folder | grep -v NEVER | cut -d'"' -f 6)"
|
||||
for i in {1..2}; do
|
||||
CUR=$((MAJ - i))
|
||||
OLD=$(grep ^"${CUR}" <<< "${ARCHIVE}" | tail -n 1 | tr -d '/')
|
||||
echo -n " ${OLD}"
|
||||
done
|
||||
echo
|
||||
}
|
||||
|
||||
function editions_() {
|
||||
echo standard cinnamon gnome kde lxde lxqt mate xfce netinst
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local DEBCURRENT=""
|
||||
local HASH=""
|
||||
local ISO="debian-live-${RELEASE}-amd64-${EDITION}.iso"
|
||||
local URL="https://cdimage.debian.org/cdimage/archive/${RELEASE}-live/amd64/iso-hybrid"
|
||||
DEBCURRENT=$(web_pipe "https://cdimage.debian.org/debian-cd/" | grep '\.[0-9]/' | cut -d'>' -f 9 | cut -d'/' -f 1)
|
||||
case "${RELEASE}" in
|
||||
"${DEBCURRENT}") URL="https://cdimage.debian.org/debian-cd/${RELEASE}-live/amd64/iso-hybrid";;
|
||||
esac
|
||||
if [ "${EDITION}" == "netinst" ]; then
|
||||
URL="${URL/-live/}"
|
||||
URL="${URL/hybrid/cd}"
|
||||
ISO="${ISO/-live/}"
|
||||
fi
|
||||
HASH=$(web_pipe "${URL}/SHA512SUMS" | grep "${ISO}" | cut -d' ' -f1 | head -n 1)
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,32 @@ BASEDOF="Debian"
|
|||
DESCRIPTION="Beautiful UI design, intimate human-computer interaction, and friendly community environment make you feel at home"
|
||||
HOMEPAGE="https://www.deepin.org"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="23 20.9"
|
||||
|
||||
|
||||
function releases_() {
|
||||
#shellcheck disable=SC2046,SC2005
|
||||
echo $(web_pipe "https://mirrors.kernel.org/deepin-cd/" | grep "href=" | cut -d'"' -f2 | grep -v "\.\." | grep -v nightly | grep -v preview | sed 's|/||g' | tail -n 10 | sort -r)
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local REV=${RELEASE}
|
||||
# deepin-desktop-community-20.3-amd64.iso
|
||||
local URL="https://cdimage.deepin.com/releases/"${RELEASE}
|
||||
# Correct URL for 23-RC onwards which has architecture directories
|
||||
if [ "${RELEASE}" != "20.9" ]; then
|
||||
URL+="/amd64"
|
||||
fi
|
||||
local ISO="deepin-desktop-community-${REV}-amd64.iso"
|
||||
HASH=$(web_pipe "${URL}/SHA256SUMS" | grep "${ISO}" | cut -d' ' -f1)
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
function specific_tweaks() {
|
||||
echo "disk_size=\"64G\"" >> "${CONF_FILE}"
|
||||
echo "ram=\"4G\"" >> "${CONF_FILE}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,27 @@ BASEDOF="Debian"
|
|||
DESCRIPTION="Fork of Debian without systemd that allows users to reclaim control over their system by avoiding unnecessary entanglements and ensuring Init Freedom"
|
||||
HOMEPAGE="https://www.devuan.org"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="daedalus chimaera beowulf"
|
||||
|
||||
|
||||
function releases_() {
|
||||
echo daedalus chimaera beowulf
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local ISO=""
|
||||
local URL="https://files.devuan.org/devuan_${RELEASE}/desktop-live"
|
||||
local VER=""
|
||||
case ${RELEASE} in
|
||||
beowulf) VER="3.1.1";;
|
||||
chimaera) VER="4.0.3";;
|
||||
daedalus) VER="5.0.0";;
|
||||
esac
|
||||
ISO="devuan_${RELEASE}_${VER}_amd64_desktop-live.iso"
|
||||
HASH=$(web_pipe "${URL}/SHASUMS.txt" | grep "${ISO}" | cut -d' ' -f1)
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,56 @@ BASEDOF="Debian"
|
|||
DESCRIPTION="Highly optimised minimal Debian OS"
|
||||
HOMEPAGE="https://dietpi.com"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="uefi bios"
|
||||
EDITIONS="bullseye-installer bullseye bookworm-installer bookworm"
|
||||
|
||||
function releases_() {
|
||||
echo bios uefi
|
||||
}
|
||||
|
||||
function editions_() {
|
||||
echo bookworm bookworm-installer bullseye bullseye-installer
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local ISO=""
|
||||
local URL="https://dietpi.com/downloads/images"
|
||||
if [ "${RELEASE}" == 'bios' ]; then
|
||||
case ${EDITION} in
|
||||
bookworm )
|
||||
local ISO="DietPi_NativePC-BIOS-x86_64-Bookworm.7z";;
|
||||
bullseye )
|
||||
local ISO="DietPi_NativePC-BIOS-x86_64-Bullseye.7z";;
|
||||
'bookworm-installer' )
|
||||
local ISO="DietPi_NativePC-BIOS-x86_64-Bookworm_Installer.7z";;
|
||||
'bullseye-installer' )
|
||||
local ISO="DietPi_NativePC-BIOS-x86_64-Bullseye_Installer.7z";;
|
||||
esac
|
||||
elif [ "${RELEASE}" == 'uefi' ]; then
|
||||
case ${EDITION} in
|
||||
'bookworm-installer' )
|
||||
local ISO="DietPi_NativePC-UEFI-x86_64-Bookworm_Installer.7z";;
|
||||
'bullseye-installer' )
|
||||
local ISO="DietPi_NativePC-UEFI-x86_64-Bullseye_Installer.7z";;
|
||||
esac
|
||||
fi
|
||||
HASH=$(wget -q -O- "${URL}/SHASUMS.txt" | grep "${ISO}" | cut -d' ' -f1)
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
function distro_specific() {
|
||||
if [[ "${ISO}" =~ ".7z" ]]; then
|
||||
7zip x -o${VM_PATH} ${VM_PATH}/${ISO}
|
||||
ISO=$(ls ${VM_PATH} | grep -i '.iso')
|
||||
fi
|
||||
}
|
||||
|
||||
function specific_tweaks() {
|
||||
if [[ "${RELEASE}" == 'bios' ]]; then
|
||||
echo "boot=\"legacy\"" >> "${CONF_FILE}"
|
||||
fi
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,36 @@ BASEDOF="FreeBSD"
|
|||
DESCRIPTION="Provides an opportunity for the BSD base to grow in an entirely different direction from the one taken in the FreeBSD, NetBSD, and OpenBSD series"
|
||||
HOMEPAGE="https://www.dragonflybsd.org"
|
||||
CREDENTIALS="-"
|
||||
GUEST="bullseye-installer bullseye bookworm-installer bookworm"
|
||||
|
||||
RELEASES="6.4.0 6.2.2 6.2.1 6.0.1 6.0.0 5.8.3 5.8.2 5.8.1 5.8.0 5.6.3 5.6.2 5.6.1 5.6.0 5.4.3 5.4.2 5.4.1 5.4.0 5.2.2 5.2.1 5.2.0 5.0.2 5.0.1 5.0.0"
|
||||
|
||||
|
||||
function releases_() {
|
||||
# If you remove "".bz2" from the end of the searched URL, you will get only the current release - currently 6.4.0
|
||||
# We could add a variable so this behaviour is optional/switchable (maybe from option or env)
|
||||
#shellcheck disable=SC2046,SC2005
|
||||
echo $(web_pipe "https://mirror-master.dragonflybsd.org/iso-images/" | grep -E -o '"dfly-x86_64-.*_REL.iso.bz2"' | grep -o -E '[[:digit:]]+\.[[:digit:]]+\.[[:digit:]]+')
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local ISO="dfly-x86_64-${RELEASE}_REL.iso.bz2"
|
||||
local URL="http://mirror-master.dragonflybsd.org/iso-images"
|
||||
HASH=$(web_pipe "${URL}/md5.txt" | grep "(${ISO})" | cut -d' ' -f4)
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
function distro_specific() {
|
||||
# Could be other OS iso files compressed with bzip2 or gzip
|
||||
# but for now we'll keep this to know cases
|
||||
if [[ ${ISO} = *".bz2"* ]]; then
|
||||
bzip2 -d "${VM_PATH}/${ISO}"
|
||||
ISO="${ISO/.bz2/}"
|
||||
fi
|
||||
}
|
||||
|
||||
function specific_tweaks() {
|
||||
echo "boot=\"legacy\"" >> "${CONF_FILE}"
|
||||
}
|
||||
|
||||
|
|
|
|||
23
public/dsl
23
public/dsl
|
|
@ -5,5 +5,28 @@ BASEDOF="Antix"
|
|||
DESCRIPTION="Goal of DSL is to pack as much usable desktop distribution into an image small enough to fit on a single CD"
|
||||
HOMEPAGE="https://www.damnsmalllinux.org/"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="2024.rc7"
|
||||
EDITIONS="lz4 cdrom"
|
||||
|
||||
function releases_() {
|
||||
echo 2024.rc7
|
||||
}
|
||||
|
||||
function editions_() {
|
||||
echo lz4 cdrom
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local ISO=""
|
||||
local HASH=""
|
||||
local URL="https://www.damnsmalllinux.org/download"
|
||||
case "$EDITION" in
|
||||
lz4) ISO="dsl-${RELEASE}.lz4.iso";;
|
||||
cdrom) ISO="dsl-${RELEASE}.iso";;
|
||||
esac
|
||||
HASH=$(web_pipe "${URL}/${ISO}.md5.txt" | cut -f1)
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,43 @@ BASEDOF="-"
|
|||
DESCRIPTION="Experimental distribution designed from scratch to support containers"
|
||||
HOMEPAGE="https://easyos.org"
|
||||
CREDENTIALS="-"
|
||||
|
||||
IMAGE_TYPE=""
|
||||
RELEASES="5.8.5"
|
||||
|
||||
|
||||
function releases_() {
|
||||
local ALL_RELEASES=""
|
||||
local YEAR=""
|
||||
# get the latest 2 years of releases so that when we hit next year we still have the latest 2 years
|
||||
TWO_YEARS=$(web_pipe https://distro.ibiblio.org/easyos/amd64/releases/kirkstone/ | grep -o -E '[[:digit:]]{4}/' | sort -nr | tr -d / | head -n 2 )
|
||||
for YEAR in ${TWO_YEARS} ; do
|
||||
ALL_RELEASES="${ALL_RELEASES} $(web_pipe https://distro.ibiblio.org/easyos/amd64/releases/kirkstone/${YEAR}/ | grep -o -E '[[:digit:]]+(\.[[:digit:]])+/' | tr -d / | sort -nr)"
|
||||
done
|
||||
echo ${ALL_RELEASES}
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local URL=""
|
||||
local ISO=""
|
||||
local YEAR=""
|
||||
ISO="easy-${RELEASE}-amd64.img"
|
||||
TWO_YEARS=$(web_pipe https://distro.ibiblio.org/easyos/amd64/releases/kirkstone/ | grep -o -E '[[:digit:]]{4}/' | sort -nr | tr -d / | head -n 2 )
|
||||
for YEAR in ${TWO_YEARS} ; do
|
||||
if web_check "https://distro.ibiblio.org/easyos/amd64/releases/kirkstone/${YEAR}/${RELEASE}/" ; then
|
||||
URL="https://distro.ibiblio.org/easyos/amd64/releases/kirkstone/${YEAR}/${RELEASE}"
|
||||
HASH=$(web_pipe "${URL}/md5.sum.txt" | cut -d' ' -f1)
|
||||
break
|
||||
fi
|
||||
done
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
function distro_specific() {
|
||||
if [[ ${ISO} = *".img"* ]]; then
|
||||
${QEMU_IMG} convert -f raw -O qcow2 "${VM_PATH}/${ISO}" "${VM_PATH}/disk.qcow2"
|
||||
ISO="${ISO/.img/}"
|
||||
fi
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,24 @@ BASEDOF="Debian Ubuntu"
|
|||
DESCRIPTION="Thoughtful, capable, and ethical replacement for Windows and macOS"
|
||||
HOMEPAGE="https://elementary.io"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="8.0 7.1 7.0"
|
||||
|
||||
|
||||
function releases_() {
|
||||
echo 8.0 7.1 7.0
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
case ${RELEASE} in
|
||||
7.0) STAMP="20230129rc";;
|
||||
7.1) STAMP="20230926rc";;
|
||||
8.0) STAMP="20241122rc";;
|
||||
esac
|
||||
local ISO="elementaryos-${RELEASE}-stable.${STAMP}.iso"
|
||||
local URL="https://ams3.dl.elementary.io/download"
|
||||
echo "${URL}/$(date +%s | base64)/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,26 @@ BASEDOF="Arch"
|
|||
DESCRIPTION="Provides an Arch experience without the hassle of installing it manually for both x86_64 and ARM systems"
|
||||
HOMEPAGE="https://endeavouros.com"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="mercury-2025.02.08 gemini-2024.04.20 galileo-neo-2024.01.25 galileo-11-2023 endeavour_neo-2024.09.22"
|
||||
|
||||
|
||||
function releases_() {
|
||||
local ENDEAVOUR_RELEASES=""
|
||||
ENDEAVOUR_RELEASES="$(web_pipe "https://mirror.alpix.eu/endeavouros/iso/" | grep -o '<a href="[^"]*.iso">' | sed 's/^<a href="//;s/.iso">.*//' | grep -v 'x86_64' | LC_ALL="en_US.UTF-8" sort -Mr | cut -c 13- | head -n 5 | tr '\n' ' ')"
|
||||
echo "${ENDEAVOUR_RELEASES,,}"
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local ENDEAVOUR_RELEASES=""
|
||||
local HASH=""
|
||||
local ISO=""
|
||||
local URL="https://mirror.alpix.eu/endeavouros/iso"
|
||||
# Find EndeavourOS releases from mirror, pick one matching release
|
||||
ENDEAVOUR_RELEASES="$(web_pipe "${URL}/" | grep -o '<a href="[^"]*.iso">' | sed 's/^<a href="//;s/.iso">.*//' | grep -v 'x86_64')"
|
||||
ISO="$(echo "${ENDEAVOUR_RELEASES}" | grep -i "${RELEASE}").iso"
|
||||
HASH=$(web_pipe "${URL}/${ISO}.sha512sum" | cut -d' ' -f1)
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,41 @@ BASEDOF="Debian"
|
|||
DESCRIPTION="Completely Free, User-Friendly Operating System Packed with Educational Tools, Games, and More"
|
||||
HOMEPAGE="https://www.endlessos.org/os"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="6.0.4"
|
||||
EDITIONS="pt_BR fr es en base"
|
||||
|
||||
function releases_() {
|
||||
echo 6.0.4
|
||||
}
|
||||
|
||||
function editions_() {
|
||||
echo base en fr pt_BR es
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH="" # No hash - there is a signature in .asc signed by
|
||||
#https://d1anzknqnc1kmb.cloudfront.net/eos-image-keyring.gpg
|
||||
# (4096R: CB50 0F7B C923 3FAD 32B4 E720 9E0C 1250 587A 279C)
|
||||
local FILE_TS=""
|
||||
# https://support.endlessos.org/en/installation/direct-download gives the info but computes the URLS in js
|
||||
# so parsing out the useful info is not happening tonight
|
||||
# Endless edition names are "base" for the small minimal one or the Language for the large full release
|
||||
# The isos are stamped as they are finished so ....
|
||||
case ${EDITION} in
|
||||
base) FILE_TS="241023-183516";;
|
||||
en) FILE_TS="241023-200926";;
|
||||
es) FILE_TS="241023-184649";;
|
||||
fr) FILE_TS="241023-191212";;
|
||||
pt_BR) FILE_TS="241023-191427";;
|
||||
esac
|
||||
URL="https://images-dl.endlessm.com/release/${RELEASE}/eos-amd64-amd64/${EDITION}"
|
||||
ISO="eos-eos${RELEASE:0:3}-amd64-amd64.${FILE_TS}.${EDITION}.iso"
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
function specific_tweaks() {
|
||||
echo "disk_size=\"32G\"" >> "${CONF_FILE}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,47 @@ BASEDOF="-"
|
|||
DESCRIPTION="Innovative platform for hardware, clouds, and containers, built with love by you"
|
||||
HOMEPAGE="https://www.fedoraproject.org"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="41 40 39"
|
||||
EDITIONS="i3 Xfce Workstation Sway Silverblue Server Sericea Onyx MiracleWM Mate LXQt LXDE Kinoite KDE_Mobile KDE Cinnamon Budgie"
|
||||
|
||||
function releases_() {
|
||||
#shellcheck disable=SC2046,SC2005
|
||||
echo $(web_pipe "https://getfedora.org/releases.json" | jq -r 'map(.version) | unique | .[]' | sed 's/ /_/g' | sort -r)
|
||||
}
|
||||
|
||||
function editions_() {
|
||||
#shellcheck disable=SC2046,SC2005
|
||||
if [[ -z ${RELEASE} ]]; then
|
||||
echo $(web_pipe "https://getfedora.org/releases.json" | jq -r "map(select(.arch==\"x86_64\" and .variant!=\"Labs\" and .variant!=\"IoT\" and .variant!=\"Container\" and .variant!=\"Cloud\" and .variant!=\"Everything\" and .subvariant!=\"Security\" and .subvariant!=\"Server_KVM\" and .subvariant!=\"SoaS\")) | map(.subvariant) | unique | .[]")
|
||||
else
|
||||
echo $(web_pipe "https://getfedora.org/releases.json" | jq -r "map(select(.arch==\"x86_64\" and .version==\"${RELEASE/_/ }\" and .variant!=\"Labs\" and .variant!=\"IoT\" and .variant!=\"Container\" and .variant!=\"Cloud\" and .variant!=\"Everything\" and .subvariant!=\"Security\" and .subvariant!=\"Server_KVM\" and .subvariant!=\"SoaS\")) | map(.subvariant) | unique | .[]")
|
||||
fi
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local ISO=""
|
||||
local JSON=""
|
||||
local URL=""
|
||||
local VARIANT=""
|
||||
case ${EDITION} in
|
||||
Server|Kinoite|Onyx|Silverblue|Sericea|Workstation) VARIANT="${EDITION}";;
|
||||
*) VARIANT="Spins";;
|
||||
esac
|
||||
# The naming of 41 Beta with a space is problematic so we replaced it with an underscore
|
||||
# but we need to convert it back to a space for the URL search in the JSON
|
||||
#shellcheck disable=SC2086
|
||||
# if RELEASE contains an underscore, replace it with a space
|
||||
if [[ "${RELEASE}" == *"_"* ]]; then
|
||||
RELEASE="${RELEASE/_/ }"
|
||||
fi
|
||||
|
||||
# shellcheck disable=SC2086
|
||||
JSON=$(web_pipe "https://getfedora.org/releases.json" | jq '.[] | select(.variant=="'${VARIANT}'" and .subvariant=="'"${EDITION}"'" and .arch=="x86_64" and .version=="'"${RELEASE}"'" and (.link | endswith(".iso")))')
|
||||
URL=$(echo "${JSON}" | jq -r '.link' | head -n1)
|
||||
HASH=$(echo "${JSON}" | jq -r '.sha256' | head -n1)
|
||||
echo "${URL} ${HASH}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,25 @@ BASEDOF="-"
|
|||
DESCRIPTION="Operating system used to power modern servers, desktops, and embedded platforms"
|
||||
HOMEPAGE="https://www.freebsd.org"
|
||||
CREDENTIALS="-"
|
||||
freebsd
|
||||
|
||||
RELEASES="14.2 14.1 13.4 13.3"
|
||||
EDITIONS="dvd1 disc1"
|
||||
|
||||
function releases_() {
|
||||
#shellcheck disable=SC2046,SC2005
|
||||
echo $(web_pipe "https://download.freebsd.org/ftp/releases/amd64/amd64/" | grep -Eo "href=\"[0-9\.]+-RELEASE" | grep -oE '[0-9\.]+' | sort -r)
|
||||
}
|
||||
|
||||
function editions_() {
|
||||
echo disc1 dvd1
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local ISO="FreeBSD-${RELEASE}-RELEASE-amd64-${EDITION}.iso"
|
||||
local URL="https://download.freebsd.org/ftp/releases/amd64/amd64/ISO-IMAGES/${RELEASE}"
|
||||
HASH=$(web_pipe "${URL}/CHECKSUM.SHA256-FreeBSD-${RELEASE}-RELEASE-amd64" | grep "${ISO}" | grep -v ".xz" | cut -d' ' -f4)
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,40 @@ BASEDOF="-"
|
|||
DESCRIPTION="DOS-compatible operating system that you can use to play classic DOS games, run legacy business software, or develop embedded systems"
|
||||
HOMEPAGE="https://freedos.org"
|
||||
CREDENTIALS="-"
|
||||
GUEST="dvd1 disc1"
|
||||
|
||||
RELEASES="1.3 1.2"
|
||||
|
||||
|
||||
function releases_() {
|
||||
echo 1.3 1.2
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local ISO=""
|
||||
local URL="https://www.ibiblio.org/pub/micro/pc-stuff/freedos/files/distributions/${RELEASE}/official"
|
||||
case ${RELEASE} in
|
||||
1.2) ISO="FD12CD.iso"
|
||||
HASH=$(web_pipe "${URL}/FD12.sha" | grep "${ISO}" | cut -d' ' -f1);;
|
||||
1.3) ISO="FD13-LiveCD.zip"
|
||||
HASH=$(web_pipe "${URL}/verify.txt" | grep -A 8 "sha256sum" | grep "${ISO}" | cut -d' ' -f1);;
|
||||
esac
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
function distro_specific() {
|
||||
if [[ ${ISO} = *".zip"* ]]; then
|
||||
unzip -qo "${VM_PATH}/${ISO}" -d "${VM_PATH}"
|
||||
rm -f "${VM_PATH}/${ISO}"
|
||||
ISO="$(ls -1 "${VM_PATH}/"*.iso)"
|
||||
ISO="$(basename "${ISO}")"
|
||||
fi
|
||||
}
|
||||
|
||||
function specific_tweaks() {
|
||||
echo "boot=\"legacy\"" >> "${CONF_FILE}"
|
||||
echo "disk_size=\"4G\"" >> "${CONF_FILE}"
|
||||
echo "ram=\"256M\"" >> "${CONF_FILE}"
|
||||
}
|
||||
|
||||
|
|
|
|||
14
public/fvoid
14
public/fvoid
|
|
@ -5,5 +5,19 @@ BASEDOF="Void"
|
|||
DESCRIPTION="F-Void (Fork of Void) is a mild modification of Void Linux"
|
||||
HOMEPAGE="https://sourceforge.net/projects/f-void"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="latest"
|
||||
|
||||
|
||||
function releases_() {
|
||||
echo latest
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local URL="https://sourceforge.net/projects/f-void/files"
|
||||
REST=$(web_pipe "https://sourceforge.net/projects/f-void/rss?path=/" | grep 'title><!\[CDATA' | cut -d'[' -f3 | cut -d']' -f1 | grep '\.iso' | head -1)
|
||||
echo "${URL}${REST}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,32 @@ BASEDOF="Void"
|
|||
DESCRIPTION="Brings the necessary software to satisfy the daily needs of an end user in a simple and aesthetically pleasing desktop environment."
|
||||
HOMEPAGE="https://sourceforge.net/projects/gabeeoslinux/"
|
||||
CREDENTIALS="anon:voidlinux,root:voidlinux"
|
||||
|
||||
|
||||
RELEASES="release beta"
|
||||
EDITIONS="Qtile Openbox"
|
||||
|
||||
function releases_() {
|
||||
echo release beta
|
||||
}
|
||||
|
||||
function editions_() {
|
||||
echo Openbox Qtile
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
case "${RELEASE}" in
|
||||
release)
|
||||
REL="Release-2024"
|
||||
;;
|
||||
beta)
|
||||
REL="beta"
|
||||
;;
|
||||
esac
|
||||
ISO="gabeeOSLinux-Openbox-Cherry-x86_64-6.1.25_1-20230502.iso"
|
||||
URL="https://sourceforge.net/projects/gabeeoslinux/files/Distro/${EDITION}/${REL}"
|
||||
ISO="$(web_pipe "https://sourceforge.net/projects/gabeeoslinux/rss?path=/" | grep 'title><!\[CDATA' | cut -d'[' -f3 | cut -d']' -f1 | grep '\.iso' | cut -d'/' -f5 | grep "${EDITION}" | head -1)"
|
||||
echo "${URL}/${ISO}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,29 @@ BASEDOF="Arch"
|
|||
DESCRIPTION="Feature rich and easy to use Linux distribution"
|
||||
HOMEPAGE="https://garudalinux.org"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="latest"
|
||||
EDITIONS="xfce wayfire sway qtile mate lxqt-kwin kde-lite kde-git i3 gnome dr460nized-gaming dr460nized cinnamon"
|
||||
|
||||
function releases_() {
|
||||
echo latest
|
||||
}
|
||||
|
||||
function editions_() {
|
||||
echo cinnamon dr460nized dr460nized-gaming gnome i3 kde-git kde-lite lxqt-kwin mate qtile sway wayfire xfce
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local ISO=""
|
||||
local URL="https://iso.builds.garudalinux.org/iso/latest/garuda"
|
||||
ISO=${EDITION}/latest.iso
|
||||
HASH="$(web_pipe "${URL}/${ISO}.sha256" | cut -d' ' -f1)"
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
function specific_tweaks() {
|
||||
echo "disk_size=\"32G\"" >> "${CONF_FILE}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,32 @@ BASEDOF="-"
|
|||
DESCRIPTION="Highly flexible, source-based Linux distribution"
|
||||
HOMEPAGE="https://www.gentoo.org"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="latest"
|
||||
EDITIONS="minimal livegui"
|
||||
|
||||
function releases_() {
|
||||
echo latest
|
||||
}
|
||||
|
||||
function editions_() {
|
||||
echo minimal livegui
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local ISO=""
|
||||
local URL="https://mirror.bytemark.co.uk/gentoo/releases/amd64/autobuilds"
|
||||
case ${EDITION} in
|
||||
minimal) ISO=$(web_pipe "${URL}/${RELEASE}-iso.txt" | grep install | cut -d' ' -f1);;
|
||||
livegui) ISO=$(web_pipe "${URL}/${RELEASE}-iso.txt" | grep livegui | cut -d' ' -f1);;
|
||||
esac
|
||||
HASH=$(web_pipe "${URL}/${ISO}.DIGESTS" | grep -A 1 SHA512 | grep iso | grep -v CONTENTS | cut -d' ' -f1)
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
function specific_tweaks() {
|
||||
echo "disk_size=\"32G\"" >> "${CONF_FILE}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,29 @@ BASEDOF="FreeBSD"
|
|||
DESCRIPTION="Simple, elegant desktop BSD Operating System"
|
||||
HOMEPAGE="https://www.ghostbsd.org"
|
||||
CREDENTIALS="-"
|
||||
RELEASES="24.10.1 24.07.3 24.07.2"
|
||||
freebsd
|
||||
|
||||
RELEASES="25.01-R14.2p1 24.10.1 24.07.3"
|
||||
EDITIONS="xfce mate"
|
||||
|
||||
function releases_() {
|
||||
#shellcheck disable=SC2046,SC2005
|
||||
echo $(web_pipe "https://download.ghostbsd.org/releases/amd64/" | grep "href" | cut -d'"' -f2 | cut -d'/' -f1 | sort -r | tail -n +3 | head -n 3)
|
||||
}
|
||||
|
||||
function editions_() {
|
||||
echo mate xfce
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local ISO=""
|
||||
local URL="https://download.ghostbsd.org/releases/amd64/${RELEASE}"
|
||||
local HASH=""
|
||||
case ${EDITION} in
|
||||
mate) ISO="GhostBSD-${RELEASE}.iso";;
|
||||
xfce) ISO="GhostBSD-${RELEASE}-XFCE.iso";;
|
||||
esac
|
||||
HASH=$(web_pipe "${URL}/${ISO}.sha256" | grep "${ISO}" | cut -d' ' -f4)
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,30 @@ BASEDOF="-"
|
|||
DESCRIPTION="Alpha nightly bleeding edge distro of GNOME"
|
||||
HOMEPAGE="https://os.gnome.org"
|
||||
CREDENTIALS="-"
|
||||
RELEASES="nightly 48.alpha 47.rc 47.beta 47.alpha 47.0 46.rc 46.beta 46.alpha 46.0 45.rc 45.beta 44.rc 44.beta 44.0 43.beta 43.alpha 43.0 42.rc 42.beta 42.0 41.rc 41.beta 41.0 40.rc 40.beta 40.0 3.38.1 3.38.0"
|
||||
|
||||
|
||||
RELEASES="nightly 48.beta 48.alpha 47.rc 47.beta 47.alpha 47.0 46.rc 46.beta 46.alpha 46.0 45.rc 45.beta 44.rc 44.beta 44.0 43.beta 43.alpha 43.0 42.rc 42.beta 42.0 41.rc 41.beta 41.0 40.rc 40.beta 40.0 3.38.1 3.38.0"
|
||||
|
||||
|
||||
function releases_() {
|
||||
#shellcheck disable=SC2046,SC2005
|
||||
echo "nightly" $(web_pipe "https://download.gnome.org/gnomeos/" | grep "title=" | awk -F'"' '{print $4}' | tr -d '/' | sort -nr)
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local ISO="gnome_os_installer_${RELEASE}.iso"
|
||||
local URL="https://download.gnome.org/gnomeos/${RELEASE}"
|
||||
case ${RELEASE} in
|
||||
nightly)
|
||||
ISO="gnome_os_installer.iso"
|
||||
URL="https://os.gnome.org/download/latest";;
|
||||
46.0) ISO="gnome_os_installer_46.iso";;
|
||||
3*) ISO="gnome_os_installer.iso";;
|
||||
48.alpha) ISO=$(web_pipe "https://download.gnome.org/gnomeos/48.alpha/" | grep '.iso' | cut -d'"' -f4);;
|
||||
esac
|
||||
# Process the URL redirections; required for GNOME
|
||||
ISO=$(web_redirect "${URL}/${ISO}")
|
||||
echo "${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
|
|
|
|||
14
public/guix
14
public/guix
|
|
@ -5,5 +5,19 @@ BASEDOF="-"
|
|||
DESCRIPTION="Distribution of the GNU operating system developed by the GNU Project—which respects the freedom of computer users"
|
||||
HOMEPAGE="https://guix.gnu.org"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="1.4.0 1.3.0"
|
||||
|
||||
|
||||
function releases_() {
|
||||
echo 1.4.0 1.3.0
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local ISO="guix-system-install-${RELEASE}.x86_64-linux.iso"
|
||||
local URL="https://ftpmirror.gnu.org/gnu/guix/"
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
|
|
|
|||
22
public/haiku
22
public/haiku
|
|
@ -5,5 +5,27 @@ BASEDOF="-"
|
|||
DESCRIPTION="Specifically targets personal computing. Inspired by the BeOS, Haiku is fast, simple to use, easy to learn and yet very powerful"
|
||||
HOMEPAGE="https://www.haiku-os.org"
|
||||
CREDENTIALS="-"
|
||||
haiku
|
||||
|
||||
RELEASES="r1beta5 r1beta4 r1beta3"
|
||||
EDITIONS="x86_gcc2h x86_64"
|
||||
|
||||
function releases_() {
|
||||
echo r1beta5 r1beta4 r1beta3
|
||||
}
|
||||
|
||||
function editions_() {
|
||||
echo x86_64 x86_gcc2h
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local ISO="haiku-${RELEASE}-${EDITION}-anyboot.iso"
|
||||
local URL="http://mirror.rit.edu/haiku/${RELEASE}"
|
||||
HASH=$(web_pipe "${URL}/${ISO}.sha256" | grep "${ISO}" | cut -d' ' -f4)
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
function specific_tweaks() {
|
||||
echo "boot=\"legacy\"" >> "${CONF_FILE}"
|
||||
}
|
||||
|
||||
|
|
|
|||
20
public/kali
20
public/kali
|
|
@ -5,5 +5,25 @@ BASEDOF="Debian"
|
|||
DESCRIPTION="The most advanced Penetration Testing Distribution"
|
||||
HOMEPAGE="https://www.kali.org"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="kali-weekly current"
|
||||
|
||||
|
||||
function releases_() {
|
||||
echo current kali-weekly
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local ISO=""
|
||||
local URL="https://cdimage.kali.org/${RELEASE}"
|
||||
ISO=$(web_pipe "${URL}/?C=M;O=D" | grep -o ">kali-linux-.*-installer-amd64.iso" | head -n 1 | cut -c 2-)
|
||||
HASH=$(web_pipe "${URL}/SHA256SUMS" | grep -v torrent | grep "${ISO}" | cut -d' ' -f1)
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
function specific_tweaks() {
|
||||
echo "disk_size=\"32G\"" >> "${CONF_FILE}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,25 @@ BASEDOF="Debian Ubuntu"
|
|||
DESCRIPTION="Latest and greatest of KDE community software packaged on a rock-solid base"
|
||||
HOMEPAGE="https://neon.kde.org"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="user unstable testing developer"
|
||||
|
||||
|
||||
function releases_() {
|
||||
echo user testing unstable developer
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local ISO=""
|
||||
local URL="https://files.kde.org/neon/images/${RELEASE}/current"
|
||||
if [ "$RELEASE" == 'developer' ]; then
|
||||
ISO=$(web_pipe "${URL}/neon-unstable-${RELEASE}-current.sha256sum" | cut -d' ' -f3-)
|
||||
else
|
||||
ISO=$(web_pipe "${URL}/neon-${RELEASE}-current.sha256sum" | cut -d' ' -f3-)
|
||||
fi
|
||||
HASH=$(web_pipe "${URL}/neon-${RELEASE}-current.sha256sum" | cut -d' ' -f1)
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -0,0 +1,24 @@
|
|||
# Template file for 'kodachi'
|
||||
OSNAME="kodachi"
|
||||
PRETTY="Kodachi"
|
||||
BASEDOF="Ubuntu"
|
||||
DESCRIPTION="Provide you with a secure, anti forensic, and anonymous operating system considering all features that a person who is concerned about privacy would need to have in order to be secure"
|
||||
HOMEPAGE="https://www.digi77.com/linux-kodachi/"
|
||||
CREDENTIALS="kodachi:r@@t00,root:r@@t00"
|
||||
|
||||
|
||||
RELEASES="latest"
|
||||
|
||||
|
||||
function releases_() {
|
||||
echo latest
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local ISO=$(web_pipe "https://sourceforge.net/projects/linuxkodachi/rss?path=/" | grep 'title><!\[CDATA' | cut -d'[' -f3 | cut -d']' -f1 | grep '\.iso' | head -1)
|
||||
local HASH=$(web_pipe "https://sourceforge.net/projects/linuxkodachi/rss?path=/" | grep 'title><!\[CDATA' | cut -d'[' -f3 | cut -d']' -f1 | grep "${ISO}\.sig" | cut -d' ' -f1)
|
||||
local URL="https://sourceforge.net/projects/linuxkodachi/files"
|
||||
echo "${URL}${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
|
|
@ -5,5 +5,41 @@ BASEDOF="-"
|
|||
DESCRIPTION="Tiny yet incredibly powerful and fast operating system"
|
||||
HOMEPAGE="http://kolibrios.org"
|
||||
CREDENTIALS="-"
|
||||
kolibrios
|
||||
|
||||
RELEASES="latest"
|
||||
EDITIONS="ru_RU it_IT es_ES en_US"
|
||||
|
||||
function releases_() {
|
||||
echo latest
|
||||
}
|
||||
|
||||
function editions_() {
|
||||
echo en_US ru_RU it_IT es_ES
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local ISO="latest-iso.7z"
|
||||
local URL="http://builds.kolibrios.org/${EDITION}"
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
function distro_specific() {
|
||||
if [[ ${ISO} = *".7z" ]]; then
|
||||
if [ -z "$(command -v 7z)" ]; then echo $"ERROR! '7zip' needs installing. Unable to extract file."
|
||||
else
|
||||
7z e "${VM_PATH}/${ISO}" -o"${VM_PATH}" >/dev/null 2>&1
|
||||
rm -f "${VM_PATH}/${ISO}"
|
||||
ISO="$(ls -1 "${VM_PATH}/"*.iso)"
|
||||
ISO="$(basename "${ISO}")"
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
||||
function specific_tweaks() {
|
||||
echo "boot=\"legacy\"" >> "${CONF_FILE}"
|
||||
echo "disk_size=\"2G\"" >> "${CONF_FILE}"
|
||||
echo "ram=\"128M\"" >> "${CONF_FILE}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,20 @@ BASEDOF="Debian Ubuntu"
|
|||
DESCRIPTION="Your first simple, fast and free stop in the world of Linux"
|
||||
HOMEPAGE="https://www.linuxliteos.com"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="6.6 6.4 6.2 6.0"
|
||||
|
||||
|
||||
function releases_() {
|
||||
echo 6.6 6.4 6.2 6.0
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local ISO="linux-lite-${RELEASE}-64bit.iso"
|
||||
local URL="https://sourceforge.net/projects/linux-lite/files/${RELEASE}"
|
||||
HASH=$(web_pipe "${URL}/${ISO}.sha256" | cut -d' ' -f1)
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,24 @@ BASEDOF="Ubuntu"
|
|||
DESCRIPTION="Designed to work out of the box and comes fully equipped with the apps most people need"
|
||||
HOMEPAGE="https://linuxmint.com"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="22.1 22 21.3 21.2 21.1 21 20.3 20.2"
|
||||
EDITIONS="xfce mate cinnamon"
|
||||
|
||||
function releases_() {
|
||||
echo 22.1 22 21.3 21.2 21.1 21 20.3 20.2
|
||||
}
|
||||
|
||||
function editions_() {
|
||||
echo cinnamon mate xfce
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local ISO="linuxmint-${RELEASE}-${EDITION}-64bit.iso"
|
||||
local URL="https://mirror.bytemark.co.uk/linuxmint/stable/${RELEASE}"
|
||||
HASH=$(web_pipe "${URL}/sha256sum.txt" | grep "${ISO}" | cut -d' ' -f1)
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
|
|
|
|||
19
public/lmde
19
public/lmde
|
|
@ -5,5 +5,24 @@ BASEDOF="Debian"
|
|||
DESCRIPTION="Aims to be as similar as possible to Linux Mint, but without using Ubuntu. The package base is provided by Debian instead"
|
||||
HOMEPAGE="https://www.linuxmint.com/download_lmde.php"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="6"
|
||||
EDITIONS="cinnamon"
|
||||
|
||||
function releases_() {
|
||||
echo 6
|
||||
}
|
||||
|
||||
function editions_() {
|
||||
echo cinnamon
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local ISO="lmde-${RELEASE}-${EDITION}-64bit.iso"
|
||||
local URL="https://mirror.bytemark.co.uk/linuxmint/debian"
|
||||
HASH=$(web_pipe "${URL}/sha256sum.txt" | grep "${ISO}" | cut -d' ' -f1)
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,27 @@ BASEDOF="Debian"
|
|||
DESCRIPTION="Distribution of GNU/Linux focused on low resource consumption."
|
||||
HOMEPAGE="https://loc-os.com"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="latest"
|
||||
EDITIONS="xfce lxde kde"
|
||||
|
||||
function releases_() {
|
||||
echo latest
|
||||
}
|
||||
|
||||
function editions_() {
|
||||
echo lxde xfce kde
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local REL=$(echo "${EDITION}" | tr '[:lower:]' '[:upper:]')
|
||||
URL="https://sourceforge.net/projects/loc-os/files"
|
||||
REST_URL=$(web_pipe "https://sourceforge.net/projects/loc-os/rss?path=/" | grep 'title><!\[CDATA' | cut -d'[' -f3 | cut -d']' -f1 | grep '64\.iso' | grep "${REL}" | head -1)
|
||||
REST="Loc-OS%2023"
|
||||
URL="${URL}/${REST}"
|
||||
ISO=$(echo "${REST_URL}" | cut -d'/' -f3)
|
||||
echo "${URL}/${ISO}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,20 @@ BASEDOF="Manjaro"
|
|||
DESCRIPTION="Lightweight, functional and easy to customize Openbox desktop"
|
||||
HOMEPAGE="https://maboxlinux.org"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="latest"
|
||||
|
||||
|
||||
function releases_() {
|
||||
echo latest
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local URL=""
|
||||
URL="https://sourceforge.net/projects/mabox-linux/files/${RELEASE}/download"
|
||||
URL="$(web_redirect "${URL}" | cut -d? -f1)"
|
||||
echo "${URL} ${HASH}"
|
||||
}
|
||||
|
||||
|
|
|
|||
144
public/macos
144
public/macos
|
|
@ -5,5 +5,149 @@ BASEDOF="-"
|
|||
DESCRIPTION="Work and play on your Mac are even more powerful. Elevate your presence on video calls. Access information in all-new ways. Boost gaming performance."
|
||||
HOMEPAGE="https://www.apple.com/macos"
|
||||
CREDENTIALS="-"
|
||||
GUEST="xfce lxde kde "
|
||||
IMAGE_TYPE=""
|
||||
RELEASES="ventura sonoma monterey mojave catalina big-sur"
|
||||
|
||||
|
||||
function releases_() {
|
||||
echo mojave catalina big-sur monterey ventura sonoma
|
||||
}
|
||||
|
||||
function generate_id() {
|
||||
local macRecoveryID=""
|
||||
local TYPE="${1}"
|
||||
local valid_chars=("0" "1" "2" "3" "4" "5" "6" "7" "8" "9" "A" "B" "C" "D" "E" "F")
|
||||
for ((i=0; i<TYPE; i++)); do
|
||||
macRecoveryID+="${valid_chars[$((RANDOM % 16))]}"
|
||||
done
|
||||
echo "${macRecoveryID}"
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local appleSession=""
|
||||
local info=""
|
||||
local downloadLink=""
|
||||
local downloadSession=""
|
||||
local chunkListLink=""
|
||||
local chunkListSession=""
|
||||
local BOARD_ID=""
|
||||
local CWD=""
|
||||
local CHECK=""
|
||||
local CHUNKCHECK=""
|
||||
local MLB="00000000000000000"
|
||||
local OS_TYPE="default"
|
||||
|
||||
case ${RELEASE} in
|
||||
lion|10.7)
|
||||
BOARD_ID="Mac-2E6FAB96566FE58C"
|
||||
MLB="00000000000F25Y00";;
|
||||
mountainlion|10.8)
|
||||
BOARD_ID="Mac-7DF2A3B5E5D671ED"
|
||||
MLB="00000000000F65100";;
|
||||
mavericks|10.9)
|
||||
BOARD_ID="Mac-F60DEB81FF30ACF6"
|
||||
MLB="00000000000FNN100";;
|
||||
yosemite|10.10)
|
||||
BOARD_ID="Mac-E43C1C25D4880AD6"
|
||||
MLB="00000000000GDVW00";;
|
||||
elcapitan|10.11)
|
||||
BOARD_ID="Mac-FFE5EF870D7BA81A"
|
||||
MLB="00000000000GQRX00";;
|
||||
sierra|10.12)
|
||||
BOARD_ID="Mac-77F17D7DA9285301"
|
||||
MLB="00000000000J0DX00";;
|
||||
high-sierra|10.13)
|
||||
BOARD_ID="Mac-BE088AF8C5EB4FA2"
|
||||
MLB="00000000000J80300";;
|
||||
mojave|10.14)
|
||||
BOARD_ID="Mac-7BA5B2DFE22DDD8C"
|
||||
MLB="00000000000KXPG00";;
|
||||
catalina|10.15)
|
||||
BOARD_ID="Mac-00BE6ED71E35EB86";;
|
||||
big-sur|11)
|
||||
BOARD_ID="Mac-42FD25EABCABB274";;
|
||||
monterey|12)
|
||||
BOARD_ID="Mac-E43C1C25D4880AD6";;
|
||||
ventura|13)
|
||||
BOARD_ID="Mac-BE088AF8C5EB4FA2";;
|
||||
sonoma|14)
|
||||
BOARD_ID="Mac-53FDB3D8DB8CA971";;
|
||||
*) echo "ERROR! Unknown release: ${RELEASE}"
|
||||
releases_macos
|
||||
exit 1;;
|
||||
esac
|
||||
|
||||
CWD="$(dirname "${0}")"
|
||||
if [ -x "${CWD}/chunkcheck" ]; then
|
||||
CHUNKCHECK="${CWD}/chunkcheck"
|
||||
elif [ -x "$(command -v chunkcheck)" ]; then
|
||||
CHUNKCHECK="$(command -v chunkcheck)"
|
||||
fi
|
||||
|
||||
appleSession=$(curl --disable -v -H "Host: osrecovery.apple.com" \
|
||||
-H "Connection: close" \
|
||||
-A "InternetRecovery/1.0" https://osrecovery.apple.com/ 2>&1 | tr ';' '\n' | awk -F'session=|;' '{print $2}' | grep 1)
|
||||
info=$(curl --disable -s -X POST -H "Host: osrecovery.apple.com" \
|
||||
-H "Connection: close" \
|
||||
-A "InternetRecovery/1.0" \
|
||||
-b "session=\"${appleSession}\"" \
|
||||
-H "Content-Type: text/plain" \
|
||||
-d $'cid='"$(generate_id 16)"$'\nsn='${MLB}$'\nbid='${BOARD_ID}$'\nk='"$(generate_id 64)"$'\nfg='"$(generate_id 64)"$'\nos='${OS_TYPE} \
|
||||
https://osrecovery.apple.com/InstallationPayload/RecoveryImage | tr ' ' '\n')
|
||||
downloadLink=$(echo "$info" | grep 'oscdn' | grep 'dmg')
|
||||
downloadSession=$(echo "$info" | grep 'expires' | grep 'dmg')
|
||||
chunkListLink=$(echo "$info" | grep 'oscdn' | grep 'chunklist')
|
||||
chunkListSession=$(echo "$info" | grep 'expires' | grep 'chunklist')
|
||||
|
||||
if [ "${OPERATION}" == "show" ]; then
|
||||
test_result "${OS}" "${RELEASE}" "" "${downloadLink}" | tee -a "public/tmp_${OS}"
|
||||
exit 0
|
||||
elif [ "${OPERATION}" == "test" ]; then
|
||||
CHECK=$(web_check "${downloadLink}" --header "Host: oscdn.apple.com" --header "Connection: close" --header "User-Agent: InternetRecovery/1.0" --header "Cookie: AssetToken=${downloadSession}" && echo "PASS" || echo "FAIL")
|
||||
test_result "${OS}" "${RELEASE}" "" "${downloadLink}" "${CHECK}" | tee -a "public/tmp_${OS}"
|
||||
exit 0
|
||||
elif [ "${OPERATION}" == "download" ]; then
|
||||
echo "Downloading macOS (${RELEASE^}) RecoveryImage"
|
||||
echo " - URL: ${downloadLink}"
|
||||
web_get "${downloadLink}" "${VM_PATH}" RecoveryImage.dmg --header "Host: oscdn.apple.com" --header "Connection: close" --header "User-Agent: InternetRecovery/1.0" --header "Cookie: AssetToken=${downloadSession}"
|
||||
web_get "${chunkListLink}" "${VM_PATH}" RecoveryImage.chunklist --header "Host: oscdn.apple.com" --header "Connection: close" --header "User-Agent: InternetRecovery/1.0" --header "Cookie: AssetToken=${chunkListSession}"
|
||||
VM_PATH="$(pwd)"
|
||||
else
|
||||
if [ ! -e "${VM_PATH}/RecoveryImage.chunklist" ]; then
|
||||
echo "Downloading macOS (${RELEASE^}) RecoveryImage"
|
||||
echo " - URL: ${downloadLink}"
|
||||
web_get "${downloadLink}" "${VM_PATH}" RecoveryImage.dmg --header "Host: oscdn.apple.com" --header "Connection: close" --header "User-Agent: InternetRecovery/1.0" --header "Cookie: AssetToken=${downloadSession}"
|
||||
web_get "${chunkListLink}" "${VM_PATH}" RecoveryImage.chunklist --header "Host: oscdn.apple.com" --header "Connection: close" --header "User-Agent: InternetRecovery/1.0" --header "Cookie: AssetToken=${chunkListSession}"
|
||||
if ! "${CHUNKCHECK}" "${VM_PATH}" 2> /dev/null; then
|
||||
echo " - WARNING! Verification failed, continuing anyway"
|
||||
else
|
||||
echo " - Verification passed"
|
||||
fi
|
||||
|
||||
if [ -e "${VM_PATH}/RecoveryImage.dmg" ] && [ ! -e "${VM_PATH}/RecoveryImage.img" ]; then
|
||||
echo " - Converting RecoveryImage.dmg"
|
||||
${QEMU_IMG} convert "${VM_PATH}/RecoveryImage.dmg" -O raw "${VM_PATH}/RecoveryImage.img" 2>/dev/null
|
||||
fi
|
||||
rm "${VM_PATH}/RecoveryImage.dmg" "${VM_PATH}/RecoveryImage.chunklist"
|
||||
echo " - RecoveryImage.img is ready."
|
||||
fi
|
||||
echo "Downloading OpenCore & UEFI firmware"
|
||||
web_get "https://github.com/kholia/OSX-KVM/raw/master/OpenCore/OpenCore.qcow2" "${VM_PATH}"
|
||||
web_get "https://github.com/kholia/OSX-KVM/raw/master/OVMF_CODE.fd" "${VM_PATH}"
|
||||
if [ ! -e "${VM_PATH}/OVMF_VARS-1920x1080.fd" ]; then
|
||||
web_get "https://github.com/kholia/OSX-KVM/raw/master/OVMF_VARS-1920x1080.fd" "${VM_PATH}"
|
||||
fi
|
||||
fi
|
||||
make_vm_config RecoveryImage.img
|
||||
}
|
||||
|
||||
function specific_tweaks() {
|
||||
echo "disk_size=\"128G\"" >> "${CONF_FILE}"
|
||||
echo "macos_release=\"${RELEASE}\"" >> "${CONF_FILE}"
|
||||
# https://github.com/quickemu-project/quickemu/issues/438
|
||||
if [ "${RELEASE}" == "monterey" ]; then
|
||||
echo "cpu_cores=2" >> "${CONF_FILE}"
|
||||
fi
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,24 @@ BASEDOF="-"
|
|||
DESCRIPTION="Stable, secure operating system for desktop & server"
|
||||
HOMEPAGE="https://www.mageia.org"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="9 8"
|
||||
EDITIONS="Xfce Plasma GNOME"
|
||||
|
||||
function releases_() {
|
||||
echo 9 8
|
||||
}
|
||||
|
||||
function editions_() {
|
||||
echo Plasma GNOME Xfce
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local ISO=""
|
||||
ISO=$(web_pipe https://www.mageia.org/en/downloads/get/?q="Mageia-${RELEASE}-Live-${EDITION}-x86_64.iso" | grep 'click here'| grep -o 'href=.*\.iso'|cut -d\" -f2)
|
||||
HASH=$(web_pipe "${ISO}.sha512" | cut -d' ' -f1)
|
||||
echo "${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,46 @@ BASEDOF="Arch"
|
|||
DESCRIPTION="Versatile, free, and open-source Linux operating system designed with a strong focus on safeguarding user privacy and offering extensive control over hardware"
|
||||
HOMEPAGE="https://manjaro.org"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="xfce sway plasma i3 gnome cinnamon"
|
||||
EDITIONS="minimal full"
|
||||
|
||||
function releases_() {
|
||||
echo xfce gnome plasma cinnamon i3 sway
|
||||
}
|
||||
|
||||
function editions_() {
|
||||
echo full minimal
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local ISO=""
|
||||
local MANIFEST=""
|
||||
local URL=""
|
||||
local TYPE="official"
|
||||
MANIFEST="$(web_pipe https://gitlab.manjaro.org/web/iso-info/-/raw/master/file-info.json)"
|
||||
case "${RELEASE}" in
|
||||
sway)
|
||||
MANIFEST="$(web_pipe https://mirror.manjaro-sway.download/manjaro-sway/release.json)"
|
||||
TYPE="sway"
|
||||
;;
|
||||
cinnamon|i3) TYPE="community";;
|
||||
esac
|
||||
|
||||
if [ "${EDITION}" == "minimal" ] && [ "${TYPE}" != "sway" ]; then
|
||||
EDITION=".minimal"
|
||||
else
|
||||
EDITION=""
|
||||
fi
|
||||
|
||||
if [ "${RELEASE}" == "sway" ]; then
|
||||
URL=$(echo "${MANIFEST}" | jq -r '.[] | select(.name|test("^manjaro-sway-.*[.]iso$")) | .url')
|
||||
else
|
||||
URL="$(echo "${MANIFEST}" | jq -r ."${TYPE}.${RELEASE}${EDITION}".image)"
|
||||
fi
|
||||
HASH=$(web_pipe "${URL}.sha512" | cut -d' ' -f1)
|
||||
echo "${URL} ${HASH}"
|
||||
}
|
||||
|
||||
|
|
|
|||
26
public/miyo
26
public/miyo
|
|
@ -5,5 +5,31 @@ BASEDOF="Devuan"
|
|||
DESCRIPTION="Very minimal Linux OS based on Devuan and various Window Managers. "
|
||||
HOMEPAGE="https://sourceforge.net/projects/miyolinux/"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="2022"
|
||||
EDITIONS="Openbox MATE Kwin JWM Deboot-Ceres"
|
||||
|
||||
function releases_() {
|
||||
echo 2022
|
||||
}
|
||||
|
||||
function editions_() {
|
||||
echo Kwin Deboot-Ceres JWM Openbox MATE
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local EDITION="${1:-}"
|
||||
local HASH=""
|
||||
local URL="https://sourceforge.net/projects/miyolinux/files/${RELEASE}-Release/${EDITION}"
|
||||
case ${EDITION} in
|
||||
Kwin) ISO="miyo-kwin-x86_64-BIOS-20220526.iso";;
|
||||
Deboot-Ceres) ISO="Deboot-Ceres-x86-64-BIOS-20220415.iso";;
|
||||
JWM) ISO="miyolinux-jwm-x86_64-BIOS-20220226.iso";;
|
||||
Openbox) ISO="MiyoLinux-x86_64-BIOS-20220129.iso";;
|
||||
MATE) ISO="mate-minimal-x86_64-BIOS-20220107.iso";;
|
||||
esac
|
||||
HASH=$(wget -q -O- "${URL}/${ISO}.sha256" | cut -d' ' -f1)
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,30 @@ BASEDOF="Debian Antix"
|
|||
DESCRIPTION="Designed to combine elegant and efficient desktops with high stability and solid performance"
|
||||
HOMEPAGE="https://mxlinux.org"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="23.5"
|
||||
EDITIONS="Xfce KDE Fluxbox"
|
||||
|
||||
function releases_() {
|
||||
# needs header, so not web_pipe:
|
||||
curl --disable -Ils "https://sourceforge.net/projects/mx-linux/files/latest/download" | grep -i 'location:' | cut -d? -f1 | cut -d_ -f1 | cut -d- -f3
|
||||
}
|
||||
|
||||
function editions_() {
|
||||
echo Xfce KDE Fluxbox
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local ISO=""
|
||||
local URL="https://sourceforge.net/projects/mx-linux/files/Final/${EDITION}"
|
||||
case ${EDITION} in
|
||||
Xfce) ISO="MX-${RELEASE}_x64.iso";;
|
||||
KDE) ISO="MX-${RELEASE}_KDE_x64.iso";;
|
||||
Fluxbox) ISO="MX-${RELEASE}_fluxbox_x64.iso";;
|
||||
esac
|
||||
HASH=$(web_pipe "${URL}/${ISO}.sha256" | cut -d' ' -f1)
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,20 @@ BASEDOF="iPXE"
|
|||
DESCRIPTION="Your favorite operating systems in one place"
|
||||
HOMEPAGE="https://netboot.xyz"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="latest"
|
||||
|
||||
|
||||
function releases_() {
|
||||
echo latest
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local ISO="netboot.xyz.iso"
|
||||
local URL="https://boot.netboot.xyz/ipxe"
|
||||
HASH=$(web_pipe "${URL}/netboot.xyz-sha256-checksums.txt" | grep "${ISO}" | cut -d' ' -f1)
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,26 @@ BASEDOF="-"
|
|||
DESCRIPTION="Free, fast, secure, and highly portable Unix-like Open Source operating system. It is available for a wide range of platforms, from large-scale servers and powerful desktop systems to handheld and embedded devices"
|
||||
HOMEPAGE="https://www.netbsd.org"
|
||||
CREDENTIALS="-"
|
||||
GUEST="Xfce KDE Fluxbox"
|
||||
|
||||
RELEASES="9.4 9.3 10.1 10.0"
|
||||
|
||||
|
||||
function releases_() {
|
||||
# V8 is EOL so filter it out
|
||||
#shellcheck disable=SC2046,SC2005
|
||||
echo $(web_pipe "https://cdn.netbsd.org/pub/NetBSD/iso/" | grep -o -E '"[[:digit:]]+\.[[:digit:]]+/"' | tr -d '"/' | grep -v ^8 | sort -nr | head -n 4)
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local ISO="NetBSD-${RELEASE}-amd64.iso"
|
||||
local URL="https://cdn.netbsd.org/pub/NetBSD/NetBSD-${RELEASE}/images"
|
||||
HASH=$(web_pipe "${URL}/MD5" | grep "${ISO}" | cut -d' ' -f4)
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
function specific_tweaks() {
|
||||
echo "boot=\"legacy\"" >> "${CONF_FILE}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,24 @@ BASEDOF="Debian Ubuntu"
|
|||
DESCRIPTION="Powered by Debian, KDE Plasma and Frameworks, and AppImages"
|
||||
HOMEPAGE="https://nxos.org"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="latest"
|
||||
|
||||
|
||||
function releases_() {
|
||||
echo latest
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local URLBASE=""
|
||||
local URL=""
|
||||
local ISO=""
|
||||
URLBASE="https://sourceforge.net/projects/nitruxos/files/Release"
|
||||
URL="${URLBASE}/ISO"
|
||||
ISO=$(web_pipe 'https://sourceforge.net/projects/nitruxos/rss?path=/Release/ISO' | grep '.iso' | head -n 1 | cut -d']' -f1 | cut -d '/' -f4)
|
||||
HASH=$(web_pipe "${URLBASE}/MD5/${ISONAME}.md5sum" | grep "${ISO}" | cut -d' ' -f1)
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
|
|
|
|||
37
public/nixos
37
public/nixos
|
|
@ -5,5 +5,40 @@ BASEDOF="-"
|
|||
DESCRIPTION="Linux distribution based on Nix package manager, tool that takes a unique approach to package management and system configuration"
|
||||
HOMEPAGE="https://nixos.org"
|
||||
CREDENTIALS="-"
|
||||
RELEASES="unstable 24.11 24.05"
|
||||
|
||||
|
||||
RELEASES="unstable 24.05 23.05"
|
||||
EDITIONS="plasma minimal gnome"
|
||||
|
||||
function releases_() {
|
||||
# Lists unstable plus the two most recent releases
|
||||
#shellcheck disable=SC2046
|
||||
echo unstable $(web_pipe "https://nix-channels.s3.amazonaws.com/?delimiter=/" | grep -o -E 'nixos-[[:digit:]]+\.[[:digit:]]+' | cut -d- -f2 | sort -nru | head -n +2)
|
||||
}
|
||||
|
||||
function editions_() {
|
||||
echo minimal plasma gnome
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
# Adapt the plasma edition according to the NixOS release
|
||||
case "${EDITION}" in
|
||||
plasma)
|
||||
if [ "${RELEASE}" == "23.11" ]; then
|
||||
EDITION+="5"
|
||||
else
|
||||
EDITION+="6"
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
local ISO="latest-nixos-${EDITION}-x86_64-linux.iso"
|
||||
local URL="https://channels.nixos.org/nixos-${RELEASE}"
|
||||
HASH=$(web_pipe "${URL}/${ISO}.sha256" | cut -d' ' -f1)
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
function specific_tweaks() {
|
||||
echo "disk_size=\"32G\"" >> "${CONF_FILE}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,21 @@ BASEDOF="Arch"
|
|||
DESCRIPTION="Arch Linux ISO with nwg-shell for sway and Hyprland"
|
||||
HOMEPAGE="https://nwg-piotr.github.io/nwg-shell"
|
||||
CREDENTIALS="-"
|
||||
RELEASES="2025.01.01"
|
||||
|
||||
|
||||
RELEASES="2025.02.23"
|
||||
|
||||
|
||||
function releases_() {
|
||||
#shellcheck disable=SC2046,SC2005
|
||||
echo $(web_pipe "https://sourceforge.net/projects/nwg-iso/rss?path=/" | grep 'url=' | grep '64.iso' | cut -d'/' -f12 | cut -d'-' -f3)
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local ISO="nwg-live-${RELEASE}-x86_64.iso"
|
||||
local URL="https://sourceforge.net/projects/nwg-iso/files"
|
||||
HASH="$(web_pipe "https://sourceforge.net/projects/nwg-iso/rss?path=/" | grep "${ISO}" | cut -d'>' -f3 | cut -d'<' -f1 | tail -n 1)"
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,25 @@ BASEDOF="-"
|
|||
DESCRIPTION="Free, multi-platform 4.4BSD-based UNIX-like operating system. Our efforts emphasize portability, standardization, correctness, proactive security and integrated cryptography"
|
||||
HOMEPAGE="https://www.openbsd.org"
|
||||
CREDENTIALS="-"
|
||||
GUEST="plasma minimal gnome"
|
||||
|
||||
RELEASES="7.6 7.5 7.4 7.3 7.2 7.1 7.0 6.9 6.8"
|
||||
|
||||
|
||||
function releases_() {
|
||||
#shellcheck disable=SC2046,SC2005
|
||||
echo $(web_pipe "https://mirror.leaseweb.com/pub/OpenBSD/" | grep -e '6\.[8-9]/' -e '[7-9]\.' | cut -d\" -f4 | tr -d '/' | sort -r)
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local ISO="install${RELEASE//\./}.iso"
|
||||
local URL="https://mirror.leaseweb.com/pub/OpenBSD/${RELEASE}/amd64"
|
||||
HASH=$(web_pipe "${URL}/SHA256" | grep "${ISO}" | cut -d' ' -f4)
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
function specific_tweaks() {
|
||||
echo "boot=\"legacy\"" >> "${CONF_FILE}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,32 @@ BASEDOF="Solaris OPenSolaris"
|
|||
DESCRIPTION="Community supported illumos-based operating system"
|
||||
HOMEPAGE="https://www.openindiana.org"
|
||||
CREDENTIALS="-"
|
||||
solaris
|
||||
|
||||
RELEASES="20241026 20240426 20231027 20230502 20230421"
|
||||
EDITIONS="text minimal gui"
|
||||
|
||||
function releases_() {
|
||||
#shellcheck disable=SC2046,SC2005
|
||||
echo $(web_pipe "https://dlc.openindiana.org/isos/hipster/" | grep link | cut -d'/' -f 1 | cut -d '"' -f4 | sort -r | tail -n +2 | head -n 5)
|
||||
}
|
||||
|
||||
function editions_() {
|
||||
echo gui text minimal
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local ISO=""
|
||||
local URL=""
|
||||
URL="https://dlc.openindiana.org/isos/hipster/${RELEASE}"
|
||||
ISO="OI-hipster-${EDITION}-${RELEASE}.iso"
|
||||
HASH=$(web_pipe "${URL}/${ISO}.sha256" |cut -d' ' -f1)
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
function specific_tweaks() {
|
||||
echo "boot=\"legacy\"" >> "${CONF_FILE}"
|
||||
echo "disk_size=\"32G\"" >> "${CONF_FILE}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,37 @@ BASEDOF="-"
|
|||
DESCRIPTION="The makers choice for sysadmins, developers and desktop users"
|
||||
HOMEPAGE="https://www.opensuse.org"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="tumbleweed microos aeon 16.0 15.6 15.5 15.4 15.3 15.2 15.1 15.0"
|
||||
|
||||
|
||||
function releases_() {
|
||||
#shellcheck disable=SC2046,SC2005
|
||||
echo $(web_pipe "https://download.opensuse.org/distribution/leap/" | grep 'class="name"' | cut -d '/' -f2 | grep -v 42 | sort -r) aeon microos tumbleweed
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local ISO=""
|
||||
local URL=""
|
||||
if [ "${RELEASE}" == "tumbleweed" ]; then
|
||||
ISO="openSUSE-Tumbleweed-DVD-x86_64-Current.iso"
|
||||
URL="https://download.opensuse.org/tumbleweed/iso"
|
||||
elif [ "${RELEASE}" == "microos" ]; then
|
||||
ISO="openSUSE-MicroOS-DVD-x86_64-Current.iso"
|
||||
URL="https://download.opensuse.org/tumbleweed/iso"
|
||||
elif [ "${RELEASE}" == "aeon" ]; then
|
||||
ISO="opensuse-aeon.x86_64.iso"
|
||||
URL="https://mirrorcache.opensuse.org/tumbleweed/appliances/iso"
|
||||
elif [ "${RELEASE}" == 15.0 ] || [ "${RELEASE}" == 15.1 ]; then
|
||||
ISO="openSUSE-Leap-${RELEASE}-DVD-x86_64.iso"
|
||||
URL="https://download.opensuse.org/distribution/leap/${RELEASE}/iso"
|
||||
else
|
||||
ISO="openSUSE-Leap-${RELEASE}-DVD-x86_64-Current.iso"
|
||||
URL="https://download.opensuse.org/distribution/leap/${RELEASE}/iso"
|
||||
fi
|
||||
HASH=$(web_pipe "${URL}/${ISO}.sha256" | awk '{if(NR==4) print $0}' | cut -d' ' -f1)
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,30 @@ BASEDOF="RedHar"
|
|||
DESCRIPTION="Linux with everything required to deploy, optimize, and manage applications on-premises, in the cloud, and at the edge"
|
||||
HOMEPAGE="https://www.oracle.com/linux"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="9.3 9.2 9.1 9.0 8.9 8.8 8.7 8.6 8.5 8.4 7.9 7.8 7.7"
|
||||
|
||||
|
||||
function releases_() {
|
||||
echo 9.3 9.2 9.1 9.0 8.9 8.8 8.7 8.6 8.5 8.4 7.9 7.8 7.7
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local ISO=""
|
||||
local VER_MAJ=${RELEASE::1}
|
||||
local VER_MIN=${RELEASE:2:1}
|
||||
local URL="https://yum.oracle.com/ISOS/OracleLinux/OL${VER_MAJ}/u${VER_MIN}/x86_64"
|
||||
case ${VER_MAJ} in
|
||||
7) ISO="OracleLinux-R${VER_MAJ}-U${VER_MIN}-Server-x86_64-dvd.iso";;
|
||||
*) ISO="OracleLinux-R${VER_MAJ}-U${VER_MIN}-x86_64-dvd.iso";;
|
||||
esac
|
||||
HASH=$(web_pipe "https://linux.oracle.com/security/gpg/checksum/OracleLinux-R${VER_MAJ}-U${VER_MIN}-Server-x86_64.checksum" | grep "${ISO}" | cut -d' ' -f1)
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
function specific_tweaks() {
|
||||
echo "disk_size=\"32G\"" >> "${CONF_FILE}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,27 @@ BASEDOF="Debian"
|
|||
DESCRIPTION="Provides a huge arsenal of tools, utilities and libraries that IT and security professionals can use to test and assess the security of their assets in a reliable, compliant and reproducible way"
|
||||
HOMEPAGE="https://www.parrotsec.org"
|
||||
CREDENTIALS="parrot:parrot"
|
||||
|
||||
|
||||
RELEASES="6.3.2 6.2 6.1"
|
||||
EDITIONS="security htb home"
|
||||
|
||||
function releases_() {
|
||||
#shellcheck disable=SC2046,SC2005
|
||||
echo $(web_pipe "https://download.parrot.sh/parrot/iso/" | grep -o -E 'href="[[:digit:]]+(\.[[:digit:]]+)+' | sort -Vr | head -n 3 | cut -d\" -f 2)
|
||||
}
|
||||
|
||||
function editions_() {
|
||||
echo home htb security
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local ISO=""
|
||||
local URL=""
|
||||
ISO="Parrot-${EDITION}-${RELEASE}_amd64.iso"
|
||||
URL="https://download.parrot.sh/parrot/iso/${RELEASE}"
|
||||
HASH="$(web_pipe "${URL}/signed-hashes.txt" | grep "${ISO}" | cut -d' ' -f1)"
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,25 @@ BASEDOF="Void,Ubuntu,Debian,Slackware"
|
|||
DESCRIPTION="Puppy Linux releases from Github. Brought to you by: peabee"
|
||||
HOMEPAGE="https://sourceforge.net/projects/pb-gh-releases"
|
||||
CREDENTIALS="-"
|
||||
RELEASES="ghtest 250201 250101 241201"
|
||||
|
||||
|
||||
RELEASES="ghtest 250301 250201 250101"
|
||||
EDITIONS="VoidPup64 S15Pup64 BookwormPup64"
|
||||
|
||||
function releases_() {
|
||||
echo $(web_pipe "https://sourceforge.net/projects/pb-gh-releases/rss?path=/" | grep 'title><!\[CDATA' | cut -d'[' -f3 | cut -d']' -f1 | grep '\.iso' | grep '64' | cut -d'-' -f3 | cut -d'.' -f1 | uniq)
|
||||
}
|
||||
|
||||
|
||||
function editions_() {
|
||||
echo $(web_pipe "https://sourceforge.net/projects/pb-gh-releases/rss?path=/" | grep 'title><!\[CDATA' | cut -d'[' -f3 | cut -d']' -f1 | grep '\.iso' | grep '64' | cut -d'/' -f3 | cut -d'-' -f1 | uniq)
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local URL="https://sourceforge.net/projects/pb-gh-releases/files/VoidPup64_release"
|
||||
ISO="VoidPup64-22.02-${RELEASE}.iso"
|
||||
HASH=$(web_pipe "${URL}"/SHA512checksums.txt | grep "${ISO}" | cut -d' ' -f1)
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,38 @@ BASEDOF="Devuan"
|
|||
DESCRIPTION="Provides a user with the opportunity to build the system that best fits their needs. While at the same time providing a functioning OS with minimum hassle out of the box"
|
||||
HOMEPAGE="https://peppermintos.com"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="latest"
|
||||
EDITIONS="devuan-xfce devuan-gnome debian-xfce debian-gnome"
|
||||
|
||||
function releases_() {
|
||||
echo latest
|
||||
}
|
||||
|
||||
function editions_() {
|
||||
echo devuan-xfce devuan-gnome debian-xfce debian-gnome
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local ISO=""
|
||||
local URL="https://sourceforge.net/projects/peppermintos/files/isos"
|
||||
case ${EDITION} in
|
||||
devuan-xfce)
|
||||
ISO="PeppermintOS-devuan_64_xfce.iso"
|
||||
URL="${URL}/XFCE";;
|
||||
debian-xfce)
|
||||
ISO="PeppermintOS-Debian-64.iso"
|
||||
URL="${URL}/XFCE";;
|
||||
devuan-gnome)
|
||||
ISO="PeppermintOS-devuan_64_gfb.iso"
|
||||
URL="${URL}/Gnome_FlashBack";;
|
||||
debian-gnome)
|
||||
ISO="PeppermintOS-Debian_64_gfb.iso"
|
||||
URL="${URL}/Gnome_FlashBack";;
|
||||
esac
|
||||
HASH=$(web_pipe "${URL}/${ISO}-sha512.checksum" | grep "${ISO}" | cut -d' ' -f1)
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
|
|
|
|||
24
public/popos
24
public/popos
|
|
@ -5,5 +5,29 @@ BASEDOF="Ubuntu"
|
|||
DESCRIPTION="Operating system for STEM and creative professionals who use their computer as a tool to discover and create"
|
||||
HOMEPAGE="https://pop.system76.com"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="22.04 20.04"
|
||||
EDITIONS="nvidia intel"
|
||||
|
||||
function releases_() {
|
||||
echo 22.04 20.04
|
||||
}
|
||||
|
||||
function editions_() {
|
||||
echo intel nvidia
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local ISO=""
|
||||
local URL=""
|
||||
URL=$(web_pipe "https://api.pop-os.org/builds/${RELEASE}/${EDITION}" | jq -r .url)
|
||||
HASH=$(web_pipe "https://api.pop-os.org/builds/${RELEASE}/${EDITION}" | jq -r .sha_sum)
|
||||
echo "${URL} ${HASH}"
|
||||
}
|
||||
|
||||
function specific_tweaks() {
|
||||
echo "disk_size=\"32G\"" >> "${CONF_FILE}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,27 @@ BASEDOF="Slackware"
|
|||
DESCRIPTION="Complete linux operating system that is optimized to run from CD, USB flash drive, hard drive, or other bootable storage media"
|
||||
HOMEPAGE="http://www.porteus.org"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="5.01"
|
||||
EDITIONS="xfce openbox mate lxqt lxde kde gnome cinnamon"
|
||||
|
||||
function releases_() {
|
||||
echo 5.01
|
||||
}
|
||||
|
||||
function editions_() {
|
||||
echo cinnamon gnome kde lxde lxqt mate openbox xfce
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local ISO=""
|
||||
local URL=""
|
||||
edition="${EDITION~~}"
|
||||
ISO="Porteus-${edition}-v${RELEASE}-x86_64.iso"
|
||||
URL="https://mirrors.dotsrc.org/porteus/x86_64/Porteus-v${RELEASE}"
|
||||
HASH=$(web_pipe "${URL}/sha256sums.txt" | grep "${ISO}" | cut -d' ' -f1)
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,26 @@ BASEDOF="Ubuntu"
|
|||
DESCRIPTION="Complete and customizable GNU/Linux operating system intended for primary school students and suitable even for older hardware"
|
||||
HOMEPAGE="https://primtux.fr"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="7"
|
||||
EDITIONS="2022-10"
|
||||
|
||||
function releases_() {
|
||||
echo 7
|
||||
}
|
||||
|
||||
function editions_() {
|
||||
echo 2022-10
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local URL=""
|
||||
local ISO=""
|
||||
ISO="PrimTux${RELEASE}-amd64-${EDITION}.iso"
|
||||
URL="https://sourceforge.net/projects/primtux/files/Distribution"
|
||||
HASH=$(web_pipe "${URL}/${ISO}.md5" | grep "${ISO}" | cut -d' ' -f1)
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,28 @@ BASEDOF="Debian"
|
|||
DESCRIPTION="Proxmox Virtual Environment is a complete, open-source server management platform for enterprise virtualization"
|
||||
HOMEPAGE="https://proxmox.com/en/proxmox-virtual-environment"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="8.3-1 8.2-2 7.4-1 6.4-1 5.4-1"
|
||||
|
||||
|
||||
function releases_() {
|
||||
#shellcheck disable=SC2046,SC2005
|
||||
echo $(web_pipe https://enterprise.proxmox.com/iso/ | grep proxmox-ve | grep -E -o '[0-9]+\.[0-9]+-[0-9]\.iso' | uniq | sort -ru | cut -d'.' -f 1-2)
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local ISO=""
|
||||
local URL=""
|
||||
ISO="proxmox-ve_${RELEASE}.iso"
|
||||
URL="https://enterprise.proxmox.com/iso"
|
||||
HASH=$(web_pipe "${URL}/SHA256SUMS" | grep "${ISO}" | cut -d' ' -f1)
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
function specific_tweaks() {
|
||||
echo "disk_size=\"20G\"" >> "${CONF_FILE}"
|
||||
echo "ram=\"4G\"" >> "${CONF_FILE}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,34 @@ BASEDOF="Debian"
|
|||
DESCRIPTION="Fully free/libre and open source GNU/Linux operating system, endorsed by the Free Software Foundation"
|
||||
HOMEPAGE="https://www.pureos.net"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="10.3"
|
||||
EDITIONS="plasma gnome"
|
||||
|
||||
function releases_() {
|
||||
web_pipe "https://www.pureos.net/download/" | grep -m 1 "downloads.puri" | cut -d '"' -f 2 | cut -d '-' -f 4
|
||||
}
|
||||
|
||||
function editions_() {
|
||||
echo gnome plasma
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local ISO=""
|
||||
local URL=""
|
||||
local PureName=
|
||||
PureName="$(web_pipe "https://www.pureos.net/download/" | grep -m 1 "downloads.puri" | cut -d '/' -f 4)"
|
||||
local PureDate=
|
||||
PureDate="$(web_pipe "https://www.pureos.net/download/" | grep -m 1 "downloads.puri" | cut -d '/' -f 6)"
|
||||
local PureDateSquashed="${PureDate//'-'/}"
|
||||
edition="${EDITION,,}"
|
||||
URL="https://downloads.puri.sm/${PureName}/${edition}/${PureDate}"
|
||||
ISO="pureos-${RELEASE}-${edition}-live-${PureDateSquashed}_amd64.iso"
|
||||
local IsoTrimmed=
|
||||
IsoTrimmed="${ISO%.*}"
|
||||
HASH="$(web_pipe "${URL}/${IsoTrimmed}.checksums_sha256.txt" | grep -m 1 '.iso' | cut -d '.' -f 1)"
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,34 @@ BASEDOF="-"
|
|||
DESCRIPTION="Imagine running your favorite Windows applications and drivers in an open-source environment you can trust"
|
||||
HOMEPAGE="https://reactos.org"
|
||||
CREDENTIALS="-"
|
||||
GUEST="plasma gnome"
|
||||
|
||||
RELEASES="latest"
|
||||
|
||||
|
||||
function releases_() {
|
||||
echo latest
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local URL=""
|
||||
URL="$(web_redirect "https://sourceforge.net/projects/reactos/files/latest/download")"
|
||||
echo "${URL} ${HASH}"
|
||||
}
|
||||
|
||||
function distro_specific() {
|
||||
if [[ ${ISO} = *".zip"* ]]; then
|
||||
unzip -qo "${VM_PATH}/${ISO}" -d "${VM_PATH}"
|
||||
rm -f "${VM_PATH}/${ISO}"
|
||||
ISO="$(ls -1 "${VM_PATH}/"*.iso)"
|
||||
ISO="$(basename "${ISO}")"
|
||||
fi
|
||||
}
|
||||
|
||||
function specific_tweaks() {
|
||||
echo "boot=\"legacy\"" >> "${CONF_FILE}"
|
||||
echo "disk_size=\"12G\"" >> "${CONF_FILE}"
|
||||
echo "ram=\"2048M\"" >> "${CONF_FILE}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,20 @@ BASEDOF="Arch"
|
|||
DESCRIPTION="Aiming to make Arch Linux as user friendly as possible by providing interface solutions to things you normally have to do in a terminal"
|
||||
HOMEPAGE="https://rebornos.org"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="latest"
|
||||
|
||||
|
||||
function releases_() {
|
||||
echo latest
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local ISO=""
|
||||
ISO=$(web_pipe "https://meta.cdn.soulharsh007.dev/RebornOS-ISO?format=json" | jq -r ".url")
|
||||
HASH=$(web_pipe "https://meta.cdn.soulharsh007.dev/RebornOS-ISO?format=json" | jq -r ".md5")
|
||||
echo "${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
|
|
|
|||
15
public/rhino
15
public/rhino
|
|
@ -5,5 +5,20 @@ BASEDOF="Ubuntu"
|
|||
DESCRIPTION="Re-invents the Ubuntu experience as a rolling-release distribution built on a stable desktop environment. With Pacstall & XFCE"
|
||||
HOMEPAGE="https://rhinolinux.org/"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="2025.1"
|
||||
|
||||
|
||||
function releases_() {
|
||||
echo 2025.1
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local ISO="Rhino-Linux-${RELEASE}-amd64.iso"
|
||||
local URL="https://sourceforge.net/projects/rhino-linux-builder/files/${RELEASE}"
|
||||
HASH="$(web_pipe "${URL}/${ISO}.sha256/download" | grep "(${ISO}" | cut -d' ' -f1)"
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,33 @@ BASEDOF="RedHat"
|
|||
DESCRIPTION="Open-source enterprise operating system designed to be 100% bug-for-bug compatible with Red Hat Enterprise Linux"
|
||||
HOMEPAGE="https://rockylinux.org"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="9.5 9.4 9.3 9.2 9.1 9.0 8.9 8.8 8.7 8.6 8.5 8.4 8.3"
|
||||
EDITIONS="minimal dvd boot"
|
||||
|
||||
function releases_() {
|
||||
#shellcheck disable=SC2046,SC2005
|
||||
echo $(web_pipe "http://dl.rockylinux.org/vault/rocky/" | grep "^<a href" | grep -v full | grep -v RC | grep -v ISO | cut -d'"' -f2 | tr -d / | sort -ru)
|
||||
}
|
||||
|
||||
function editions_() {
|
||||
echo minimal dvd boot
|
||||
}
|
||||
|
||||
function get_() {
|
||||
if [[ "${RELEASE}" =~ ^8. ]] && [[ "${EDITION}" == "dvd" ]]; then
|
||||
EDITION="dvd1"
|
||||
fi
|
||||
local HASH=""
|
||||
local ISO="Rocky-${RELEASE}-x86_64-${EDITION}.iso"
|
||||
local URL=""
|
||||
URL="https://dl.rockylinux.org/vault/rocky/${RELEASE}/isos/x86_64"
|
||||
HASH=$(web_pipe "${URL}/CHECKSUM" | grep "SHA256" | grep "${ISO})" | cut -d' ' -f4)
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
function specific_tweaks() {
|
||||
echo "disk_size=\"32G\"" >> "${CONF_FILE}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,33 @@ BASEDOF="Debian"
|
|||
DESCRIPTION="Operating system based on the Linux kernel and the GNU project. In addition, there are applications and libraries from Debian"
|
||||
HOMEPAGE="https://siduction.org"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="latest"
|
||||
EDITIONS="xorg xfce nox lxqt kde"
|
||||
|
||||
function releases_() {
|
||||
echo latest
|
||||
}
|
||||
|
||||
function editions_() {
|
||||
#shellcheck disable=SC2046,SC2005
|
||||
NAME=$(web_pipe "https://mirror.math.princeton.edu/pub/siduction/iso/" | grep folder | cut -d'"' -f8 | tr -d '/')
|
||||
web_pipe "https://mirror.math.princeton.edu/pub/siduction/iso/${NAME}/" | grep folder | cut -d'"' -f8 | tr -d '/' | sort -u
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local DATE=""
|
||||
local ISO=""
|
||||
local NAME=""
|
||||
local URL=""
|
||||
NAME=$(web_pipe "https://mirror.math.princeton.edu/pub/siduction/iso/" | grep folder | cut -d'"' -f8 | tr -d '/')
|
||||
URL="https://mirrors.dotsrc.org/siduction/iso/${NAME}/${EDITION}"
|
||||
DATE=$(web_pipe "${URL}"| grep .iso.md5 | cut -d'-' -f6 | cut -d'.' -f1)
|
||||
HASH=$(web_pipe "${URL}/${ISO}.md5" | cut -d' ' -f1)
|
||||
VERSION=$(web_pipe "${URL}"| grep .iso.md5 | cut -d'-' -f2)
|
||||
ISO="siduction-${VERSION}-${NAME}-${EDITION}-amd64-${DATE}.iso"
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,25 @@ BASEDOF="-"
|
|||
DESCRIPTION="Advanced Linux operating system, designed with the twin goals of ease of use and stability as top priorities"
|
||||
HOMEPAGE="http://www.slackware.com"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="15.0 14.2 14.1 14.0 13.37"
|
||||
|
||||
|
||||
function releases_() {
|
||||
#shellcheck disable=SC2046,SC2005
|
||||
echo $(web_pipe "https://slackware.nl/slackware/slackware-iso/" | grep "slackware-" | cut -d'<' -f7 | cut -d'-' -f2 | sort -ru | head -n 5)
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local ISO="slackware64-${RELEASE}-install-dvd.iso"
|
||||
local URL="https://slackware.nl/slackware/slackware-iso/slackware64-${RELEASE}-iso"
|
||||
HASH=$(web_pipe "${URL}/${ISO}.md5" | cut -d' ' -f1)
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
function specific_tweaks() {
|
||||
echo "boot=\"legacy\"" >> "${CONF_FILE}"
|
||||
}
|
||||
|
||||
|
|
|
|||
31
public/slax
31
public/slax
|
|
@ -5,5 +5,36 @@ BASEDOF="Debian Slackware"
|
|||
DESCRIPTION="Compact, fast, and modern Linux operating system that combines sleek design with modular approach. With the ability to run directly from a USB flash drive without the need for installation, Slax is truly portable and fits easily in your pocket"
|
||||
HOMEPAGE="https://www.slax.org"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="latest"
|
||||
EDITIONS="slackware debian"
|
||||
|
||||
function releases_() {
|
||||
echo latest
|
||||
}
|
||||
|
||||
function editions_() {
|
||||
echo debian slackware
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local ISO=""
|
||||
local URL=""
|
||||
case ${EDITION} in
|
||||
debian)
|
||||
URL="https://ftp.fi.muni.cz/pub/linux/slax/Slax-12.x"
|
||||
ISO=$(web_pipe "${URL}/md5.txt" | grep '64bit-' | cut -d' ' -f3 | tail -n1);;
|
||||
slackware)
|
||||
URL="https://ftp.fi.muni.cz/pub/linux/slax/Slax-15.x"
|
||||
ISO=$(web_pipe "${URL}/md5.txt" | grep '64bit-' | cut -d' ' -f3 | tail -n1);;
|
||||
esac
|
||||
HASH=$(web_pipe "${URL}/md5.txt" | grep '64bit-' | cut -d' ' -f1 | tail -n1)
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
function specific_tweaks() {
|
||||
echo "boot=\"legacy\"" >> "${CONF_FILE}"
|
||||
}
|
||||
|
||||
|
|
|
|||
21
public/slint
21
public/slint
|
|
@ -5,5 +5,26 @@ BASEDOF="Slackware"
|
|||
DESCRIPTION="Easy-to-use, versatile, blind-friendly Linux distribution for 64-bit computers. Slint is based on Slackware and borrows tools from Salix"
|
||||
HOMEPAGE="https://slint.fr"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="15.0-5"
|
||||
|
||||
|
||||
function releases_() {
|
||||
echo "15.0-5"
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local MAJ_VER=""
|
||||
local ISO="slint64-${RELEASE}.iso"
|
||||
MAJ_VER="$(echo "${RELEASE}" | cut -d'-' -f 1)"
|
||||
local URL="https://slackware.uk/slint/x86_64/slint-${MAJ_VER}/iso"
|
||||
HASH=$(web_pipe "${URL}/${ISO}.sha256" | cut -d' ' -f4)
|
||||
echo "${URL}/${ISO}" "${HASH}"
|
||||
}
|
||||
|
||||
function specific_tweaks() {
|
||||
echo "disk_size=\"50G\"" >> "${CONF_FILE}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,27 @@ BASEDOF="-"
|
|||
DESCRIPTION="Simple, fast and low resource Linux OS for servers & desktops"
|
||||
HOMEPAGE="https://www.slitaz.org"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="preinit loram core64 core-5in1 core"
|
||||
|
||||
|
||||
function releases_() {
|
||||
#shellcheck disable=SC2046,SC2005
|
||||
echo $(web_pipe "https://mirror.slitaz.org/iso/rolling/" | grep "class='iso'" | cut -d"'" -f4 | cut -d'-' -f3- | grep iso | cut -d'.' -f1 | sort -u)
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local ISO="slitaz-rolling-${RELEASE}"
|
||||
local URL="http://mirror.slitaz.org/iso/rolling"
|
||||
HASH=$(web_pipe "${URL}/${ISO}.md5" | cut -d' ' -f1)
|
||||
echo "${URL}/${ISO}.iso ${HASH}"
|
||||
}
|
||||
|
||||
function specific_tweaks() {
|
||||
echo "boot=\"legacy\"" >> "${CONF_FILE}"
|
||||
echo "disk_size=\"4G\"" >> "${CONF_FILE}"
|
||||
echo "ram=\"512M\"" >> "${CONF_FILE}"
|
||||
}
|
||||
|
||||
|
|
|
|||
21
public/solus
21
public/solus
|
|
@ -5,5 +5,26 @@ BASEDOF="-"
|
|||
DESCRIPTION="Designed for home computing. Every tweak enables us to deliver a cohesive computing experience"
|
||||
HOMEPAGE="https://getsol.us"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES=""
|
||||
EDITIONS=""
|
||||
|
||||
function releases_() {
|
||||
#shellcheck disable=SC2046,SC2005
|
||||
echo $(web_pipe_json "https://downloads.getsol.us/isos/" | jq -r '.[].name[:-1]' | grep -E "^[0-9-]+$" | sort -u)
|
||||
}
|
||||
|
||||
function editions_() {
|
||||
#shellcheck disable=SC2046,SC2005
|
||||
echo $(web_pipe_json "https://downloads.getsol.us/isos/$(releases_ | tail -n1)/" | jq -r '.[].name | sub("Solus-(?<e>.*)-Release-.*"; "\(.e)")' | sort -u)
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local ISO="Solus-${EDITION}-Release-${RELEASE}.iso"
|
||||
local URL="https://downloads.getsol.us/isos/${RELEASE}"
|
||||
HASH=$(web_pipe "${URL}/${ISO}.sha256sum" | cut -d' ' -f1)
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,36 @@ BASEDOF="Debian"
|
|||
DESCRIPTION="Fast, lightweight and fully customizable operating system which offers several versions for different use cases"
|
||||
HOMEPAGE="https://sparkylinux.org"
|
||||
CREDENTIALS="-"
|
||||
RELEASES="7.6"
|
||||
EDITIONS="xfce minimalgui minimalcli mate lxqt kde"
|
||||
|
||||
|
||||
RELEASES=""
|
||||
EDITIONS=""
|
||||
|
||||
function releases_() {
|
||||
#shellcheck disable=SC2046,SC2005
|
||||
echo $(web_pipe "https://sparkylinux.org/download/stable/" | grep -E -o "sparkylinux-.*\.iso\"" | cut -d'-' -f2 | sort -ru)
|
||||
}
|
||||
|
||||
function editions_() {
|
||||
#shellcheck disable=SC2046,SC2005
|
||||
if [ -z "${RELEASE}" ]; then
|
||||
echo $(web_pipe "https://sparkylinux.org/download/stable/" | grep -E -o "sparkylinux-.*\.iso\"" | cut -d'-' -f4 | cut -d'.' -f1 | sort -u)
|
||||
else
|
||||
echo $(web_pipe "https://sparkylinux.org/download/stable/" | grep -E -o "sparkylinux-${RELEASE}-.*\.iso\"" | cut -d'-' -f4 | cut -d'.' -f1 | sort -u)
|
||||
fi
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local ISO=""
|
||||
local URL=""
|
||||
ISO="sparkylinux-${RELEASE}-x86_64-${EDITION}.iso"
|
||||
case ${EDITION} in
|
||||
minimalcli) URL="https://sourceforge.net/projects/sparkylinux/files/cli";;
|
||||
minimalgui) URL="https://sourceforge.net/projects/sparkylinux/files/base";;
|
||||
*) URL="https://sourceforge.net/projects/sparkylinux/files/${EDITION}";;
|
||||
esac
|
||||
HASH=$(web_pipe "${URL}/${ISO}.allsums.txt" | head -n 2 | grep 'iso' | cut -d' ' -f1)
|
||||
echo "${URL}/${ISO}" "${HASH}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,24 @@ BASEDOF="Debian"
|
|||
DESCRIPTION="Selection of Linux spins built from Debian GNU/Linux, with a focus on simplicity and out-of-the-box usability across all the major desktop environments"
|
||||
HOMEPAGE="https://spirallinux.github.io"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="latest"
|
||||
EDITIONS="XFCE Plasma Mate LXQt Gnome Cinnamon Builder Budgie"
|
||||
|
||||
function releases_() {
|
||||
echo latest
|
||||
}
|
||||
|
||||
function editions_() {
|
||||
echo Plasma XFCE Mate LXQt Gnome Budgie Cinnamon Builder
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local ISO="SpiralLinux_${EDITION}_12.231005_x86-64.iso"
|
||||
local URL="https://sourceforge.net/projects/spirallinux/files/12.231005"
|
||||
HASH=$(web_pipe 'https://sourceforge.net/projects/spirallinux/rss?path=/' | grep "${ISO}" | grep 'md5' | cut -d'<' -f3 | cut -d'>' -f2)
|
||||
echo "${URL}/${ISO}" "${HASH}"
|
||||
}
|
||||
|
||||
|
|
|
|||
21
public/tails
21
public/tails
|
|
@ -5,5 +5,26 @@ BASEDOF="Debian"
|
|||
DESCRIPTION="Portable operating system that protects against surveillance and censorship"
|
||||
HOMEPAGE="https://tails.net"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="stable"
|
||||
|
||||
|
||||
function releases_() {
|
||||
echo stable
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local JSON=""
|
||||
local HASH=""
|
||||
local URL=""
|
||||
JSON="$(web_pipe "https://tails.boum.org/install/v2/Tails/amd64/${RELEASE}/latest.json")"
|
||||
URL=$(echo "${JSON}" | jq -r '.installations[0]."installation-paths"[]|select(.type=="iso")|."target-files"[0].url')
|
||||
HASH=$(echo "${JSON}" | jq -r '.installations[0]."installation-paths"[]|select(.type=="iso")|."target-files"[0].sha256')
|
||||
echo "${URL} ${HASH}"
|
||||
}
|
||||
|
||||
function specific_tweaks() {
|
||||
echo "boot=\"legacy\"" >> "${CONF_FILE}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,34 @@ BASEDOF="-"
|
|||
DESCRIPTION="Highly modular based system with community build extensions"
|
||||
HOMEPAGE="http://www.tinycorelinux.net"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="15 14"
|
||||
EDITIONS="TinyCorePure64 TinyCore CorePure64 CorePlus Core"
|
||||
|
||||
function releases_() {
|
||||
echo 15 14
|
||||
}
|
||||
|
||||
function editions_() {
|
||||
echo Core TinyCore CorePlus CorePure64 TinyCorePure64
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local ARCH="x86"
|
||||
local HASH=""
|
||||
local ISO="${EDITION}-${RELEASE}.0.iso"
|
||||
case "${EDITION}" in
|
||||
*Pure*) ARCH+="_64";;
|
||||
esac
|
||||
# tinycorelinux.net not stable enough
|
||||
#local URL="http://www.tinycorelinux.net/${RELEASE}.x/${ARCH}/release"
|
||||
local URL="https://distro.ibiblio.org/tinycorelinux/${RELEASE}.x/${ARCH}/release"
|
||||
HASH=$(web_pipe "${URL}/${ISO}.md5.txt" | cut -d' ' -f1)
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
function specific_tweaks() {
|
||||
echo "boot=\"legacy\"" >> "${CONF_FILE}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,30 @@ BASEDOF="Ubuntu"
|
|||
DESCRIPTION="Fully free operating system for home users, small enterprises and educational centers"
|
||||
HOMEPAGE="https://trisquel.info"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="11.0 10.0.1"
|
||||
EDITIONS="sugar mate lxde kde"
|
||||
|
||||
function releases_() {
|
||||
echo 11.0 10.0.1
|
||||
}
|
||||
|
||||
function editions_() {
|
||||
echo mate lxde kde sugar
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local ISO=""
|
||||
local URL="https://mirrors.ocf.berkeley.edu/trisquel-images"
|
||||
case ${EDITION} in
|
||||
mate) ISO="trisquel_${RELEASE}_amd64.iso";;
|
||||
lxde) ISO="trisquel-mini_${RELEASE}_amd64.iso";;
|
||||
kde) ISO="triskel_${RELEASE}_amd64.iso";;
|
||||
sugar) ISO="trisquel-sugar_${RELEASE}_amd64.iso";;
|
||||
esac
|
||||
HASH=$(web_pipe "${URL}/${ISO}.sha1" | grep "${ISO}" | cut -d' ' -f1)
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,29 @@ BASEDOF="FreeBSD"
|
|||
DESCRIPTION="World’s most popular storage OS because it gives you the power to build your own professional-grade storage system to use in a variety of data-intensive applications without any software costs"
|
||||
HOMEPAGE="https://www.truenas.com/truenas-core"
|
||||
CREDENTIALS="-"
|
||||
GUEST="sugar mate lxde kde"
|
||||
|
||||
RELEASES="13"
|
||||
|
||||
|
||||
function releases_() {
|
||||
echo 13
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local ISO=""
|
||||
local URL=""
|
||||
local DLINFO="https://www.truenas.com/download-truenas-core/"
|
||||
URL=$(web_pipe "${DLINFO}" | grep -o "\"https://.*${RELEASE}.*\.iso\"" | cut -d'"' -f 2)
|
||||
HASH=$(web_pipe "${URL}".sha256 | cut -d' ' -f1)
|
||||
echo "${URL} ${HASH}"
|
||||
}
|
||||
|
||||
function specific_tweaks() {
|
||||
echo "boot=\"legacy\"" >> "${CONF_FILE}"
|
||||
# the rest is non-functional
|
||||
# echo "bootdrive_size=\"5G\"" >> "${CONF_FILE}" # boot drive
|
||||
# echo "1stdrive_size=\"20G\"" >> "${CONF_FILE}" # for testing
|
||||
# echo "2nddrive_size=\"20G\"" >> "${CONF_FILE}" # again, for testing
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,30 @@ BASEDOF="Debian"
|
|||
DESCRIPTION="Open Source Hyperconverged Infrastructure (HCI) solution. In addition to powerful scale-out storage capabilities, SCALE adds Linux Containers and VMs (KVM) so apps run closer to data"
|
||||
HOMEPAGE="https://www.truenas.com/truenas-scale"
|
||||
CREDENTIALS="-"
|
||||
GUEST="sugar mate lxde kde"
|
||||
|
||||
RELEASES="24"
|
||||
|
||||
|
||||
function releases_() {
|
||||
echo 24
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local ISO=""
|
||||
local URL=""
|
||||
local DLINFO="https://www.truenas.com/download-truenas-scale/"
|
||||
URL=$(web_pipe "${DLINFO}" | grep -o "\"https://.*${RELEASE}.*\.iso\"" | cut -d'"' -f 2)
|
||||
HASH=$(web_pipe "${URL}.sha256" | cut -d' ' -f1)
|
||||
echo "${URL} ${HASH}"
|
||||
}
|
||||
|
||||
function specific_tweaks() {
|
||||
echo "boot=\"legacy\"" >> "${CONF_FILE}"
|
||||
# the rest is non-functional
|
||||
# echo "bootdrive_size=\"5G\"" >> "${CONF_FILE}" # boot drive
|
||||
# echo "1stdrive_size=\"20G\"" >> "${CONF_FILE}" # for testing
|
||||
# echo "2nddrive_size=\"20G\"" >> "${CONF_FILE}" # again, for testing
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,21 @@ BASEDOF="Ubuntu"
|
|||
DESCRIPTION="KDE Ubuntu LTS designed to go with their Linux hardware"
|
||||
HOMEPAGE="https://www.tuxedocomputers.com"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="current"
|
||||
|
||||
|
||||
function releases_() {
|
||||
echo current
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local ISO=""
|
||||
local URL="https://os.tuxedocomputers.com"
|
||||
ISO="$(web_pipe "https://os.tuxedocomputers.com/" | grep -m 1 current.iso | cut -d '=' -f 4 | cut -d '"' -f 2)"
|
||||
HASH="$(web_pipe "https://os.tuxedocomputers.com/checksums/${ISO}.sha256" | cut -d ' ' -f 1)"
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,80 @@ BASEDOF="Debian"
|
|||
DESCRIPTION="Complete desktop Linux operating system, freely available with both community and professional support"
|
||||
HOMEPAGE="https://ubuntu.com"
|
||||
CREDENTIALS="-"
|
||||
GUEST="sugar mate lxde kde"
|
||||
|
||||
RELEASES="daily-live 24.10 24.04 22.04 20.04 18.04 16.04 14.04"
|
||||
|
||||
|
||||
function releases_() {
|
||||
local VERSION_DATA=""
|
||||
local SUPPORTED_VERSIONS=()
|
||||
VERSION_DATA="$(IFS=$'\n' web_pipe https://api.launchpad.net/devel/ubuntu/series | jq -r '.entries[]')"
|
||||
# shellcheck disable=SC2207
|
||||
SUPPORTED_VERSIONS=($(IFS=$'\n' jq -r 'select(.status=="Supported" or .status=="Current Stable Release") | .version' <<<"${VERSION_DATA}" | sort))
|
||||
case "${OS}" in
|
||||
ubuntu)
|
||||
echo "${SUPPORTED_VERSIONS[@]}" daily-live;;
|
||||
kubuntu|lubuntu|ubuntukylin|ubuntu-mate|ubuntustudio|xubuntu)
|
||||
# after 16.04
|
||||
echo "${SUPPORTED_VERSIONS[@]:1}" daily-live;;
|
||||
ubuntu-budgie)
|
||||
# after 18.04
|
||||
echo "${SUPPORTED_VERSIONS[@]:2}" daily-live;;
|
||||
edubuntu|ubuntu-unity|ubuntucinnamon)
|
||||
# after 23.10
|
||||
echo "${SUPPORTED_VERSIONS[@]:5}" daily-live;;
|
||||
esac
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local ISO=""
|
||||
local HASH=""
|
||||
local URL=""
|
||||
local DATA=""
|
||||
|
||||
if [[ "${RELEASE}" == "daily"* ]] && [ "${OS}" == "ubuntustudio" ]; then
|
||||
# Ubuntu Studio daily-live images are in the dvd directory
|
||||
RELEASE="dvd"
|
||||
fi
|
||||
if [[ "${RELEASE}" == "jammy-daily" ]]; then
|
||||
if [[ "${OS}" == "ubuntustudio" ]]; then
|
||||
URL="https://cdimage.ubuntu.com/${OS}/jammy/dvd/current"
|
||||
else
|
||||
URL="https://cdimage.ubuntu.com/${OS}/jammy/daily-live/current"
|
||||
fi
|
||||
VM_PATH="${OS}-jammy-live"
|
||||
elif [[ "${RELEASE}" == "daily"* ]] || [ "${RELEASE}" == "dvd" ]; then
|
||||
URL="https://cdimage.ubuntu.com/${OS}/${RELEASE}/current"
|
||||
VM_PATH="${OS}-${RELEASE}"
|
||||
elif [ "${OS}" == "ubuntu" ]; then
|
||||
URL="https://releases.ubuntu.com/${RELEASE}"
|
||||
else
|
||||
URL="https://cdimage.ubuntu.com/${OS}/releases/${RELEASE}/release"
|
||||
fi
|
||||
if web_check "${URL}/SHA256SUMS"; then
|
||||
DATA=$(web_pipe "${URL}/SHA256SUMS" | grep 'desktop\|dvd\|install' | grep amd64 | grep iso | grep -v "+mac")
|
||||
ISO=$(cut -d'*' -f2 <<<"${DATA}" | sed '1q;d')
|
||||
HASH=$(cut -d' ' -f1 <<<"${DATA}" | sed '1q;d')
|
||||
else
|
||||
DATA=$(web_pipe "${URL}/MD5SUMS" | grep 'desktop\|dvd\|install' | grep amd64 | grep iso | grep -v "+mac")
|
||||
ISO=$(cut -d'*' -f2 <<<"${DATA}")
|
||||
HASH=$(cut -d' ' -f1 <<<"${DATA}")
|
||||
fi
|
||||
if [ -z "${ISO}" ] || [ -z "${HASH}" ]; then
|
||||
echo "${PRETTY} ${RELEASE} is currently unavailable. Please select other OS/Release combination"
|
||||
exit 1
|
||||
fi
|
||||
if [[ "${RELEASE}" == "daily"* ]] || [ "${RELEASE}" == "dvd" ]; then
|
||||
zsync_get "${URL}/${ISO}" "${VM_PATH}" "${OS}-devel.iso"
|
||||
make_vm_config "${OS}-devel.iso"
|
||||
elif [[ "${RELEASE}" == "jammy-daily" ]]; then
|
||||
zsync_get "${URL}/${ISO}" "${VM_PATH}" "${OS}-jammy-live.iso"
|
||||
make_vm_config "${OS}-jammy-live.iso"
|
||||
else
|
||||
web_get "${URL}/${ISO}" "${VM_PATH}"
|
||||
check_hash "${ISO}" "${HASH}"
|
||||
make_vm_config "${ISO}"
|
||||
fi
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,60 @@ BASEDOF="Debian"
|
|||
DESCRIPTION="Brings economic and technical scalability to your datacentre, public or private. Whether you want to deploy an OpenStack cloud, a Kubernetes cluster or a 50,000-node render farm, Ubuntu Server delivers the best value scale-out performance available"
|
||||
HOMEPAGE="https://ubuntu.com/server"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="daily-live 24.10 24.04 22.04 20.04 18.04 16.04 14.04"
|
||||
|
||||
|
||||
function releases_() {
|
||||
local ALL_VERSIONS=()
|
||||
# shellcheck disable=SC2207
|
||||
ALL_VERSIONS=($(IFS=$'\n' web_pipe http://releases.ubuntu.com/streams/v1/com.ubuntu.releases:ubuntu-server.json | jq -r '.products[] | select(.arch=="amd64") | .version' | sort -rV))
|
||||
echo daily-live "${ALL_VERSIONS[@]}"
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local ISO=""
|
||||
local NAME="live-server"
|
||||
local URL=""
|
||||
|
||||
if [[ "${RELEASE}" == "daily"* ]]; then
|
||||
URL="https://cdimage.ubuntu.com/${OS}/${RELEASE}/current"
|
||||
else
|
||||
URL="https://releases.ubuntu.com/${RELEASE}"
|
||||
fi
|
||||
|
||||
case "${RELEASE}" in
|
||||
14*|16*) NAME="server";;
|
||||
esac
|
||||
|
||||
if web_check "${URL}/SHA256SUMS"; then
|
||||
DATA=$(web_pipe "${URL}/SHA256SUMS" | grep "${NAME}" | grep amd64 | grep iso)
|
||||
ISO=$(cut -d'*' -f2 <<<"${DATA}")
|
||||
HASH=$(cut -d' ' -f1 <<<"${DATA}")
|
||||
else
|
||||
DATA=$(web_pipe "${URL}/MD5SUMS" | grep "${NAME}" | grep amd64 | grep iso)
|
||||
ISO=$(cut -d' ' -f3 <<<"${DATA}")
|
||||
HASH=$(cut -d' ' -f1 <<<"${DATA}")
|
||||
fi
|
||||
if [[ "${RELEASE}" == "daily"* ]] || [ "${RELEASE}" == "dvd" ]; then
|
||||
zsync_get "${URL}/${ISO}" "${VM_PATH}" "${OS}-devel.iso"
|
||||
make_vm_config "${OS}-devel.iso"
|
||||
else
|
||||
web_get "${URL}/${ISO}" "${VM_PATH}"
|
||||
check_hash "${ISO}" "${HASH}"
|
||||
make_vm_config "${ISO}"
|
||||
fi
|
||||
}
|
||||
|
||||
function specific_tweaks() {
|
||||
# 22.04+ fails on LVM build if disk size is < 10G
|
||||
# 22.04.1 fails on auto-install if TPM is disabled
|
||||
echo "disk_size=\"10G\"" >> "${CONF_FILE}"
|
||||
echo "ram=\"4G\"" >> "${CONF_FILE}"
|
||||
if [[ "${RELEASE}" == *"22.04"* ]]; then
|
||||
echo "tpm=\"on\"" >> "${CONF_FILE}"
|
||||
fi
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,28 @@ BASEDOF="Ubuntu"
|
|||
DESCRIPTION="Designed to be a reliable and productive operating system for your daily work"
|
||||
HOMEPAGE="https://vanillaos.org"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="22.10-r8 22.10-r7.5 22.10-r7 22.10-r6 22.10-r5 22.10-r4 22.10-r3 22.10-r2 22.10-r1 22.10 2.0"
|
||||
|
||||
|
||||
function releases_() {
|
||||
#shellcheck disable=SC2046,SC2005
|
||||
echo $(web_pipe "https://api.github.com/repos/Vanilla-OS/live-iso/releases" | grep 'download_url' | cut -d'/' -f8 | sort -ru)
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local HASH_URL=""
|
||||
local ISO=""
|
||||
ISO=$(web_pipe "https://api.github.com/repos/Vanilla-OS/live-iso/releases" | grep 'download_url' | grep "${RELEASE}" | head -n 1 | cut -d'"' -f4)
|
||||
HASH_URL="${ISO//.iso/.sha256.txt}"
|
||||
HASH=$(web_pipe "${HASH_URL}" | cut -d' ' -f1)
|
||||
echo "${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
function specific_tweaks() {
|
||||
## Minimum is 50G for abroot, but a 64GB is allocated to give some headroom
|
||||
echo "disk_size=\"64G\"" >> "${CONF_FILE}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,20 @@ BASEDOF="Void"
|
|||
DESCRIPTION="Tool to create bootable USB drive for ISO/WIM/IMG/VHD(x)/EFI files. "
|
||||
HOMEPAGE="https://www.ventoy.net"
|
||||
CREDENTIALS="-"
|
||||
RELEASES="1.1.02 1.1.01 1.1.00 1.0.99 1.0.98 1.0.97 1.0.96 1.0.95 1.0.94 1.0.93 1.0.91 1.0.90 1.0.89 1.0.88 1.0.87 1.0.86 1.0.85 1.0.84"
|
||||
|
||||
|
||||
RELEASES="1.1.05 1.1.04 1.1.02 1.1.01 1.1.00 1.0.99 1.0.98 1.0.97 1.0.96 1.0.95 1.0.94 1.0.93 1.0.91 1.0.90 1.0.89 1.0.88 1.0.87 1.0.86 1.0.85"
|
||||
|
||||
|
||||
function releases_() {
|
||||
echo $(web_pipe "https://sourceforge.net/projects/ventoy/rss?path=/" | grep 'title><!\[CDATA' | cut -d'[' -f3 | cut -d']' -f1 | grep '.iso' | cut -d'-' -f2)
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local ISO="ventoy-${RELEASE}-livecd.iso"
|
||||
local URL="https://github.com/ventoy/Ventoy/releases/download/v${RELEASE}"
|
||||
HASH="$(wget -q -O- "${URL}/sha256.txt" | grep "${ISO}" | cut -d' ' -f4)"
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
|
|
|
|||
27
public/void
27
public/void
|
|
@ -5,5 +5,32 @@ BASEDOF="-"
|
|||
DESCRIPTION="General purpose operating system. Its package system allows you to quickly install, update and remove software; software is provided in binary packages or can be built directly from sources"
|
||||
HOMEPAGE="https://voidlinux.org"
|
||||
CREDENTIALS="anon:voidlinux root:voidlinux"
|
||||
|
||||
|
||||
RELEASES="20250202 20240314 20230628"
|
||||
EDITIONS="xfce-musl xfce-glibc musl glibc"
|
||||
|
||||
function releases_() {
|
||||
#shellcheck disable=SC2046,SC2005
|
||||
echo $(web_pipe "https://repo-default.voidlinux.org/live/" | grep "^<a href=\"2" | cut -d'"' -f2 | tr -d '/' | sort -ru | head -n 3)
|
||||
}
|
||||
|
||||
function editions_() {
|
||||
echo glibc musl xfce-glibc xfce-musl
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local DATE=""
|
||||
local HASH=""
|
||||
local ISO=""
|
||||
local URL="https://repo-default.voidlinux.org/live"
|
||||
case ${EDITION} in
|
||||
glibc) ISO="void-live-x86_64-${RELEASE}-base.iso";;
|
||||
musl) ISO="void-live-x86_64-musl-${RELEASE}-base.iso";;
|
||||
xfce-glibc) ISO="void-live-x86_64-${RELEASE}-xfce.iso";;
|
||||
xfce-musl) ISO="void-live-x86_64-musl-${RELEASE}-xfce.iso";;
|
||||
esac
|
||||
HASH="$(web_pipe "${URL}/sha256sum.txt" | grep "${ISO}" | cut -d' ' -f4)"
|
||||
echo "${URL}/${RELEASE}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,24 @@ BASEDOF="Void"
|
|||
DESCRIPTION="Pre-configured, secure systemd-free Plasma desktop with focus on convenience, performance and simplicity. Based on the excellent Void Linux"
|
||||
HOMEPAGE="https://vxlinux.org"
|
||||
CREDENTIALS="-"
|
||||
|
||||
|
||||
RELEASES="6.1.5"
|
||||
|
||||
|
||||
function releases_() {
|
||||
#shellcheck disable=SC2046,SC2005
|
||||
echo $(web_pipe "https://github.com/VX-Linux/main/releases/latest" | grep -o -e 'releases/tag/[[:digit:]]\+\.[[:digit:]]\+\.[[:digit:]]' | sort -u | cut -d'/' -f 3)
|
||||
}
|
||||
|
||||
function get_() {
|
||||
local HASH=""
|
||||
local ISO="vx-${RELEASE}.iso"
|
||||
# Newer ISOs are only on mega.nz
|
||||
# TODO Needs to be checked manually? without mega client?
|
||||
# local URL="https://mega.nz/folder/SxwFTCTZ#s_qwDWrSWr7ZSTBVJC9Q_g/file"
|
||||
local URL="https://github.com/VX-Linux/main/releases/download/${RELEASE}"
|
||||
HASH=$(web_pipe "${URL}/vx-${RELEASE}.md5" | cut -d' ' -f1)
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
|
|
|
|||
618
public/windows
618
public/windows
|
|
@ -5,5 +5,623 @@ BASEDOF="-"
|
|||
DESCRIPTION="Whether you’re gaming, studying, running a business, or running a household, Windows helps you get it done"
|
||||
HOMEPAGE="https://www.microsoft.com/en-us/windows"
|
||||
CREDENTIALS="-"
|
||||
GUEST="xfce-musl xfce-glibc musl glibc"
|
||||
|
||||
RELEASES="11 10"
|
||||
|
||||
|
||||
function releases_() {
|
||||
echo 11 10
|
||||
}
|
||||
|
||||
function languages_windows() {
|
||||
I18NS=("Arabic" "Brazilian Portuguese" "Bulgarian" "Chinese (Simplified)" "Chinese (Traditional)" "Croatian" "Czech" "Danish" "Dutch" \
|
||||
"English (United States)" "English International" "Estonian" "Finnish" "French" "French Canadian" "German" "Greek" "Hebrew" "Hungarian" \
|
||||
"Italian" "Japanese" "Korean" "Latvian" "Lithuanian" "Norwegian" "Polish" "Portuguese" "Romanian" "Russian" "Serbian Latin" "Slovak" \
|
||||
"Slovenian" "Spanish" "Spanish (Mexico)" "Swedish" "Thai" "Turkish" "Ukrainian")
|
||||
}
|
||||
|
||||
function unattended_windows() {
|
||||
mkdir -p "${1}/unattended" 2>/dev/null
|
||||
|
||||
cat << 'EOF' > "${1}/unattended/autounattend.xml"
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<unattend xmlns="urn:schemas-microsoft-com:unattend"
|
||||
xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<!--
|
||||
For documentation on components:
|
||||
https://docs.microsoft.com/en-us/windows-hardware/customize/desktop/unattend/
|
||||
-->
|
||||
<settings pass="offlineServicing">
|
||||
<component name="Microsoft-Windows-LUA-Settings" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<EnableLUA>false</EnableLUA>
|
||||
</component>
|
||||
<component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<ComputerName>*</ComputerName>
|
||||
</component>
|
||||
</settings>
|
||||
|
||||
<settings pass="generalize">
|
||||
<component name="Microsoft-Windows-PnPSysprep" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
|
||||
<PersistAllDeviceInstalls>true</PersistAllDeviceInstalls>
|
||||
</component>
|
||||
<component name="Microsoft-Windows-Security-SPP" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<SkipRearm>1</SkipRearm>
|
||||
</component>
|
||||
</settings>
|
||||
|
||||
<settings pass="specialize">
|
||||
<component name="Microsoft-Windows-Security-SPP-UX" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<SkipAutoActivation>true</SkipAutoActivation>
|
||||
</component>
|
||||
<component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<ComputerName>*</ComputerName>
|
||||
<OEMInformation>
|
||||
<Manufacturer>Quickemu Project</Manufacturer>
|
||||
<Model>Quickemu</Model>
|
||||
<SupportHours>24/7</SupportHours>
|
||||
<SupportPhone></SupportPhone>
|
||||
<SupportProvider>Quickemu Project</SupportProvider>
|
||||
<SupportURL>https://github.com/quickemu-project/quickemu/issues</SupportURL>
|
||||
</OEMInformation>
|
||||
<OEMName>Quickemu Project</OEMName>
|
||||
<ProductKey>W269N-WFGWX-YVC9B-4J6C9-T83GX</ProductKey>
|
||||
</component>
|
||||
<component name="Microsoft-Windows-SQMApi" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<CEIPEnabled>0</CEIPEnabled>
|
||||
</component>
|
||||
</settings>
|
||||
|
||||
<settings pass="windowsPE">
|
||||
<component name="Microsoft-Windows-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<Diagnostics>
|
||||
<OptIn>false</OptIn>
|
||||
</Diagnostics>
|
||||
<DiskConfiguration>
|
||||
<Disk wcm:action="add">
|
||||
<DiskID>0</DiskID>
|
||||
<WillWipeDisk>true</WillWipeDisk>
|
||||
<CreatePartitions>
|
||||
<!-- Windows RE Tools partition -->
|
||||
<CreatePartition wcm:action="add">
|
||||
<Order>1</Order>
|
||||
<Type>Primary</Type>
|
||||
<Size>256</Size>
|
||||
</CreatePartition>
|
||||
<!-- System partition (ESP) -->
|
||||
<CreatePartition wcm:action="add">
|
||||
<Order>2</Order>
|
||||
<Type>EFI</Type>
|
||||
<Size>128</Size>
|
||||
</CreatePartition>
|
||||
<!-- Microsoft reserved partition (MSR) -->
|
||||
<CreatePartition wcm:action="add">
|
||||
<Order>3</Order>
|
||||
<Type>MSR</Type>
|
||||
<Size>128</Size>
|
||||
</CreatePartition>
|
||||
<!-- Windows partition -->
|
||||
<CreatePartition wcm:action="add">
|
||||
<Order>4</Order>
|
||||
<Type>Primary</Type>
|
||||
<Extend>true</Extend>
|
||||
</CreatePartition>
|
||||
</CreatePartitions>
|
||||
<ModifyPartitions>
|
||||
<!-- Windows RE Tools partition -->
|
||||
<ModifyPartition wcm:action="add">
|
||||
<Order>1</Order>
|
||||
<PartitionID>1</PartitionID>
|
||||
<Label>WINRE</Label>
|
||||
<Format>NTFS</Format>
|
||||
<TypeID>DE94BBA4-06D1-4D40-A16A-BFD50179D6AC</TypeID>
|
||||
</ModifyPartition>
|
||||
<!-- System partition (ESP) -->
|
||||
<ModifyPartition wcm:action="add">
|
||||
<Order>2</Order>
|
||||
<PartitionID>2</PartitionID>
|
||||
<Label>System</Label>
|
||||
<Format>FAT32</Format>
|
||||
</ModifyPartition>
|
||||
<!-- MSR partition does not need to be modified -->
|
||||
<ModifyPartition wcm:action="add">
|
||||
<Order>3</Order>
|
||||
<PartitionID>3</PartitionID>
|
||||
</ModifyPartition>
|
||||
<!-- Windows partition -->
|
||||
<ModifyPartition wcm:action="add">
|
||||
<Order>4</Order>
|
||||
<PartitionID>4</PartitionID>
|
||||
<Label>Windows</Label>
|
||||
<Letter>C</Letter>
|
||||
<Format>NTFS</Format>
|
||||
</ModifyPartition>
|
||||
</ModifyPartitions>
|
||||
</Disk>
|
||||
</DiskConfiguration>
|
||||
<DynamicUpdate>
|
||||
<Enable>true</Enable>
|
||||
<WillShowUI>Never</WillShowUI>
|
||||
</DynamicUpdate>
|
||||
<ImageInstall>
|
||||
<OSImage>
|
||||
<InstallTo>
|
||||
<DiskID>0</DiskID>
|
||||
<PartitionID>4</PartitionID>
|
||||
</InstallTo>
|
||||
<InstallToAvailablePartition>false</InstallToAvailablePartition>
|
||||
</OSImage>
|
||||
</ImageInstall>
|
||||
<RunSynchronous>
|
||||
<RunSynchronousCommand wcm:action="add">
|
||||
<Order>1</Order>
|
||||
<Path>reg add HKLM\System\Setup\LabConfig /v BypassCPUCheck /t REG_DWORD /d 0x00000001 /f</Path>
|
||||
</RunSynchronousCommand>
|
||||
<RunSynchronousCommand wcm:action="add">
|
||||
<Order>2</Order>
|
||||
<Path>reg add HKLM\System\Setup\LabConfig /v BypassRAMCheck /t REG_DWORD /d 0x00000001 /f</Path>
|
||||
</RunSynchronousCommand>
|
||||
<RunSynchronousCommand wcm:action="add">
|
||||
<Order>3</Order>
|
||||
<Path>reg add HKLM\System\Setup\LabConfig /v BypassSecureBootCheck /t REG_DWORD /d 0x00000001 /f</Path>
|
||||
</RunSynchronousCommand>
|
||||
<RunSynchronousCommand wcm:action="add">
|
||||
<Order>4</Order>
|
||||
<Path>reg add HKLM\System\Setup\LabConfig /v BypassTPMCheck /t REG_DWORD /d 0x00000001 /f</Path>
|
||||
</RunSynchronousCommand>
|
||||
</RunSynchronous>
|
||||
<UpgradeData>
|
||||
<Upgrade>false</Upgrade>
|
||||
<WillShowUI>Never</WillShowUI>
|
||||
</UpgradeData>
|
||||
<UserData>
|
||||
<AcceptEula>true</AcceptEula>
|
||||
<FullName>Quickemu</FullName>
|
||||
<Organization>Quickemu Project</Organization>
|
||||
<!-- https://docs.microsoft.com/en-us/windows-server/get-started/kms-client-activation-keys -->
|
||||
<ProductKey>
|
||||
<Key>W269N-WFGWX-YVC9B-4J6C9-T83GX</Key>
|
||||
<WillShowUI>Never</WillShowUI>
|
||||
</ProductKey>
|
||||
</UserData>
|
||||
</component>
|
||||
|
||||
<component name="Microsoft-Windows-PnpCustomizationsWinPE" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" processorArchitecture="amd64" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<!--
|
||||
This makes the VirtIO drivers available to Windows, assuming that
|
||||
the VirtIO driver disk is available as drive E:
|
||||
https://github.com/virtio-win/virtio-win-pkg-scripts/blob/master/README.md
|
||||
-->
|
||||
<DriverPaths>
|
||||
<PathAndCredentials wcm:action="add" wcm:keyValue="1">
|
||||
<Path>E:\qemufwcfg\w10\amd64</Path>
|
||||
</PathAndCredentials>
|
||||
<PathAndCredentials wcm:action="add" wcm:keyValue="2">
|
||||
<Path>E:\vioinput\w10\amd64</Path>
|
||||
</PathAndCredentials>
|
||||
<PathAndCredentials wcm:action="add" wcm:keyValue="3">
|
||||
<Path>E:\vioscsi\w10\amd64</Path>
|
||||
</PathAndCredentials>
|
||||
<PathAndCredentials wcm:action="add" wcm:keyValue="4">
|
||||
<Path>E:\viostor\w10\amd64</Path>
|
||||
</PathAndCredentials>
|
||||
<PathAndCredentials wcm:action="add" wcm:keyValue="5">
|
||||
<Path>E:\vioserial\w10\amd64</Path>
|
||||
</PathAndCredentials>
|
||||
<PathAndCredentials wcm:action="add" wcm:keyValue="6">
|
||||
<Path>E:\qxldod\w10\amd64</Path>
|
||||
</PathAndCredentials>
|
||||
<PathAndCredentials wcm:action="add" wcm:keyValue="7">
|
||||
<Path>E:\amd64\w10</Path>
|
||||
</PathAndCredentials>
|
||||
<PathAndCredentials wcm:action="add" wcm:keyValue="8">
|
||||
<Path>E:\viogpudo\w10\amd64</Path>
|
||||
</PathAndCredentials>
|
||||
<PathAndCredentials wcm:action="add" wcm:keyValue="9">
|
||||
<Path>E:\viorng\w10\amd64</Path>
|
||||
</PathAndCredentials>
|
||||
<PathAndCredentials wcm:action="add" wcm:keyValue="10">
|
||||
<Path>E:\NetKVM\w10\amd64</Path>
|
||||
</PathAndCredentials>
|
||||
<PathAndCredentials wcm:action="add" wcm:keyValue="11">
|
||||
<Path>E:\viofs\w10\amd64</Path>
|
||||
</PathAndCredentials>
|
||||
<PathAndCredentials wcm:action="add" wcm:keyValue="12">
|
||||
<Path>E:\Balloon\w10\amd64</Path>
|
||||
</PathAndCredentials>
|
||||
</DriverPaths>
|
||||
</component>
|
||||
</settings>
|
||||
|
||||
<settings pass="oobeSystem">
|
||||
<component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<AutoLogon>
|
||||
<Password>
|
||||
<Value>quickemu</Value>
|
||||
<PlainText>true</PlainText>
|
||||
</Password>
|
||||
<Enabled>true</Enabled>
|
||||
<Username>Quickemu</Username>
|
||||
</AutoLogon>
|
||||
<DisableAutoDaylightTimeSet>false</DisableAutoDaylightTimeSet>
|
||||
<OOBE>
|
||||
<HideEULAPage>true</HideEULAPage>
|
||||
<HideLocalAccountScreen>true</HideLocalAccountScreen>
|
||||
<HideOEMRegistrationScreen>true</HideOEMRegistrationScreen>
|
||||
<HideOnlineAccountScreens>true</HideOnlineAccountScreens>
|
||||
<HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>
|
||||
<NetworkLocation>Home</NetworkLocation>
|
||||
<ProtectYourPC>3</ProtectYourPC>
|
||||
<SkipUserOOBE>true</SkipUserOOBE>
|
||||
<SkipMachineOOBE>true</SkipMachineOOBE>
|
||||
<VMModeOptimizations>
|
||||
<SkipWinREInitialization>true</SkipWinREInitialization>
|
||||
</VMModeOptimizations>
|
||||
</OOBE>
|
||||
<UserAccounts>
|
||||
<LocalAccounts>
|
||||
<LocalAccount wcm:action="add">
|
||||
<Password>
|
||||
<Value>quickemu</Value>
|
||||
<PlainText>true</PlainText>
|
||||
</Password>
|
||||
<Description>Quickemu</Description>
|
||||
<DisplayName>Quickemu</DisplayName>
|
||||
<Group>Administrators</Group>
|
||||
<Name>Quickemu</Name>
|
||||
</LocalAccount>
|
||||
</LocalAccounts>
|
||||
</UserAccounts>
|
||||
<RegisteredOrganization>Quickemu Project</RegisteredOrganization>
|
||||
<RegisteredOwner>Quickemu</RegisteredOwner>
|
||||
<FirstLogonCommands>
|
||||
<SynchronousCommand wcm:action="add">
|
||||
<CommandLine>msiexec /i E:\guest-agent\qemu-ga-x86_64.msi /quiet /passive /qn</CommandLine>
|
||||
<Description>Install Virtio Guest Agent</Description>
|
||||
<Order>1</Order>
|
||||
</SynchronousCommand>
|
||||
<SynchronousCommand wcm:action="add">
|
||||
<CommandLine>msiexec /i F:\spice-webdavd-x64-latest.msi /quiet /passive /qn</CommandLine>
|
||||
<Description>Install spice-webdavd file sharing agent</Description>
|
||||
<Order>2</Order>
|
||||
</SynchronousCommand>
|
||||
<SynchronousCommand wcm:action="add">
|
||||
<CommandLine>msiexec /i F:\UsbDk_1.0.22_x64.msi /quiet /passive /qn</CommandLine>
|
||||
<Description>Install usbdk USB sharing agent</Description>
|
||||
<Order>3</Order>
|
||||
</SynchronousCommand>
|
||||
<SynchronousCommand wcm:action="add">
|
||||
<CommandLine>msiexec /i F:\spice-vdagent-x64-0.10.0.msi /quiet /passive /qn</CommandLine>
|
||||
<Description>Install spice-vdagent SPICE agent</Description>
|
||||
<Order>4</Order>
|
||||
</SynchronousCommand>
|
||||
<SynchronousCommand wcm:action="add">
|
||||
<CommandLine>Cmd /c POWERCFG -H OFF</CommandLine>
|
||||
<Description>Disable Hibernation</Description>
|
||||
<Order>5</Order>
|
||||
</SynchronousCommand>
|
||||
</FirstLogonCommands>
|
||||
</component>
|
||||
</settings>
|
||||
</unattend>
|
||||
EOF
|
||||
|
||||
|
||||
echo "Downloading Spice drivers..."
|
||||
web_get https://www.spice-space.org/download/windows/spice-webdavd/spice-webdavd-x64-latest.msi "${VM_PATH}/unattended"
|
||||
web_get https://www.spice-space.org/download/windows/vdagent/vdagent-win-0.10.0/spice-vdagent-x64-0.10.0.msi "${VM_PATH}/unattended"
|
||||
web_get https://www.spice-space.org/download/windows/usbdk/UsbDk_1.0.22_x64.msi "${VM_PATH}/unattended"
|
||||
|
||||
echo "Making unattended.iso"
|
||||
mkisofs -quiet -l -o "${VM_PATH}/unattended.iso" "${VM_PATH}/unattended/"
|
||||
}
|
||||
|
||||
function handle_curl_error() {
|
||||
local error_code="$1"
|
||||
local fatal_error_action=2
|
||||
case "$error_code" in
|
||||
6)
|
||||
echo "Failed to resolve Microsoft servers! Is there an Internet connection? Exiting..."
|
||||
return "$fatal_error_action"
|
||||
;;
|
||||
7)
|
||||
echo "Failed to contact Microsoft servers! Is there an Internet connection or is the server down?"
|
||||
;;
|
||||
8)
|
||||
echo "Microsoft servers returned a malformed HTTP response!"
|
||||
;;
|
||||
22)
|
||||
echo "Microsoft servers returned a failing HTTP status code!"
|
||||
;;
|
||||
23)
|
||||
echo "Failed at writing Windows media to disk! Out of disk space or permission error? Exiting..."
|
||||
return "$fatal_error_action"
|
||||
;;
|
||||
26)
|
||||
echo "Ran out of memory during download! Exiting..."
|
||||
return "$fatal_error_action"
|
||||
;;
|
||||
36)
|
||||
echo "Failed to continue earlier download!"
|
||||
;;
|
||||
63)
|
||||
echo "Microsoft servers returned an unexpectedly large response!"
|
||||
;;
|
||||
# POSIX defines exit statuses 1-125 as usable by us
|
||||
# https://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_08_02
|
||||
$((error_code <= 125)))
|
||||
# Must be some other server or network error (possibly with this specific request/file)
|
||||
# This is when accounting for all possible errors in the curl manual assuming a correctly formed curl command and an HTTP(S) request, using only the curl features we're using, and a sane build
|
||||
echo "Miscellaneous server or network error!"
|
||||
;;
|
||||
126 | 127 )
|
||||
echo "Curl command not found! Please install curl and try again. Exiting..."
|
||||
return "$fatal_error_action"
|
||||
;;
|
||||
# Exit statuses are undefined by POSIX beyond this point
|
||||
*)
|
||||
case "$(kill -l "$error_code")" in
|
||||
# Signals defined to exist by POSIX:
|
||||
# https://pubs.opengroup.org/onlinepubs/009695399/basedefs/signal.h.html
|
||||
INT)
|
||||
echo "Curl was interrupted!"
|
||||
;;
|
||||
# There could be other signals but these are most common
|
||||
SEGV | ABRT )
|
||||
echo "Curl crashed! Failed exploitation attempt? Please report any core dumps to curl developers. Exiting..."
|
||||
return "$fatal_error_action"
|
||||
;;
|
||||
*)
|
||||
echo "Curl terminated due to a fatal signal!"
|
||||
;;
|
||||
esac
|
||||
esac
|
||||
return 1
|
||||
}
|
||||
|
||||
function download_windows_server() {
|
||||
local iso_download_page_html=""
|
||||
# Copyright (C) 2024 Elliot Killick <contact@elliotkillick.com>
|
||||
# This function is adapted from the Mido project:
|
||||
# https://github.com/ElliotKillick/Mido
|
||||
|
||||
# Download enterprise evaluation Windows versions
|
||||
local windows_version="$1"
|
||||
local enterprise_type="$2"
|
||||
local PRETTY_RELEASE=""
|
||||
|
||||
case "${RELEASE}" in
|
||||
*) PRETTY_RELEASE="${RELEASE}";;
|
||||
esac
|
||||
|
||||
echo "Downloading $(pretty_name "${OS}") ${PRETTY_RELEASE} (${I18N})"
|
||||
|
||||
local url="https://www.microsoft.com/en-us/evalcenter/download-$windows_version"
|
||||
|
||||
echo " - Parsing download page: ${url}"
|
||||
iso_download_page_html="$(curl --disable --silent --location --max-filesize 1M --fail --proto =https --tlsv1.2 --http1.1 -- "$url")" || {
|
||||
handle_curl_error $?
|
||||
return $?
|
||||
}
|
||||
|
||||
if ! [ "$iso_download_page_html" ]; then
|
||||
# This should only happen if there's been some change to where this download page is located
|
||||
echo " - Windows server download page gave us an empty response"
|
||||
return 1
|
||||
fi
|
||||
|
||||
local CULTURE=""
|
||||
local COUNTRY=""
|
||||
case "${I18N}" in
|
||||
"English (Great Britain)")
|
||||
CULTURE="en-gb"
|
||||
COUNTRY="GB";;
|
||||
"Chinese (Simplified)")
|
||||
CULTURE="zh-cn"
|
||||
COUNTRY="CN";;
|
||||
"Chinese (Traditional)")
|
||||
CULTURE="zh-tw"
|
||||
COUNTRY="TW";;
|
||||
"French")
|
||||
CULTURE="fr-fr"
|
||||
COUNTRY="FR";;
|
||||
"German")
|
||||
CULTURE="de-de"
|
||||
COUNTRY="DE";;
|
||||
"Italian")
|
||||
CULTURE="it-it"
|
||||
COUNTRY="IT";;
|
||||
"Japanese")
|
||||
CULTURE="ja-jp"
|
||||
COUNTRY="JP";;
|
||||
"Korean")
|
||||
CULTURE="ko-kr"
|
||||
COUNTRY="KR";;
|
||||
"Portuguese (Brazil)")
|
||||
CULTURE="pt-br"
|
||||
COUNTRY="BR";;
|
||||
"Spanish")
|
||||
CULTURE="es-es"
|
||||
COUNTRY="ES";;
|
||||
"Russian")
|
||||
CULTURE="ru-ru"
|
||||
COUNTRY="RU";;
|
||||
*)
|
||||
CULTURE="en-us"
|
||||
COUNTRY="US";;
|
||||
esac
|
||||
|
||||
echo " - Getting download link.."
|
||||
iso_download_links="$(echo "$iso_download_page_html" | grep -o "https://go.microsoft.com/fwlink/p/?LinkID=[0-9]\+&clcid=0x[0-9a-z]\+&culture=${CULTURE}&country=${COUNTRY}")" || {
|
||||
# This should only happen if there's been some change to the download endpoint web address
|
||||
echo " - Windows server download page gave us no download link"
|
||||
return 1
|
||||
}
|
||||
|
||||
# Limit untrusted size for input validation
|
||||
iso_download_links="$(echo "$iso_download_links" | head -c 1024)"
|
||||
|
||||
case "$enterprise_type" in
|
||||
# Select x64 download link
|
||||
"enterprise") iso_download_link=$(echo "$iso_download_links" | head -n 2 | tail -n 1) ;;
|
||||
# Select x64 LTSC download link
|
||||
"ltsc") iso_download_link=$(echo "$iso_download_links" | head -n 4 | tail -n 1) ;;
|
||||
*) iso_download_link="$iso_download_links" ;;
|
||||
esac
|
||||
|
||||
# Follow redirect so proceeding log message is useful
|
||||
# This is a request we make this Fido doesn't
|
||||
# We don't need to set "--max-filesize" here because this is a HEAD request and the output is to /dev/null anyway
|
||||
iso_download_link="$(curl --disable --silent --location --output /dev/null --silent --write-out "%{url_effective}" --head --fail --proto =https --tlsv1.2 --http1.1 -- "$iso_download_link")" || {
|
||||
# This should only happen if the Microsoft servers are down
|
||||
handle_curl_error $?
|
||||
return $?
|
||||
}
|
||||
|
||||
# Limit untrusted size for input validation
|
||||
iso_download_link="$(echo "$iso_download_link" | head -c 1024)"
|
||||
|
||||
echo " - URL: $iso_download_link"
|
||||
|
||||
# Download ISO
|
||||
FILE_NAME="${iso_download_link##*/}"
|
||||
web_get "${iso_download_link}" "${VM_PATH}" "${FILE_NAME}"
|
||||
OS="windows-server"
|
||||
}
|
||||
|
||||
function download_windows_workstation() {
|
||||
local HASH=""
|
||||
local session_id=""
|
||||
local iso_download_page_html=""
|
||||
local product_edition_id=""
|
||||
local language_skuid_table_json=""
|
||||
local sku_id=""
|
||||
local iso_download_link_json=""
|
||||
local iso_download_link=""
|
||||
|
||||
echo "Downloading Windows ${RELEASE} (${I18N})"
|
||||
# This function is adapted from the Mido project:
|
||||
# https://github.com/ElliotKillick/Mido
|
||||
# Download newer consumer Windows versions from behind gated Microsoft API
|
||||
|
||||
# Either 10, or 11
|
||||
local windows_version="$1"
|
||||
|
||||
local url="https://www.microsoft.com/en-us/software-download/windows$windows_version"
|
||||
case "$windows_version" in
|
||||
10) url="${url}ISO";;
|
||||
esac
|
||||
|
||||
local user_agent="Mozilla/5.0 (X11; Linux x86_64; rv:100.0) Gecko/20100101 Firefox/100.0"
|
||||
session_id="$(uuidgen)"
|
||||
|
||||
# Get product edition ID for latest release of given Windows version
|
||||
# Product edition ID: This specifies both the Windows release (e.g. 22H2) and edition ("multi-edition" is default, either Home/Pro/Edu/etc., we select "Pro" in the answer files) in one number
|
||||
# This is the *only* request we make that Fido doesn't. Fido manually maintains a list of all the Windows release/edition product edition IDs in its script (see: $WindowsVersions array). This is helpful for downloading older releases (e.g. Windows 10 1909, 21H1, etc.) but we always want to get the newest release which is why we get this value dynamically
|
||||
# Also, keeping a "$WindowsVersions" array like Fido does would be way too much of a maintenance burden
|
||||
# Remove "Accept" header that curl sends by default
|
||||
echo " - Parsing download page: ${url}"
|
||||
iso_download_page_html="$(curl --disable --silent --user-agent "$user_agent" --header "Accept:" --max-filesize 1M --fail --proto =https --tlsv1.2 --http1.1 -- "$url")" || {
|
||||
handle_curl_error $?
|
||||
return $?
|
||||
}
|
||||
|
||||
echo -n " - Getting Product edition ID: "
|
||||
# tr: Filter for only numerics to prevent HTTP parameter injection
|
||||
# head -c was recently added to POSIX: https://austingroupbugs.net/view.php?id=407
|
||||
product_edition_id="$(echo "$iso_download_page_html" | grep -Eo '<option value="[0-9]+">Windows' | cut -d '"' -f 2 | head -n 1 | tr -cd '0-9' | head -c 16)"
|
||||
echo "$product_edition_id"
|
||||
|
||||
echo " - Permit Session ID: $session_id"
|
||||
# Permit Session ID
|
||||
# "org_id" is always the same value
|
||||
curl --disable --silent --output /dev/null --user-agent "$user_agent" --header "Accept:" --max-filesize 100K --fail --proto =https --tlsv1.2 --http1.1 -- "https://vlscppe.microsoft.com/tags?org_id=y6jn8c31&session_id=$session_id" || {
|
||||
# This should only happen if there's been some change to how this API works
|
||||
handle_curl_error $?
|
||||
return $?
|
||||
}
|
||||
|
||||
local profile="606624d44113"
|
||||
|
||||
echo -n " - Getting language SKU ID: "
|
||||
# Get language -> skuID association table
|
||||
language_skuid_table_json="$(curl --disable -s --fail --max-filesize 100K --proto =https --tlsv1.2 --http1.1 "https://www.microsoft.com/software-download-connector/api/getskuinformationbyproductedition?profile=${profile}&ProductEditionId=${product_edition_id}&SKU=undefined&friendlyFileName=undefined&Locale=en-US&sessionID=${session_id}")" || {
|
||||
handle_curl_error $?
|
||||
return $?
|
||||
}
|
||||
|
||||
sku_id="$(echo "${language_skuid_table_json}" | jq -r '.Skus[] | select(.LocalizedLanguage=="'"${I18N}"'" or .Language=="'"${I18N}"'").Id')"
|
||||
echo "$sku_id"
|
||||
|
||||
echo " - Getting ISO download link..."
|
||||
# Get ISO download link
|
||||
# If any request is going to be blocked by Microsoft it's always this last one (the previous requests always seem to succeed)
|
||||
# --referer: Required by Microsoft servers to allow request
|
||||
iso_download_link_json="$(curl --disable -s --fail --referer "$url" "https://www.microsoft.com/software-download-connector/api/GetProductDownloadLinksBySku?profile=${profile}&productEditionId=undefined&SKU=${sku_id}&friendlyFileName=undefined&Locale=en-US&sessionID=${session_id}")"
|
||||
|
||||
local failed=0
|
||||
|
||||
if ! [ "$iso_download_link_json" ]; then
|
||||
# This should only happen if there's been some change to how this API works
|
||||
echo " - Microsoft servers gave us an empty response to our request for an automated download."
|
||||
failed=1
|
||||
fi
|
||||
|
||||
if echo "$iso_download_link_json" | grep -q "Sentinel marked this request as rejected."; then
|
||||
echo " - WARNING! Microsoft blocked the automated download request based on your IP address."
|
||||
failed=1
|
||||
fi
|
||||
|
||||
if [ ${failed} -eq 1 ]; then
|
||||
echo " Manually download the Windows ${windows_version} ISO using a web browser from: ${url}"
|
||||
echo " Save the downloaded ISO to: $(realpath "${VM_PATH}")"
|
||||
echo " Update the config file to reference the downloaded ISO: ./${VM_PATH}.conf"
|
||||
echo " Continuing with the VM creation process..."
|
||||
return 1
|
||||
fi
|
||||
|
||||
# Filter for 64-bit ISO download URL
|
||||
iso_download_link="$(echo "${iso_download_link_json}" | jq -r '.ProductDownloadOptions[].Uri' | grep x64)"
|
||||
|
||||
if ! [ "$iso_download_link" ]; then
|
||||
# This should only happen if there's been some change to the download endpoint web address
|
||||
echo " - Microsoft servers gave us no download link to our request for an automated download. Please manually download this ISO in a web browser: $url"
|
||||
return 1
|
||||
fi
|
||||
|
||||
echo " - URL: ${iso_download_link%%\?*}"
|
||||
|
||||
# Download ISO
|
||||
FILE_NAME="$(echo "$iso_download_link" | cut -d'?' -f1 | cut -d'/' -f5)"
|
||||
web_get "${iso_download_link}" "${VM_PATH}" "${FILE_NAME}"
|
||||
}
|
||||
|
||||
function get_windows() {
|
||||
if [ "${OS}" == "windows-server" ]; then
|
||||
download_windows_server "windows-server-${RELEASE}"
|
||||
else
|
||||
download_windows_workstation "${RELEASE}"
|
||||
fi
|
||||
|
||||
if [ "${OPERATION}" == "download" ]; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
echo "Downloading VirtIO drivers..."
|
||||
web_get "https://fedorapeople.org/groups/virt/virtio-win/direct-downloads/stable-virtio/virtio-win.iso" "${VM_PATH}"
|
||||
|
||||
rm -f "${VM_PATH}/unattended.iso"
|
||||
case ${RELEASE} in
|
||||
10|11)
|
||||
unattended_windows "${VM_PATH}"
|
||||
;;
|
||||
esac
|
||||
|
||||
if [ -n "${FILE_NAME}" ]; then
|
||||
make_vm_config "${FILE_NAME}" "virtio-win.iso"
|
||||
else
|
||||
make_vm_config "windows-${RELEASE}.iso" "virtio-win.iso"
|
||||
fi
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,620 @@ BASEDOF="-"
|
|||
DESCRIPTION="Platform for building an infrastructure of connected applications, networks, and web services"
|
||||
HOMEPAGE="https://www.microsoft.com/en-us/windows-server"
|
||||
CREDENTIALS="-"
|
||||
GUEST="xfce-musl xfce-glibc musl glibc"
|
||||
|
||||
RELEASES="2022 2019 2016"
|
||||
|
||||
|
||||
function releases_() {
|
||||
echo 2022 2019 2016
|
||||
}
|
||||
|
||||
function languages_windows-server() {
|
||||
I18NS=("English (United States)" "Chinese (Simplified)" "French" "German" "Italian" "Japanese" "Russian" "Spanish")
|
||||
}
|
||||
|
||||
function unattended_windows() {
|
||||
mkdir -p "${1}/unattended" 2>/dev/null
|
||||
|
||||
cat << 'EOF' > "${1}/unattended/autounattend.xml"
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<unattend xmlns="urn:schemas-microsoft-com:unattend"
|
||||
xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<!--
|
||||
For documentation on components:
|
||||
https://docs.microsoft.com/en-us/windows-hardware/customize/desktop/unattend/
|
||||
-->
|
||||
<settings pass="offlineServicing">
|
||||
<component name="Microsoft-Windows-LUA-Settings" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<EnableLUA>false</EnableLUA>
|
||||
</component>
|
||||
<component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<ComputerName>*</ComputerName>
|
||||
</component>
|
||||
</settings>
|
||||
|
||||
<settings pass="generalize">
|
||||
<component name="Microsoft-Windows-PnPSysprep" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
|
||||
<PersistAllDeviceInstalls>true</PersistAllDeviceInstalls>
|
||||
</component>
|
||||
<component name="Microsoft-Windows-Security-SPP" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<SkipRearm>1</SkipRearm>
|
||||
</component>
|
||||
</settings>
|
||||
|
||||
<settings pass="specialize">
|
||||
<component name="Microsoft-Windows-Security-SPP-UX" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<SkipAutoActivation>true</SkipAutoActivation>
|
||||
</component>
|
||||
<component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<ComputerName>*</ComputerName>
|
||||
<OEMInformation>
|
||||
<Manufacturer>Quickemu Project</Manufacturer>
|
||||
<Model>Quickemu</Model>
|
||||
<SupportHours>24/7</SupportHours>
|
||||
<SupportPhone></SupportPhone>
|
||||
<SupportProvider>Quickemu Project</SupportProvider>
|
||||
<SupportURL>https://github.com/quickemu-project/quickemu/issues</SupportURL>
|
||||
</OEMInformation>
|
||||
<OEMName>Quickemu Project</OEMName>
|
||||
<ProductKey>W269N-WFGWX-YVC9B-4J6C9-T83GX</ProductKey>
|
||||
</component>
|
||||
<component name="Microsoft-Windows-SQMApi" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<CEIPEnabled>0</CEIPEnabled>
|
||||
</component>
|
||||
</settings>
|
||||
|
||||
<settings pass="windowsPE">
|
||||
<component name="Microsoft-Windows-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<Diagnostics>
|
||||
<OptIn>false</OptIn>
|
||||
</Diagnostics>
|
||||
<DiskConfiguration>
|
||||
<Disk wcm:action="add">
|
||||
<DiskID>0</DiskID>
|
||||
<WillWipeDisk>true</WillWipeDisk>
|
||||
<CreatePartitions>
|
||||
<!-- Windows RE Tools partition -->
|
||||
<CreatePartition wcm:action="add">
|
||||
<Order>1</Order>
|
||||
<Type>Primary</Type>
|
||||
<Size>256</Size>
|
||||
</CreatePartition>
|
||||
<!-- System partition (ESP) -->
|
||||
<CreatePartition wcm:action="add">
|
||||
<Order>2</Order>
|
||||
<Type>EFI</Type>
|
||||
<Size>128</Size>
|
||||
</CreatePartition>
|
||||
<!-- Microsoft reserved partition (MSR) -->
|
||||
<CreatePartition wcm:action="add">
|
||||
<Order>3</Order>
|
||||
<Type>MSR</Type>
|
||||
<Size>128</Size>
|
||||
</CreatePartition>
|
||||
<!-- Windows partition -->
|
||||
<CreatePartition wcm:action="add">
|
||||
<Order>4</Order>
|
||||
<Type>Primary</Type>
|
||||
<Extend>true</Extend>
|
||||
</CreatePartition>
|
||||
</CreatePartitions>
|
||||
<ModifyPartitions>
|
||||
<!-- Windows RE Tools partition -->
|
||||
<ModifyPartition wcm:action="add">
|
||||
<Order>1</Order>
|
||||
<PartitionID>1</PartitionID>
|
||||
<Label>WINRE</Label>
|
||||
<Format>NTFS</Format>
|
||||
<TypeID>DE94BBA4-06D1-4D40-A16A-BFD50179D6AC</TypeID>
|
||||
</ModifyPartition>
|
||||
<!-- System partition (ESP) -->
|
||||
<ModifyPartition wcm:action="add">
|
||||
<Order>2</Order>
|
||||
<PartitionID>2</PartitionID>
|
||||
<Label>System</Label>
|
||||
<Format>FAT32</Format>
|
||||
</ModifyPartition>
|
||||
<!-- MSR partition does not need to be modified -->
|
||||
<ModifyPartition wcm:action="add">
|
||||
<Order>3</Order>
|
||||
<PartitionID>3</PartitionID>
|
||||
</ModifyPartition>
|
||||
<!-- Windows partition -->
|
||||
<ModifyPartition wcm:action="add">
|
||||
<Order>4</Order>
|
||||
<PartitionID>4</PartitionID>
|
||||
<Label>Windows</Label>
|
||||
<Letter>C</Letter>
|
||||
<Format>NTFS</Format>
|
||||
</ModifyPartition>
|
||||
</ModifyPartitions>
|
||||
</Disk>
|
||||
</DiskConfiguration>
|
||||
<DynamicUpdate>
|
||||
<Enable>true</Enable>
|
||||
<WillShowUI>Never</WillShowUI>
|
||||
</DynamicUpdate>
|
||||
<ImageInstall>
|
||||
<OSImage>
|
||||
<InstallTo>
|
||||
<DiskID>0</DiskID>
|
||||
<PartitionID>4</PartitionID>
|
||||
</InstallTo>
|
||||
<InstallToAvailablePartition>false</InstallToAvailablePartition>
|
||||
</OSImage>
|
||||
</ImageInstall>
|
||||
<RunSynchronous>
|
||||
<RunSynchronousCommand wcm:action="add">
|
||||
<Order>1</Order>
|
||||
<Path>reg add HKLM\System\Setup\LabConfig /v BypassCPUCheck /t REG_DWORD /d 0x00000001 /f</Path>
|
||||
</RunSynchronousCommand>
|
||||
<RunSynchronousCommand wcm:action="add">
|
||||
<Order>2</Order>
|
||||
<Path>reg add HKLM\System\Setup\LabConfig /v BypassRAMCheck /t REG_DWORD /d 0x00000001 /f</Path>
|
||||
</RunSynchronousCommand>
|
||||
<RunSynchronousCommand wcm:action="add">
|
||||
<Order>3</Order>
|
||||
<Path>reg add HKLM\System\Setup\LabConfig /v BypassSecureBootCheck /t REG_DWORD /d 0x00000001 /f</Path>
|
||||
</RunSynchronousCommand>
|
||||
<RunSynchronousCommand wcm:action="add">
|
||||
<Order>4</Order>
|
||||
<Path>reg add HKLM\System\Setup\LabConfig /v BypassTPMCheck /t REG_DWORD /d 0x00000001 /f</Path>
|
||||
</RunSynchronousCommand>
|
||||
</RunSynchronous>
|
||||
<UpgradeData>
|
||||
<Upgrade>false</Upgrade>
|
||||
<WillShowUI>Never</WillShowUI>
|
||||
</UpgradeData>
|
||||
<UserData>
|
||||
<AcceptEula>true</AcceptEula>
|
||||
<FullName>Quickemu</FullName>
|
||||
<Organization>Quickemu Project</Organization>
|
||||
<!-- https://docs.microsoft.com/en-us/windows-server/get-started/kms-client-activation-keys -->
|
||||
<ProductKey>
|
||||
<Key>W269N-WFGWX-YVC9B-4J6C9-T83GX</Key>
|
||||
<WillShowUI>Never</WillShowUI>
|
||||
</ProductKey>
|
||||
</UserData>
|
||||
</component>
|
||||
|
||||
<component name="Microsoft-Windows-PnpCustomizationsWinPE" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" processorArchitecture="amd64" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<!--
|
||||
This makes the VirtIO drivers available to Windows, assuming that
|
||||
the VirtIO driver disk is available as drive E:
|
||||
https://github.com/virtio-win/virtio-win-pkg-scripts/blob/master/README.md
|
||||
-->
|
||||
<DriverPaths>
|
||||
<PathAndCredentials wcm:action="add" wcm:keyValue="1">
|
||||
<Path>E:\qemufwcfg\w10\amd64</Path>
|
||||
</PathAndCredentials>
|
||||
<PathAndCredentials wcm:action="add" wcm:keyValue="2">
|
||||
<Path>E:\vioinput\w10\amd64</Path>
|
||||
</PathAndCredentials>
|
||||
<PathAndCredentials wcm:action="add" wcm:keyValue="3">
|
||||
<Path>E:\vioscsi\w10\amd64</Path>
|
||||
</PathAndCredentials>
|
||||
<PathAndCredentials wcm:action="add" wcm:keyValue="4">
|
||||
<Path>E:\viostor\w10\amd64</Path>
|
||||
</PathAndCredentials>
|
||||
<PathAndCredentials wcm:action="add" wcm:keyValue="5">
|
||||
<Path>E:\vioserial\w10\amd64</Path>
|
||||
</PathAndCredentials>
|
||||
<PathAndCredentials wcm:action="add" wcm:keyValue="6">
|
||||
<Path>E:\qxldod\w10\amd64</Path>
|
||||
</PathAndCredentials>
|
||||
<PathAndCredentials wcm:action="add" wcm:keyValue="7">
|
||||
<Path>E:\amd64\w10</Path>
|
||||
</PathAndCredentials>
|
||||
<PathAndCredentials wcm:action="add" wcm:keyValue="8">
|
||||
<Path>E:\viogpudo\w10\amd64</Path>
|
||||
</PathAndCredentials>
|
||||
<PathAndCredentials wcm:action="add" wcm:keyValue="9">
|
||||
<Path>E:\viorng\w10\amd64</Path>
|
||||
</PathAndCredentials>
|
||||
<PathAndCredentials wcm:action="add" wcm:keyValue="10">
|
||||
<Path>E:\NetKVM\w10\amd64</Path>
|
||||
</PathAndCredentials>
|
||||
<PathAndCredentials wcm:action="add" wcm:keyValue="11">
|
||||
<Path>E:\viofs\w10\amd64</Path>
|
||||
</PathAndCredentials>
|
||||
<PathAndCredentials wcm:action="add" wcm:keyValue="12">
|
||||
<Path>E:\Balloon\w10\amd64</Path>
|
||||
</PathAndCredentials>
|
||||
</DriverPaths>
|
||||
</component>
|
||||
</settings>
|
||||
|
||||
<settings pass="oobeSystem">
|
||||
<component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<AutoLogon>
|
||||
<Password>
|
||||
<Value>quickemu</Value>
|
||||
<PlainText>true</PlainText>
|
||||
</Password>
|
||||
<Enabled>true</Enabled>
|
||||
<Username>Quickemu</Username>
|
||||
</AutoLogon>
|
||||
<DisableAutoDaylightTimeSet>false</DisableAutoDaylightTimeSet>
|
||||
<OOBE>
|
||||
<HideEULAPage>true</HideEULAPage>
|
||||
<HideLocalAccountScreen>true</HideLocalAccountScreen>
|
||||
<HideOEMRegistrationScreen>true</HideOEMRegistrationScreen>
|
||||
<HideOnlineAccountScreens>true</HideOnlineAccountScreens>
|
||||
<HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>
|
||||
<NetworkLocation>Home</NetworkLocation>
|
||||
<ProtectYourPC>3</ProtectYourPC>
|
||||
<SkipUserOOBE>true</SkipUserOOBE>
|
||||
<SkipMachineOOBE>true</SkipMachineOOBE>
|
||||
<VMModeOptimizations>
|
||||
<SkipWinREInitialization>true</SkipWinREInitialization>
|
||||
</VMModeOptimizations>
|
||||
</OOBE>
|
||||
<UserAccounts>
|
||||
<LocalAccounts>
|
||||
<LocalAccount wcm:action="add">
|
||||
<Password>
|
||||
<Value>quickemu</Value>
|
||||
<PlainText>true</PlainText>
|
||||
</Password>
|
||||
<Description>Quickemu</Description>
|
||||
<DisplayName>Quickemu</DisplayName>
|
||||
<Group>Administrators</Group>
|
||||
<Name>Quickemu</Name>
|
||||
</LocalAccount>
|
||||
</LocalAccounts>
|
||||
</UserAccounts>
|
||||
<RegisteredOrganization>Quickemu Project</RegisteredOrganization>
|
||||
<RegisteredOwner>Quickemu</RegisteredOwner>
|
||||
<FirstLogonCommands>
|
||||
<SynchronousCommand wcm:action="add">
|
||||
<CommandLine>msiexec /i E:\guest-agent\qemu-ga-x86_64.msi /quiet /passive /qn</CommandLine>
|
||||
<Description>Install Virtio Guest Agent</Description>
|
||||
<Order>1</Order>
|
||||
</SynchronousCommand>
|
||||
<SynchronousCommand wcm:action="add">
|
||||
<CommandLine>msiexec /i F:\spice-webdavd-x64-latest.msi /quiet /passive /qn</CommandLine>
|
||||
<Description>Install spice-webdavd file sharing agent</Description>
|
||||
<Order>2</Order>
|
||||
</SynchronousCommand>
|
||||
<SynchronousCommand wcm:action="add">
|
||||
<CommandLine>msiexec /i F:\UsbDk_1.0.22_x64.msi /quiet /passive /qn</CommandLine>
|
||||
<Description>Install usbdk USB sharing agent</Description>
|
||||
<Order>3</Order>
|
||||
</SynchronousCommand>
|
||||
<SynchronousCommand wcm:action="add">
|
||||
<CommandLine>msiexec /i F:\spice-vdagent-x64-0.10.0.msi /quiet /passive /qn</CommandLine>
|
||||
<Description>Install spice-vdagent SPICE agent</Description>
|
||||
<Order>4</Order>
|
||||
</SynchronousCommand>
|
||||
<SynchronousCommand wcm:action="add">
|
||||
<CommandLine>Cmd /c POWERCFG -H OFF</CommandLine>
|
||||
<Description>Disable Hibernation</Description>
|
||||
<Order>5</Order>
|
||||
</SynchronousCommand>
|
||||
</FirstLogonCommands>
|
||||
</component>
|
||||
</settings>
|
||||
</unattend>
|
||||
EOF
|
||||
|
||||
|
||||
echo "Downloading Spice drivers..."
|
||||
web_get https://www.spice-space.org/download/windows/spice-webdavd/spice-webdavd-x64-latest.msi "${VM_PATH}/unattended"
|
||||
web_get https://www.spice-space.org/download/windows/vdagent/vdagent-win-0.10.0/spice-vdagent-x64-0.10.0.msi "${VM_PATH}/unattended"
|
||||
web_get https://www.spice-space.org/download/windows/usbdk/UsbDk_1.0.22_x64.msi "${VM_PATH}/unattended"
|
||||
|
||||
echo "Making unattended.iso"
|
||||
mkisofs -quiet -l -o "${VM_PATH}/unattended.iso" "${VM_PATH}/unattended/"
|
||||
}
|
||||
|
||||
function handle_curl_error() {
|
||||
local error_code="$1"
|
||||
local fatal_error_action=2
|
||||
case "$error_code" in
|
||||
6)
|
||||
echo "Failed to resolve Microsoft servers! Is there an Internet connection? Exiting..."
|
||||
return "$fatal_error_action"
|
||||
;;
|
||||
7)
|
||||
echo "Failed to contact Microsoft servers! Is there an Internet connection or is the server down?"
|
||||
;;
|
||||
8)
|
||||
echo "Microsoft servers returned a malformed HTTP response!"
|
||||
;;
|
||||
22)
|
||||
echo "Microsoft servers returned a failing HTTP status code!"
|
||||
;;
|
||||
23)
|
||||
echo "Failed at writing Windows media to disk! Out of disk space or permission error? Exiting..."
|
||||
return "$fatal_error_action"
|
||||
;;
|
||||
26)
|
||||
echo "Ran out of memory during download! Exiting..."
|
||||
return "$fatal_error_action"
|
||||
;;
|
||||
36)
|
||||
echo "Failed to continue earlier download!"
|
||||
;;
|
||||
63)
|
||||
echo "Microsoft servers returned an unexpectedly large response!"
|
||||
;;
|
||||
# POSIX defines exit statuses 1-125 as usable by us
|
||||
# https://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_08_02
|
||||
$((error_code <= 125)))
|
||||
# Must be some other server or network error (possibly with this specific request/file)
|
||||
# This is when accounting for all possible errors in the curl manual assuming a correctly formed curl command and an HTTP(S) request, using only the curl features we're using, and a sane build
|
||||
echo "Miscellaneous server or network error!"
|
||||
;;
|
||||
126 | 127 )
|
||||
echo "Curl command not found! Please install curl and try again. Exiting..."
|
||||
return "$fatal_error_action"
|
||||
;;
|
||||
# Exit statuses are undefined by POSIX beyond this point
|
||||
*)
|
||||
case "$(kill -l "$error_code")" in
|
||||
# Signals defined to exist by POSIX:
|
||||
# https://pubs.opengroup.org/onlinepubs/009695399/basedefs/signal.h.html
|
||||
INT)
|
||||
echo "Curl was interrupted!"
|
||||
;;
|
||||
# There could be other signals but these are most common
|
||||
SEGV | ABRT )
|
||||
echo "Curl crashed! Failed exploitation attempt? Please report any core dumps to curl developers. Exiting..."
|
||||
return "$fatal_error_action"
|
||||
;;
|
||||
*)
|
||||
echo "Curl terminated due to a fatal signal!"
|
||||
;;
|
||||
esac
|
||||
esac
|
||||
return 1
|
||||
}
|
||||
|
||||
function download_windows_server() {
|
||||
local iso_download_page_html=""
|
||||
# Copyright (C) 2024 Elliot Killick <contact@elliotkillick.com>
|
||||
# This function is adapted from the Mido project:
|
||||
# https://github.com/ElliotKillick/Mido
|
||||
|
||||
# Download enterprise evaluation Windows versions
|
||||
local windows_version="$1"
|
||||
local enterprise_type="$2"
|
||||
local PRETTY_RELEASE=""
|
||||
|
||||
case "${RELEASE}" in
|
||||
*) PRETTY_RELEASE="${RELEASE}";;
|
||||
esac
|
||||
|
||||
echo "Downloading $(pretty_name "${OS}") ${PRETTY_RELEASE} (${I18N})"
|
||||
|
||||
local url="https://www.microsoft.com/en-us/evalcenter/download-$windows_version"
|
||||
|
||||
echo " - Parsing download page: ${url}"
|
||||
iso_download_page_html="$(curl --disable --silent --location --max-filesize 1M --fail --proto =https --tlsv1.2 --http1.1 -- "$url")" || {
|
||||
handle_curl_error $?
|
||||
return $?
|
||||
}
|
||||
|
||||
if ! [ "$iso_download_page_html" ]; then
|
||||
# This should only happen if there's been some change to where this download page is located
|
||||
echo " - Windows server download page gave us an empty response"
|
||||
return 1
|
||||
fi
|
||||
|
||||
local CULTURE=""
|
||||
local COUNTRY=""
|
||||
case "${I18N}" in
|
||||
"English (Great Britain)")
|
||||
CULTURE="en-gb"
|
||||
COUNTRY="GB";;
|
||||
"Chinese (Simplified)")
|
||||
CULTURE="zh-cn"
|
||||
COUNTRY="CN";;
|
||||
"Chinese (Traditional)")
|
||||
CULTURE="zh-tw"
|
||||
COUNTRY="TW";;
|
||||
"French")
|
||||
CULTURE="fr-fr"
|
||||
COUNTRY="FR";;
|
||||
"German")
|
||||
CULTURE="de-de"
|
||||
COUNTRY="DE";;
|
||||
"Italian")
|
||||
CULTURE="it-it"
|
||||
COUNTRY="IT";;
|
||||
"Japanese")
|
||||
CULTURE="ja-jp"
|
||||
COUNTRY="JP";;
|
||||
"Korean")
|
||||
CULTURE="ko-kr"
|
||||
COUNTRY="KR";;
|
||||
"Portuguese (Brazil)")
|
||||
CULTURE="pt-br"
|
||||
COUNTRY="BR";;
|
||||
"Spanish")
|
||||
CULTURE="es-es"
|
||||
COUNTRY="ES";;
|
||||
"Russian")
|
||||
CULTURE="ru-ru"
|
||||
COUNTRY="RU";;
|
||||
*)
|
||||
CULTURE="en-us"
|
||||
COUNTRY="US";;
|
||||
esac
|
||||
|
||||
echo " - Getting download link.."
|
||||
iso_download_links="$(echo "$iso_download_page_html" | grep -o "https://go.microsoft.com/fwlink/p/?LinkID=[0-9]\+&clcid=0x[0-9a-z]\+&culture=${CULTURE}&country=${COUNTRY}")" || {
|
||||
# This should only happen if there's been some change to the download endpoint web address
|
||||
echo " - Windows server download page gave us no download link"
|
||||
return 1
|
||||
}
|
||||
|
||||
# Limit untrusted size for input validation
|
||||
iso_download_links="$(echo "$iso_download_links" | head -c 1024)"
|
||||
|
||||
case "$enterprise_type" in
|
||||
# Select x64 download link
|
||||
"enterprise") iso_download_link=$(echo "$iso_download_links" | head -n 2 | tail -n 1) ;;
|
||||
# Select x64 LTSC download link
|
||||
"ltsc") iso_download_link=$(echo "$iso_download_links" | head -n 4 | tail -n 1) ;;
|
||||
*) iso_download_link="$iso_download_links" ;;
|
||||
esac
|
||||
|
||||
# Follow redirect so proceeding log message is useful
|
||||
# This is a request we make this Fido doesn't
|
||||
# We don't need to set "--max-filesize" here because this is a HEAD request and the output is to /dev/null anyway
|
||||
iso_download_link="$(curl --disable --silent --location --output /dev/null --silent --write-out "%{url_effective}" --head --fail --proto =https --tlsv1.2 --http1.1 -- "$iso_download_link")" || {
|
||||
# This should only happen if the Microsoft servers are down
|
||||
handle_curl_error $?
|
||||
return $?
|
||||
}
|
||||
|
||||
# Limit untrusted size for input validation
|
||||
iso_download_link="$(echo "$iso_download_link" | head -c 1024)"
|
||||
|
||||
echo " - URL: $iso_download_link"
|
||||
|
||||
# Download ISO
|
||||
FILE_NAME="${iso_download_link##*/}"
|
||||
web_get "${iso_download_link}" "${VM_PATH}" "${FILE_NAME}"
|
||||
OS="windows-server"
|
||||
}
|
||||
|
||||
function download_windows_workstation() {
|
||||
local HASH=""
|
||||
local session_id=""
|
||||
local iso_download_page_html=""
|
||||
local product_edition_id=""
|
||||
local language_skuid_table_json=""
|
||||
local sku_id=""
|
||||
local iso_download_link_json=""
|
||||
local iso_download_link=""
|
||||
|
||||
echo "Downloading Windows ${RELEASE} (${I18N})"
|
||||
# This function is adapted from the Mido project:
|
||||
# https://github.com/ElliotKillick/Mido
|
||||
# Download newer consumer Windows versions from behind gated Microsoft API
|
||||
|
||||
# Either 10, or 11
|
||||
local windows_version="$1"
|
||||
|
||||
local url="https://www.microsoft.com/en-us/software-download/windows$windows_version"
|
||||
case "$windows_version" in
|
||||
10) url="${url}ISO";;
|
||||
esac
|
||||
|
||||
local user_agent="Mozilla/5.0 (X11; Linux x86_64; rv:100.0) Gecko/20100101 Firefox/100.0"
|
||||
session_id="$(uuidgen)"
|
||||
|
||||
# Get product edition ID for latest release of given Windows version
|
||||
# Product edition ID: This specifies both the Windows release (e.g. 22H2) and edition ("multi-edition" is default, either Home/Pro/Edu/etc., we select "Pro" in the answer files) in one number
|
||||
# This is the *only* request we make that Fido doesn't. Fido manually maintains a list of all the Windows release/edition product edition IDs in its script (see: $WindowsVersions array). This is helpful for downloading older releases (e.g. Windows 10 1909, 21H1, etc.) but we always want to get the newest release which is why we get this value dynamically
|
||||
# Also, keeping a "$WindowsVersions" array like Fido does would be way too much of a maintenance burden
|
||||
# Remove "Accept" header that curl sends by default
|
||||
echo " - Parsing download page: ${url}"
|
||||
iso_download_page_html="$(curl --disable --silent --user-agent "$user_agent" --header "Accept:" --max-filesize 1M --fail --proto =https --tlsv1.2 --http1.1 -- "$url")" || {
|
||||
handle_curl_error $?
|
||||
return $?
|
||||
}
|
||||
|
||||
echo -n " - Getting Product edition ID: "
|
||||
# tr: Filter for only numerics to prevent HTTP parameter injection
|
||||
# head -c was recently added to POSIX: https://austingroupbugs.net/view.php?id=407
|
||||
product_edition_id="$(echo "$iso_download_page_html" | grep -Eo '<option value="[0-9]+">Windows' | cut -d '"' -f 2 | head -n 1 | tr -cd '0-9' | head -c 16)"
|
||||
echo "$product_edition_id"
|
||||
|
||||
echo " - Permit Session ID: $session_id"
|
||||
# Permit Session ID
|
||||
# "org_id" is always the same value
|
||||
curl --disable --silent --output /dev/null --user-agent "$user_agent" --header "Accept:" --max-filesize 100K --fail --proto =https --tlsv1.2 --http1.1 -- "https://vlscppe.microsoft.com/tags?org_id=y6jn8c31&session_id=$session_id" || {
|
||||
# This should only happen if there's been some change to how this API works
|
||||
handle_curl_error $?
|
||||
return $?
|
||||
}
|
||||
|
||||
local profile="606624d44113"
|
||||
|
||||
echo -n " - Getting language SKU ID: "
|
||||
# Get language -> skuID association table
|
||||
language_skuid_table_json="$(curl --disable -s --fail --max-filesize 100K --proto =https --tlsv1.2 --http1.1 "https://www.microsoft.com/software-download-connector/api/getskuinformationbyproductedition?profile=${profile}&ProductEditionId=${product_edition_id}&SKU=undefined&friendlyFileName=undefined&Locale=en-US&sessionID=${session_id}")" || {
|
||||
handle_curl_error $?
|
||||
return $?
|
||||
}
|
||||
|
||||
sku_id="$(echo "${language_skuid_table_json}" | jq -r '.Skus[] | select(.LocalizedLanguage=="'"${I18N}"'" or .Language=="'"${I18N}"'").Id')"
|
||||
echo "$sku_id"
|
||||
|
||||
echo " - Getting ISO download link..."
|
||||
# Get ISO download link
|
||||
# If any request is going to be blocked by Microsoft it's always this last one (the previous requests always seem to succeed)
|
||||
# --referer: Required by Microsoft servers to allow request
|
||||
iso_download_link_json="$(curl --disable -s --fail --referer "$url" "https://www.microsoft.com/software-download-connector/api/GetProductDownloadLinksBySku?profile=${profile}&productEditionId=undefined&SKU=${sku_id}&friendlyFileName=undefined&Locale=en-US&sessionID=${session_id}")"
|
||||
|
||||
local failed=0
|
||||
|
||||
if ! [ "$iso_download_link_json" ]; then
|
||||
# This should only happen if there's been some change to how this API works
|
||||
echo " - Microsoft servers gave us an empty response to our request for an automated download."
|
||||
failed=1
|
||||
fi
|
||||
|
||||
if echo "$iso_download_link_json" | grep -q "Sentinel marked this request as rejected."; then
|
||||
echo " - WARNING! Microsoft blocked the automated download request based on your IP address."
|
||||
failed=1
|
||||
fi
|
||||
|
||||
if [ ${failed} -eq 1 ]; then
|
||||
echo " Manually download the Windows ${windows_version} ISO using a web browser from: ${url}"
|
||||
echo " Save the downloaded ISO to: $(realpath "${VM_PATH}")"
|
||||
echo " Update the config file to reference the downloaded ISO: ./${VM_PATH}.conf"
|
||||
echo " Continuing with the VM creation process..."
|
||||
return 1
|
||||
fi
|
||||
|
||||
# Filter for 64-bit ISO download URL
|
||||
iso_download_link="$(echo "${iso_download_link_json}" | jq -r '.ProductDownloadOptions[].Uri' | grep x64)"
|
||||
|
||||
if ! [ "$iso_download_link" ]; then
|
||||
# This should only happen if there's been some change to the download endpoint web address
|
||||
echo " - Microsoft servers gave us no download link to our request for an automated download. Please manually download this ISO in a web browser: $url"
|
||||
return 1
|
||||
fi
|
||||
|
||||
echo " - URL: ${iso_download_link%%\?*}"
|
||||
|
||||
# Download ISO
|
||||
FILE_NAME="$(echo "$iso_download_link" | cut -d'?' -f1 | cut -d'/' -f5)"
|
||||
web_get "${iso_download_link}" "${VM_PATH}" "${FILE_NAME}"
|
||||
}
|
||||
|
||||
function get_() {
|
||||
if [ "${OS}" == "windows-server" ]; then
|
||||
download_windows_server "windows-server-${RELEASE}"
|
||||
else
|
||||
download_windows_workstation "${RELEASE}"
|
||||
fi
|
||||
|
||||
if [ "${OPERATION}" == "download" ]; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
echo "Downloading VirtIO drivers..."
|
||||
web_get "https://fedorapeople.org/groups/virt/virtio-win/direct-downloads/stable-virtio/virtio-win.iso" "${VM_PATH}"
|
||||
|
||||
rm -f "${VM_PATH}/unattended.iso"
|
||||
case ${RELEASE} in
|
||||
10|11)
|
||||
unattended_windows "${VM_PATH}"
|
||||
;;
|
||||
esac
|
||||
|
||||
if [ -n "${FILE_NAME}" ]; then
|
||||
make_vm_config "${FILE_NAME}" "virtio-win.iso"
|
||||
else
|
||||
make_vm_config "windows-${RELEASE}.iso" "virtio-win.iso"
|
||||
fi
|
||||
}
|
||||
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue