update supported

This commit is contained in:
oSoWoSo 2025-04-01 14:24:00 +00:00
parent 87d8eb80c3
commit a31da40fa5
133 changed files with 4019 additions and 20 deletions

1561
TODO/all

File diff suppressed because it is too large Load Diff

28
public/agarimos Normal file
View File

@ -0,0 +1,28 @@
# Template file for 'agarimos'
OSNAME="agarimos"
PRETTY="AgarimOS"
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}"
}

View File

@ -7,7 +7,7 @@ HOMEPAGE="https://arcolinux.com"
CREDENTIALS="-"
RELEASES="v25.03.05 v25.02.04 v25.01.05 v25.01.01 v24.12.02"
RELEASES="v25.04.01 v25.03.05 v25.02.04 v25.01.05 v25.01.01"
EDITIONS="pro plasma net"
function releases_() {

View File

@ -7,7 +7,7 @@ HOMEPAGE="https://artixlinux.org"
CREDENTIALS="-"
RELEASES="20240823"
RELEASES="20250310"
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_() {

View File

@ -7,7 +7,7 @@ HOMEPAGE="https://www.biglinux.com.br"
CREDENTIALS="-"
RELEASES="2025-03-01"
RELEASES="2025-03-15"
EDITIONS="k66 k613 k612"
function releases_() {

View File

@ -7,7 +7,7 @@ HOMEPAGE="https://www.debian.org"
CREDENTIALS="-"
RELEASES="12.9.0 11.11.0 10.13.0"
RELEASES="12.10.0 11.11.0 10.13.0"
EDITIONS="xfce standard netinst mate lxqt lxde kde gnome cinnamon"
function releases_() {

View File

@ -7,7 +7,7 @@ HOMEPAGE="https://www.deepin.org"
CREDENTIALS="-"
RELEASES="23 20.9"
RELEASES="25-alpha 23 20.9"
function releases_() {

85
public/edubuntu Normal file
View File

@ -0,0 +1,85 @@
# Template file for 'edubuntu'
OSNAME="edubuntu"
PRETTY="Edubuntu"
BASEDOF="Ubuntu"
DESCRIPTION="Stable, secure and privacy concious option for schools"
HOMEPAGE="https://www.edubuntu.org"
CREDENTIALS="-"
GUEST="linux_old
linux_old"
RELEASES="daily-live 24.10 24.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
}

View File

@ -7,7 +7,7 @@ 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"
RELEASES="mercury-neo-2025.03.19 mercury-2025.02.08 gemini-2024.04.20 galileo-neo-2024.01.25 galileo-11-2023"
function releases_() {

View File

@ -7,8 +7,8 @@ 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"
RELEASES="42_Beta 41 40 39"
EDITIONS="i3 Xfce Workstation Sway Silverblue Server Sericea Onyx MiracleWM Mate LXQt LXDE Kinoite KDE_Mobile KDE Cinnamon COSMIC Budgie"
function releases_() {
#shellcheck disable=SC2046,SC2005

View File

@ -7,7 +7,7 @@ HOMEPAGE="https://www.freebsd.org"
CREDENTIALS="-"
freebsd
RELEASES="14.2 14.1 13.4 13.3"
RELEASES="14.2 14.1 13.5 13.4"
EDITIONS="dvd1 disc1"
function releases_() {

View File

@ -8,7 +8,7 @@ CREDENTIALS="-"
RELEASES="latest"
EDITIONS="xfce sway kde-lite i3 gnome dr460nized-gaming dr460nized cinnamon"
EDITIONS="xfce sway mokka kde-lite i3 hyprland gnome dr460nized-gaming dr460nized cinnamon"
function releases_() {
echo latest

View File

@ -7,7 +7,7 @@ HOMEPAGE="https://os.gnome.org"
CREDENTIALS="-"
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"
RELEASES="nightly 48.rc 48.beta 48.alpha 48.0 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_() {

85
public/kubuntu Normal file
View File

@ -0,0 +1,85 @@
# Template file for 'kubuntu'
OSNAME="kubuntu"
PRETTY="Kubuntu"
BASEDOF="Ubuntu"
DESCRIPTION="Free, complete, and open-source alternative to Microsoft Windows and Mac OS X which contains everything you need to work, play, or share"
HOMEPAGE="https://kubuntu.org"
CREDENTIALS="-"
GUEST="linux_old
linux_old"
RELEASES="daily-live 24.10 24.04 22.04 20.04 18.04 16.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
}

85
public/lubuntu Normal file
View File

@ -0,0 +1,85 @@
# Template file for 'lubuntu'
OSNAME="lubuntu"
PRETTY="Lubuntu"
BASEDOF="Ubuntu"
DESCRIPTION="Complete Operating System that ships the essential apps and services for daily use: office applications, PDF reader, image editor, music and video players, etc. Using lightwave lxde/lxqt"
HOMEPAGE="https://lubuntu.me"
CREDENTIALS="-"
GUEST="linux_old
linux_old"
RELEASES="daily-live 24.10 24.04 22.04 20.04 18.04 16.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
}

View File

@ -7,7 +7,7 @@ HOMEPAGE="https://nixos.org"
CREDENTIALS="-"
RELEASES="unstable 24.05 23.05"
RELEASES="unstable 24.11 24.05"
EDITIONS="plasma minimal gnome"
function releases_() {

View File

@ -7,7 +7,7 @@ HOMEPAGE="https://www.openbsd.org"
CREDENTIALS="-"
GUEST="openbsd"
RELEASES="7.6 7.5 7.4 7.3 7.2 7.1 7.0 6.9 6.8"
RELEASES="7.6 7.5"
function releases_() {

View File

@ -7,8 +7,8 @@ HOMEPAGE="https://www.openindiana.org"
CREDENTIALS="-"
solaris
RELEASES="20241026 20240426 20231027 20230502 20230421"
EDITIONS="text minimal gui"
RELEASES=""
EDITIONS=""
function releases_() {
#shellcheck disable=SC2046,SC2005

View File

@ -7,7 +7,7 @@ HOMEPAGE="https://sourceforge.net/projects/pb-gh-releases"
CREDENTIALS="-"
RELEASES="250301 250201 250101"
RELEASES="250314 250301 250201 250101"
EDITIONS="VoidPup64 S15Pup64 BookwormPup64-ghtest"
function releases_() {

5
public/tmp_agarimos Normal file
View File

@ -0,0 +1,5 @@
agarimos latest plasma
agarimos latest xfce4
agarimos latest cinnamon
agarimos latest lxqt-kwin
agarimos latest gnome

6
public/tmp_alma Normal file
View File

@ -0,0 +1,6 @@
alma 9 boot
alma 9 minimal
alma 9 dvd
alma 8 boot
alma 8 minimal
alma 8 dvd

30
public/tmp_alpine Normal file
View File

@ -0,0 +1,30 @@
alpine v3.21 boot
alpine v3.21 minimal
alpine v3.21 dvd
alpine v3.20 boot
alpine v3.20 minimal
alpine v3.20 dvd
alpine v3.19 boot
alpine v3.19 minimal
alpine v3.19 dvd
alpine v3.18 boot
alpine v3.18 minimal
alpine v3.18 dvd
alpine v3.17 boot
alpine v3.17 minimal
alpine v3.17 dvd
alpine v3.16 boot
alpine v3.16 minimal
alpine v3.16 dvd
alpine v3.15 boot
alpine v3.15 minimal
alpine v3.15 dvd
alpine v3.14 boot
alpine v3.14 minimal
alpine v3.14 dvd
alpine v3.13 boot
alpine v3.13 minimal
alpine v3.13 dvd
alpine v3.12 boot
alpine v3.12 minimal
alpine v3.12 dvd

6
public/tmp_android Normal file
View File

@ -0,0 +1,6 @@
android 9.0 x86_64
android 9.0 x86
android 8.1 x86_64
android 8.1 x86
android 7.1 x86_64
android 7.1 x86

40
public/tmp_antix Normal file
View File

@ -0,0 +1,40 @@
antix 23.2 net-sysv
antix 23.2 core-sysv
antix 23.2 base-sysv
antix 23.2 full-sysv
antix 23.2 net-runit
antix 23.2 core-runit
antix 23.2 base-runit
antix 23.2 full-runit
antix 23.1 net-sysv
antix 23.1 core-sysv
antix 23.1 base-sysv
antix 23.1 full-sysv
antix 23.1 net-runit
antix 23.1 core-runit
antix 23.1 base-runit
antix 23.1 full-runit
antix 23 net-sysv
antix 23 core-sysv
antix 23 base-sysv
antix 23 full-sysv
antix 23 net-runit
antix 23 core-runit
antix 23 base-runit
antix 23 full-runit
antix 22 net-sysv
antix 22 core-sysv
antix 22 base-sysv
antix 22 full-sysv
antix 22 net-runit
antix 22 core-runit
antix 22 base-runit
antix 22 full-runit
antix 21 net-sysv
antix 21 core-sysv
antix 21 base-sysv
antix 21 full-sysv
antix 21 net-runit
antix 21 core-runit
antix 21 base-runit
antix 21 full-runit

8
public/tmp_archcraft Normal file
View File

@ -0,0 +1,8 @@
archcraft latest net-sysv
archcraft latest core-sysv
archcraft latest base-sysv
archcraft latest full-sysv
archcraft latest net-runit
archcraft latest core-runit
archcraft latest base-runit
archcraft latest full-runit

8
public/tmp_archlinux Normal file
View File

@ -0,0 +1,8 @@
archlinux latest net-sysv
archlinux latest core-sysv
archlinux latest base-sysv
archlinux latest full-sysv
archlinux latest net-runit
archlinux latest core-runit
archlinux latest base-runit
archlinux latest full-runit

15
public/tmp_arco Normal file
View File

@ -0,0 +1,15 @@
arco v25.04.01 net
arco v25.04.01 plasma
arco v25.04.01 pro
arco v25.03.05 net
arco v25.03.05 plasma
arco v25.03.05 pro
arco v25.02.04 net
arco v25.02.04 plasma
arco v25.02.04 pro
arco v25.01.05 net
arco v25.01.05 plasma
arco v25.01.05 pro
arco v25.01.01 net
arco v25.01.01 plasma
arco v25.01.01 pro

30
public/tmp_artixlinux Normal file
View File

@ -0,0 +1,30 @@
artixlinux 20250310 base-dinit
artixlinux 20250310 base-openrc
artixlinux 20250310 base-runit
artixlinux 20250310 base-s6
artixlinux 20250310 cinnamon-dinit
artixlinux 20250310 cinnamon-openrc
artixlinux 20250310 cinnamon-runit
artixlinux 20250310 cinnamon-s6
artixlinux 20250310 community-gtk
artixlinux 20250310 community-qt
artixlinux 20250310 lxde-dinit
artixlinux 20250310 lxde-openrc
artixlinux 20250310 lxde-runit
artixlinux 20250310 lxde-s6
artixlinux 20250310 lxqt-dinit
artixlinux 20250310 lxqt-openrc
artixlinux 20250310 lxqt-runit
artixlinux 20250310 lxqt-s6
artixlinux 20250310 mate-dinit
artixlinux 20250310 mate-openrc
artixlinux 20250310 mate-runit
artixlinux 20250310 mate-s6
artixlinux 20250310 plasma-dinit
artixlinux 20250310 plasma-openrc
artixlinux 20250310 plasma-runit
artixlinux 20250310 plasma-s6
artixlinux 20250310 xfce-dinit
artixlinux 20250310 xfce-openrc
artixlinux 20250310 xfce-runit
artixlinux 20250310 xfce-s6

60
public/tmp_athenaos Normal file
View File

@ -0,0 +1,60 @@
athenaos v23.06.23 base-dinit
athenaos v23.06.23 base-openrc
athenaos v23.06.23 base-runit
athenaos v23.06.23 base-s6
athenaos v23.06.23 cinnamon-dinit
athenaos v23.06.23 cinnamon-openrc
athenaos v23.06.23 cinnamon-runit
athenaos v23.06.23 cinnamon-s6
athenaos v23.06.23 community-gtk
athenaos v23.06.23 community-qt
athenaos v23.06.23 lxde-dinit
athenaos v23.06.23 lxde-openrc
athenaos v23.06.23 lxde-runit
athenaos v23.06.23 lxde-s6
athenaos v23.06.23 lxqt-dinit
athenaos v23.06.23 lxqt-openrc
athenaos v23.06.23 lxqt-runit
athenaos v23.06.23 lxqt-s6
athenaos v23.06.23 mate-dinit
athenaos v23.06.23 mate-openrc
athenaos v23.06.23 mate-runit
athenaos v23.06.23 mate-s6
athenaos v23.06.23 plasma-dinit
athenaos v23.06.23 plasma-openrc
athenaos v23.06.23 plasma-runit
athenaos v23.06.23 plasma-s6
athenaos v23.06.23 xfce-dinit
athenaos v23.06.23 xfce-openrc
athenaos v23.06.23 xfce-runit
athenaos v23.06.23 xfce-s6
athenaos v23.11 base-dinit
athenaos v23.11 base-openrc
athenaos v23.11 base-runit
athenaos v23.11 base-s6
athenaos v23.11 cinnamon-dinit
athenaos v23.11 cinnamon-openrc
athenaos v23.11 cinnamon-runit
athenaos v23.11 cinnamon-s6
athenaos v23.11 community-gtk
athenaos v23.11 community-qt
athenaos v23.11 lxde-dinit
athenaos v23.11 lxde-openrc
athenaos v23.11 lxde-runit
athenaos v23.11 lxde-s6
athenaos v23.11 lxqt-dinit
athenaos v23.11 lxqt-openrc
athenaos v23.11 lxqt-runit
athenaos v23.11 lxqt-s6
athenaos v23.11 mate-dinit
athenaos v23.11 mate-openrc
athenaos v23.11 mate-runit
athenaos v23.11 mate-s6
athenaos v23.11 plasma-dinit
athenaos v23.11 plasma-openrc
athenaos v23.11 plasma-runit
athenaos v23.11 plasma-s6
athenaos v23.11 xfce-dinit
athenaos v23.11 xfce-openrc
athenaos v23.11 xfce-runit
athenaos v23.11 xfce-s6

150
public/tmp_batocera Normal file
View File

@ -0,0 +1,150 @@
batocera 41 base-dinit
batocera 41 base-openrc
batocera 41 base-runit
batocera 41 base-s6
batocera 41 cinnamon-dinit
batocera 41 cinnamon-openrc
batocera 41 cinnamon-runit
batocera 41 cinnamon-s6
batocera 41 community-gtk
batocera 41 community-qt
batocera 41 lxde-dinit
batocera 41 lxde-openrc
batocera 41 lxde-runit
batocera 41 lxde-s6
batocera 41 lxqt-dinit
batocera 41 lxqt-openrc
batocera 41 lxqt-runit
batocera 41 lxqt-s6
batocera 41 mate-dinit
batocera 41 mate-openrc
batocera 41 mate-runit
batocera 41 mate-s6
batocera 41 plasma-dinit
batocera 41 plasma-openrc
batocera 41 plasma-runit
batocera 41 plasma-s6
batocera 41 xfce-dinit
batocera 41 xfce-openrc
batocera 41 xfce-runit
batocera 41 xfce-s6
batocera 40 base-dinit
batocera 40 base-openrc
batocera 40 base-runit
batocera 40 base-s6
batocera 40 cinnamon-dinit
batocera 40 cinnamon-openrc
batocera 40 cinnamon-runit
batocera 40 cinnamon-s6
batocera 40 community-gtk
batocera 40 community-qt
batocera 40 lxde-dinit
batocera 40 lxde-openrc
batocera 40 lxde-runit
batocera 40 lxde-s6
batocera 40 lxqt-dinit
batocera 40 lxqt-openrc
batocera 40 lxqt-runit
batocera 40 lxqt-s6
batocera 40 mate-dinit
batocera 40 mate-openrc
batocera 40 mate-runit
batocera 40 mate-s6
batocera 40 plasma-dinit
batocera 40 plasma-openrc
batocera 40 plasma-runit
batocera 40 plasma-s6
batocera 40 xfce-dinit
batocera 40 xfce-openrc
batocera 40 xfce-runit
batocera 40 xfce-s6
batocera 39 base-dinit
batocera 39 base-openrc
batocera 39 base-runit
batocera 39 base-s6
batocera 39 cinnamon-dinit
batocera 39 cinnamon-openrc
batocera 39 cinnamon-runit
batocera 39 cinnamon-s6
batocera 39 community-gtk
batocera 39 community-qt
batocera 39 lxde-dinit
batocera 39 lxde-openrc
batocera 39 lxde-runit
batocera 39 lxde-s6
batocera 39 lxqt-dinit
batocera 39 lxqt-openrc
batocera 39 lxqt-runit
batocera 39 lxqt-s6
batocera 39 mate-dinit
batocera 39 mate-openrc
batocera 39 mate-runit
batocera 39 mate-s6
batocera 39 plasma-dinit
batocera 39 plasma-openrc
batocera 39 plasma-runit
batocera 39 plasma-s6
batocera 39 xfce-dinit
batocera 39 xfce-openrc
batocera 39 xfce-runit
batocera 39 xfce-s6
batocera 38 base-dinit
batocera 38 base-openrc
batocera 38 base-runit
batocera 38 base-s6
batocera 38 cinnamon-dinit
batocera 38 cinnamon-openrc
batocera 38 cinnamon-runit
batocera 38 cinnamon-s6
batocera 38 community-gtk
batocera 38 community-qt
batocera 38 lxde-dinit
batocera 38 lxde-openrc
batocera 38 lxde-runit
batocera 38 lxde-s6
batocera 38 lxqt-dinit
batocera 38 lxqt-openrc
batocera 38 lxqt-runit
batocera 38 lxqt-s6
batocera 38 mate-dinit
batocera 38 mate-openrc
batocera 38 mate-runit
batocera 38 mate-s6
batocera 38 plasma-dinit
batocera 38 plasma-openrc
batocera 38 plasma-runit
batocera 38 plasma-s6
batocera 38 xfce-dinit
batocera 38 xfce-openrc
batocera 38 xfce-runit
batocera 38 xfce-s6
batocera 37 base-dinit
batocera 37 base-openrc
batocera 37 base-runit
batocera 37 base-s6
batocera 37 cinnamon-dinit
batocera 37 cinnamon-openrc
batocera 37 cinnamon-runit
batocera 37 cinnamon-s6
batocera 37 community-gtk
batocera 37 community-qt
batocera 37 lxde-dinit
batocera 37 lxde-openrc
batocera 37 lxde-runit
batocera 37 lxde-s6
batocera 37 lxqt-dinit
batocera 37 lxqt-openrc
batocera 37 lxqt-runit
batocera 37 lxqt-s6
batocera 37 mate-dinit
batocera 37 mate-openrc
batocera 37 mate-runit
batocera 37 mate-s6
batocera 37 plasma-dinit
batocera 37 plasma-openrc
batocera 37 plasma-runit
batocera 37 plasma-s6
batocera 37 xfce-dinit
batocera 37 xfce-openrc
batocera 37 xfce-runit
batocera 37 xfce-s6

2
public/tmp_bazzite Normal file
View File

@ -0,0 +1,2 @@
bazzite latest gnome
bazzite latest kde

3
public/tmp_biglinux Normal file
View File

@ -0,0 +1,3 @@
biglinux 2025-03-15 k613
biglinux 2025-03-15 k612
biglinux 2025-03-15 k66

4
public/tmp_bodhi Normal file
View File

@ -0,0 +1,4 @@
bodhi 7.0.0 standard
bodhi 7.0.0 hwe
bodhi 7.0.0 s76
bodhi 7.0.0 apppack

4
public/tmp_bunsenlabs Normal file
View File

@ -0,0 +1,4 @@
bunsenlabs boron standard
bunsenlabs boron hwe
bunsenlabs boron s76
bunsenlabs boron apppack

2
public/tmp_cachyos Normal file
View File

@ -0,0 +1,2 @@
cachyos latest desktop
cachyos latest handheld

4
public/tmp_centos-stream Normal file
View File

@ -0,0 +1,4 @@
centos-stream 10 boot
centos-stream 10 dvd1
centos-stream 9 boot
centos-stream 9 dvd1

6
public/tmp_cereus Normal file
View File

@ -0,0 +1,6 @@
cereus latest base
cereus latest musl-base
cereus latest lxqt
cereus latest musl-lxqt
cereus latest xfce
cereus latest musl-xfce

2
public/tmp_chimeralinux Normal file
View File

@ -0,0 +1,2 @@
chimeralinux latest base
chimeralinux latest gnome

8
public/tmp_crunchbang++ Normal file
View File

@ -0,0 +1,8 @@
crunchbang++ 12.0 base
crunchbang++ 12.0 gnome
crunchbang++ 11.2 base
crunchbang++ 11.2 gnome
crunchbang++ 10.1 base
crunchbang++ 10.1 gnome
crunchbang++ 9.0 base
crunchbang++ 9.0 gnome

27
public/tmp_debian Normal file
View File

@ -0,0 +1,27 @@
debian 12.10.0 standard
debian 12.10.0 cinnamon
debian 12.10.0 gnome
debian 12.10.0 kde
debian 12.10.0 lxde
debian 12.10.0 lxqt
debian 12.10.0 mate
debian 12.10.0 xfce
debian 12.10.0 netinst
debian 11.11.0 standard
debian 11.11.0 cinnamon
debian 11.11.0 gnome
debian 11.11.0 kde
debian 11.11.0 lxde
debian 11.11.0 lxqt
debian 11.11.0 mate
debian 11.11.0 xfce
debian 11.11.0 netinst
debian 10.13.0 standard
debian 10.13.0 cinnamon
debian 10.13.0 gnome
debian 10.13.0 kde
debian 10.13.0 lxde
debian 10.13.0 lxqt
debian 10.13.0 mate
debian 10.13.0 xfce
debian 10.13.0 netinst

27
public/tmp_deepin Normal file
View File

@ -0,0 +1,27 @@
deepin 25-alpha standard
deepin 25-alpha cinnamon
deepin 25-alpha gnome
deepin 25-alpha kde
deepin 25-alpha lxde
deepin 25-alpha lxqt
deepin 25-alpha mate
deepin 25-alpha xfce
deepin 25-alpha netinst
deepin 23 standard
deepin 23 cinnamon
deepin 23 gnome
deepin 23 kde
deepin 23 lxde
deepin 23 lxqt
deepin 23 mate
deepin 23 xfce
deepin 23 netinst
deepin 20.9 standard
deepin 20.9 cinnamon
deepin 20.9 gnome
deepin 20.9 kde
deepin 20.9 lxde
deepin 20.9 lxqt
deepin 20.9 mate
deepin 20.9 xfce
deepin 20.9 netinst

27
public/tmp_devuan Normal file
View File

@ -0,0 +1,27 @@
devuan daedalus standard
devuan daedalus cinnamon
devuan daedalus gnome
devuan daedalus kde
devuan daedalus lxde
devuan daedalus lxqt
devuan daedalus mate
devuan daedalus xfce
devuan daedalus netinst
devuan chimaera standard
devuan chimaera cinnamon
devuan chimaera gnome
devuan chimaera kde
devuan chimaera lxde
devuan chimaera lxqt
devuan chimaera mate
devuan chimaera xfce
devuan chimaera netinst
devuan beowulf standard
devuan beowulf cinnamon
devuan beowulf gnome
devuan beowulf kde
devuan beowulf lxde
devuan beowulf lxqt
devuan beowulf mate
devuan beowulf xfce
devuan beowulf netinst

6
public/tmp_dietpi Normal file
View File

@ -0,0 +1,6 @@
dietpi bios Bookworm
dietpi bios Bullseye
dietpi bios Trixie
dietpi uefi Bookworm
dietpi uefi Bullseye
dietpi uefi Trixie

69
public/tmp_dragonflybsd Normal file
View File

@ -0,0 +1,69 @@
dragonflybsd 6.4.0 Bookworm
dragonflybsd 6.4.0 Bullseye
dragonflybsd 6.4.0 Trixie
dragonflybsd 6.2.2 Bookworm
dragonflybsd 6.2.2 Bullseye
dragonflybsd 6.2.2 Trixie
dragonflybsd 6.2.1 Bookworm
dragonflybsd 6.2.1 Bullseye
dragonflybsd 6.2.1 Trixie
dragonflybsd 6.0.1 Bookworm
dragonflybsd 6.0.1 Bullseye
dragonflybsd 6.0.1 Trixie
dragonflybsd 6.0.0 Bookworm
dragonflybsd 6.0.0 Bullseye
dragonflybsd 6.0.0 Trixie
dragonflybsd 5.8.3 Bookworm
dragonflybsd 5.8.3 Bullseye
dragonflybsd 5.8.3 Trixie
dragonflybsd 5.8.2 Bookworm
dragonflybsd 5.8.2 Bullseye
dragonflybsd 5.8.2 Trixie
dragonflybsd 5.8.1 Bookworm
dragonflybsd 5.8.1 Bullseye
dragonflybsd 5.8.1 Trixie
dragonflybsd 5.6.3 Bookworm
dragonflybsd 5.6.3 Bullseye
dragonflybsd 5.6.3 Trixie
dragonflybsd 5.8.0 Bookworm
dragonflybsd 5.8.0 Bullseye
dragonflybsd 5.8.0 Trixie
dragonflybsd 5.6.2 Bookworm
dragonflybsd 5.6.2 Bullseye
dragonflybsd 5.6.2 Trixie
dragonflybsd 5.6.1 Bookworm
dragonflybsd 5.6.1 Bullseye
dragonflybsd 5.6.1 Trixie
dragonflybsd 5.6.0 Bookworm
dragonflybsd 5.6.0 Bullseye
dragonflybsd 5.6.0 Trixie
dragonflybsd 5.4.3 Bookworm
dragonflybsd 5.4.3 Bullseye
dragonflybsd 5.4.3 Trixie
dragonflybsd 5.4.2 Bookworm
dragonflybsd 5.4.2 Bullseye
dragonflybsd 5.4.2 Trixie
dragonflybsd 5.4.1 Bookworm
dragonflybsd 5.4.1 Bullseye
dragonflybsd 5.4.1 Trixie
dragonflybsd 5.4.0 Bookworm
dragonflybsd 5.4.0 Bullseye
dragonflybsd 5.4.0 Trixie
dragonflybsd 5.2.2 Bookworm
dragonflybsd 5.2.2 Bullseye
dragonflybsd 5.2.2 Trixie
dragonflybsd 5.2.1 Bookworm
dragonflybsd 5.2.1 Bullseye
dragonflybsd 5.2.1 Trixie
dragonflybsd 5.2.0 Bookworm
dragonflybsd 5.2.0 Bullseye
dragonflybsd 5.2.0 Trixie
dragonflybsd 5.0.2 Bookworm
dragonflybsd 5.0.2 Bullseye
dragonflybsd 5.0.2 Trixie
dragonflybsd 5.0.1 Bookworm
dragonflybsd 5.0.1 Bullseye
dragonflybsd 5.0.1 Trixie
dragonflybsd 5.0.0 Bookworm
dragonflybsd 5.0.0 Bullseye
dragonflybsd 5.0.0 Trixie

2
public/tmp_dsl Normal file
View File

@ -0,0 +1,2 @@
dsl 2024.rc7 lz4
dsl 2024.rc7 cdrom

4
public/tmp_easyos Normal file
View File

@ -0,0 +1,4 @@
easyos 5.8.5 lz4
easyos 5.8.5 cdrom
easyos 5.8.5 lz4
easyos 5.8.5 cdrom

6
public/tmp_edubuntu Normal file
View File

@ -0,0 +1,6 @@
edubuntu 24.04 lz4
edubuntu 24.04 cdrom
edubuntu 24.10 lz4
edubuntu 24.10 cdrom
edubuntu daily-live lz4
edubuntu daily-live cdrom

6
public/tmp_elementary Normal file
View File

@ -0,0 +1,6 @@
elementary 8.0 lz4
elementary 8.0 cdrom
elementary 7.1 lz4
elementary 7.1 cdrom
elementary 7.0 lz4
elementary 7.0 cdrom

10
public/tmp_endeavouros Normal file
View File

@ -0,0 +1,10 @@
endeavouros mercury-neo-2025.03.19 lz4
endeavouros mercury-neo-2025.03.19 cdrom
endeavouros mercury-2025.02.08 lz4
endeavouros mercury-2025.02.08 cdrom
endeavouros gemini-2024.04.20 lz4
endeavouros gemini-2024.04.20 cdrom
endeavouros galileo-neo-2024.01.25 lz4
endeavouros galileo-neo-2024.01.25 cdrom
endeavouros galileo-11-2023 lz4
endeavouros galileo-11-2023 cdrom

5
public/tmp_endless Normal file
View File

@ -0,0 +1,5 @@
endless 6.0.4 base
endless 6.0.4 en
endless 6.0.4 fr
endless 6.0.4 pt_BR
endless 6.0.4 es

63
public/tmp_fedora Normal file
View File

@ -0,0 +1,63 @@
fedora 42_Beta Budgie
fedora 42_Beta COSMIC
fedora 42_Beta Cinnamon
fedora 42_Beta KDE
fedora 42_Beta KDE_Mobile
fedora 42_Beta Kinoite
fedora 42_Beta LXDE
fedora 42_Beta LXQt
fedora 42_Beta Mate
fedora 42_Beta MiracleWM
fedora 42_Beta Onyx
fedora 42_Beta Sericea
fedora 42_Beta Server
fedora 42_Beta Silverblue
fedora 42_Beta Sway
fedora 42_Beta Workstation
fedora 42_Beta Xfce
fedora 42_Beta i3
fedora 41 Budgie
fedora 41 Cinnamon
fedora 41 KDE
fedora 41 KDE_Mobile
fedora 41 Kinoite
fedora 41 LXDE
fedora 41 LXQt
fedora 41 Mate
fedora 41 MiracleWM
fedora 41 Onyx
fedora 41 Sericea
fedora 41 Server
fedora 41 Silverblue
fedora 41 Sway
fedora 41 Workstation
fedora 41 Xfce
fedora 41 i3
fedora 40 Budgie
fedora 40 Cinnamon
fedora 40 KDE
fedora 40 Kinoite
fedora 40 LXDE
fedora 40 LXQt
fedora 40 Mate
fedora 40 Onyx
fedora 40 Sericea
fedora 40 Server
fedora 40 Silverblue
fedora 40 Sway
fedora 40 Workstation
fedora 40 Xfce
fedora 40 i3
fedora 39 Budgie
fedora 39 Cinnamon
fedora 39 KDE
fedora 39 Kinoite
fedora 39 LXDE
fedora 39 LXQt
fedora 39 Mate
fedora 39 Server
fedora 39 Silverblue
fedora 39 Sway
fedora 39 Workstation
fedora 39 Xfce
fedora 39 i3

8
public/tmp_freebsd Normal file
View File

@ -0,0 +1,8 @@
freebsd 14.2 disc1
freebsd 14.2 dvd1
freebsd 14.1 disc1
freebsd 14.1 dvd1
freebsd 13.5 disc1
freebsd 13.5 dvd1
freebsd 13.4 disc1
freebsd 13.4 dvd1

4
public/tmp_freedos Normal file
View File

@ -0,0 +1,4 @@
freedos 1.3 disc1
freedos 1.3 dvd1
freedos 1.2 disc1
freedos 1.2 dvd1

2
public/tmp_fvoid Normal file
View File

@ -0,0 +1,2 @@
fvoid latest disc1
fvoid latest dvd1

3
public/tmp_gabeeos Normal file
View File

@ -0,0 +1,3 @@
gabeeos latest Openbox
gabeeos latest Qtile
gabeeos latest i3-gaps

10
public/tmp_garuda Normal file
View File

@ -0,0 +1,10 @@
garuda latest cinnamon
garuda latest dr460nized
garuda latest dr460nized-gaming
garuda latest gnome
garuda latest hyprland
garuda latest i3
garuda latest kde-lite
garuda latest mokka
garuda latest sway
garuda latest xfce

2
public/tmp_gentoo Normal file
View File

@ -0,0 +1,2 @@
gentoo latest minimal
gentoo latest livegui

6
public/tmp_ghostbsd Normal file
View File

@ -0,0 +1,6 @@
ghostbsd 25.01-R14.2p1 mate
ghostbsd 25.01-R14.2p1 xfce
ghostbsd 24.10.1 mate
ghostbsd 24.10.1 xfce
ghostbsd 24.07.3 mate
ghostbsd 24.07.3 xfce

64
public/tmp_gnomeos Normal file
View File

@ -0,0 +1,64 @@
gnomeos nightly mate
gnomeos nightly xfce
gnomeos 48.rc mate
gnomeos 48.rc xfce
gnomeos 48.beta mate
gnomeos 48.beta xfce
gnomeos 48.alpha mate
gnomeos 48.alpha xfce
gnomeos 48.0 mate
gnomeos 48.0 xfce
gnomeos 47.rc mate
gnomeos 47.rc xfce
gnomeos 47.beta mate
gnomeos 47.beta xfce
gnomeos 47.alpha mate
gnomeos 47.alpha xfce
gnomeos 47.0 mate
gnomeos 47.0 xfce
gnomeos 46.rc mate
gnomeos 46.rc xfce
gnomeos 46.beta mate
gnomeos 46.beta xfce
gnomeos 46.alpha mate
gnomeos 46.alpha xfce
gnomeos 46.0 mate
gnomeos 46.0 xfce
gnomeos 45.rc mate
gnomeos 45.rc xfce
gnomeos 45.beta mate
gnomeos 45.beta xfce
gnomeos 44.rc mate
gnomeos 44.rc xfce
gnomeos 44.beta mate
gnomeos 44.beta xfce
gnomeos 44.0 mate
gnomeos 44.0 xfce
gnomeos 43.beta mate
gnomeos 43.beta xfce
gnomeos 43.alpha mate
gnomeos 43.alpha xfce
gnomeos 43.0 mate
gnomeos 43.0 xfce
gnomeos 42.rc mate
gnomeos 42.rc xfce
gnomeos 42.beta mate
gnomeos 42.beta xfce
gnomeos 42.0 mate
gnomeos 42.0 xfce
gnomeos 41.rc mate
gnomeos 41.rc xfce
gnomeos 41.beta mate
gnomeos 41.beta xfce
gnomeos 41.0 mate
gnomeos 41.0 xfce
gnomeos 40.rc mate
gnomeos 40.rc xfce
gnomeos 40.beta mate
gnomeos 40.beta xfce
gnomeos 40.0 mate
gnomeos 40.0 xfce
gnomeos 3.38.1 mate
gnomeos 3.38.1 xfce
gnomeos 3.38.0 mate
gnomeos 3.38.0 xfce

4
public/tmp_guix Normal file
View File

@ -0,0 +1,4 @@
guix 1.4.0 mate
guix 1.4.0 xfce
guix 1.3.0 mate
guix 1.3.0 xfce

6
public/tmp_haiku Normal file
View File

@ -0,0 +1,6 @@
haiku r1beta5 x86_64
haiku r1beta5 x86_gcc2h
haiku r1beta4 x86_64
haiku r1beta4 x86_gcc2h
haiku r1beta3 x86_64
haiku r1beta3 x86_gcc2h

4
public/tmp_kali Normal file
View File

@ -0,0 +1,4 @@
kali current x86_64
kali current x86_gcc2h
kali kali-weekly x86_64
kali kali-weekly x86_gcc2h

8
public/tmp_kdeneon Normal file
View File

@ -0,0 +1,8 @@
kdeneon user x86_64
kdeneon user x86_gcc2h
kdeneon testing x86_64
kdeneon testing x86_gcc2h
kdeneon unstable x86_64
kdeneon unstable x86_gcc2h
kdeneon developer x86_64
kdeneon developer x86_gcc2h

2
public/tmp_kodachi Normal file
View File

@ -0,0 +1,2 @@
kodachi latest x86_64
kodachi latest x86_gcc2h

4
public/tmp_kolibrios Normal file
View File

@ -0,0 +1,4 @@
kolibrios latest en_US
kolibrios latest ru_RU
kolibrios latest it_IT
kolibrios latest es_ES

28
public/tmp_kubuntu Normal file
View File

@ -0,0 +1,28 @@
kubuntu 16.04 en_US
kubuntu 16.04 ru_RU
kubuntu 16.04 it_IT
kubuntu 16.04 es_ES
kubuntu 18.04 en_US
kubuntu 18.04 ru_RU
kubuntu 18.04 it_IT
kubuntu 18.04 es_ES
kubuntu 20.04 en_US
kubuntu 20.04 ru_RU
kubuntu 20.04 it_IT
kubuntu 20.04 es_ES
kubuntu 22.04 en_US
kubuntu 22.04 ru_RU
kubuntu 22.04 it_IT
kubuntu 22.04 es_ES
kubuntu 24.04 en_US
kubuntu 24.04 ru_RU
kubuntu 24.04 it_IT
kubuntu 24.04 es_ES
kubuntu 24.10 en_US
kubuntu 24.10 ru_RU
kubuntu 24.10 it_IT
kubuntu 24.10 es_ES
kubuntu daily-live en_US
kubuntu daily-live ru_RU
kubuntu daily-live it_IT
kubuntu daily-live es_ES

16
public/tmp_linuxlite Normal file
View File

@ -0,0 +1,16 @@
linuxlite 6.6 en_US
linuxlite 6.6 ru_RU
linuxlite 6.6 it_IT
linuxlite 6.6 es_ES
linuxlite 6.4 en_US
linuxlite 6.4 ru_RU
linuxlite 6.4 it_IT
linuxlite 6.4 es_ES
linuxlite 6.2 en_US
linuxlite 6.2 ru_RU
linuxlite 6.2 it_IT
linuxlite 6.2 es_ES
linuxlite 6.0 en_US
linuxlite 6.0 ru_RU
linuxlite 6.0 it_IT
linuxlite 6.0 es_ES

24
public/tmp_linuxmint Normal file
View File

@ -0,0 +1,24 @@
linuxmint 22.1 cinnamon
linuxmint 22.1 mate
linuxmint 22.1 xfce
linuxmint 22 cinnamon
linuxmint 22 mate
linuxmint 22 xfce
linuxmint 21.3 cinnamon
linuxmint 21.3 mate
linuxmint 21.3 xfce
linuxmint 21.2 cinnamon
linuxmint 21.2 mate
linuxmint 21.2 xfce
linuxmint 21.1 cinnamon
linuxmint 21.1 mate
linuxmint 21.1 xfce
linuxmint 21 cinnamon
linuxmint 21 mate
linuxmint 21 xfce
linuxmint 20.3 cinnamon
linuxmint 20.3 mate
linuxmint 20.3 xfce
linuxmint 20.2 cinnamon
linuxmint 20.2 mate
linuxmint 20.2 xfce

1
public/tmp_lmde Normal file
View File

@ -0,0 +1 @@
lmde 6 cinnamon

3
public/tmp_loc-os Normal file
View File

@ -0,0 +1,3 @@
loc-os latest lxde
loc-os latest xfce
loc-os latest kde

21
public/tmp_lubuntu Normal file
View File

@ -0,0 +1,21 @@
lubuntu 16.04 lxde
lubuntu 16.04 xfce
lubuntu 16.04 kde
lubuntu 18.04 lxde
lubuntu 18.04 xfce
lubuntu 18.04 kde
lubuntu 20.04 lxde
lubuntu 20.04 xfce
lubuntu 20.04 kde
lubuntu 22.04 lxde
lubuntu 22.04 xfce
lubuntu 22.04 kde
lubuntu 24.04 lxde
lubuntu 24.04 xfce
lubuntu 24.04 kde
lubuntu 24.10 lxde
lubuntu 24.10 xfce
lubuntu 24.10 kde
lubuntu daily-live lxde
lubuntu daily-live xfce
lubuntu daily-live kde

3
public/tmp_maboxlinux Normal file
View File

@ -0,0 +1,3 @@
maboxlinux latest lxde
maboxlinux latest xfce
maboxlinux latest kde

36
public/tmp_macos Normal file
View File

@ -0,0 +1,36 @@
macos mojave: http://oscdn.apple.com/content/downloads/04/36/041-94410/ge73si0bd3fdsdkfibykjgrlcfuzy1q9yx/RecoveryImage/BaseSystem.dmg
macos mojave lxde
macos mojave: http://oscdn.apple.com/content/downloads/04/36/041-94410/ge73si0bd3fdsdkfibykjgrlcfuzy1q9yx/RecoveryImage/BaseSystem.dmg
macos mojave xfce
macos mojave: http://oscdn.apple.com/content/downloads/04/36/041-94410/ge73si0bd3fdsdkfibykjgrlcfuzy1q9yx/RecoveryImage/BaseSystem.dmg
macos mojave kde
macos catalina: http://oscdn.apple.com/content/downloads/59/10/001-43312/oifium3yx72dhc4po3r65zfwblslmce191/RecoveryImage/BaseSystem.dmg
macos catalina lxde
macos catalina: http://oscdn.apple.com/content/downloads/59/10/001-43312/oifium3yx72dhc4po3r65zfwblslmce191/RecoveryImage/BaseSystem.dmg
macos catalina xfce
macos catalina: http://oscdn.apple.com/content/downloads/59/10/001-43312/oifium3yx72dhc4po3r65zfwblslmce191/RecoveryImage/BaseSystem.dmg
macos catalina kde
macos big-sur: http://oscdn.apple.com/content/downloads/41/28/071-71279/5djpevqmc2w0ti2c4n1m8mkz7fm791t1ic/RecoveryImage/BaseSystem.dmg
macos big-sur lxde
macos big-sur: http://oscdn.apple.com/content/downloads/41/28/071-71279/5djpevqmc2w0ti2c4n1m8mkz7fm791t1ic/RecoveryImage/BaseSystem.dmg
macos big-sur xfce
macos big-sur: http://oscdn.apple.com/content/downloads/41/28/071-71279/5djpevqmc2w0ti2c4n1m8mkz7fm791t1ic/RecoveryImage/BaseSystem.dmg
macos big-sur kde
macos monterey: http://oscdn.apple.com/content/downloads/59/11/012-51692/z29q5x5plswit63bvyxmubthavua9gbxic/RecoveryImage/BaseSystem.dmg
macos monterey lxde
macos monterey: http://oscdn.apple.com/content/downloads/59/11/012-51692/z29q5x5plswit63bvyxmubthavua9gbxic/RecoveryImage/BaseSystem.dmg
macos monterey xfce
macos monterey: http://oscdn.apple.com/content/downloads/59/11/012-51692/z29q5x5plswit63bvyxmubthavua9gbxic/RecoveryImage/BaseSystem.dmg
macos monterey kde
macos ventura: http://oscdn.apple.com/content/downloads/60/43/042-01871/sbembiob0hs1o92jfofalts02ux0x8rsra/RecoveryImage/BaseSystem.dmg
macos ventura lxde
macos ventura: http://oscdn.apple.com/content/downloads/60/43/042-01871/sbembiob0hs1o92jfofalts02ux0x8rsra/RecoveryImage/BaseSystem.dmg
macos ventura xfce
macos ventura: http://oscdn.apple.com/content/downloads/60/43/042-01871/sbembiob0hs1o92jfofalts02ux0x8rsra/RecoveryImage/BaseSystem.dmg
macos ventura kde
macos sonoma: http://oscdn.apple.com/content/downloads/14/00/082-01323/qbdhdewwbxiq2ppow3kyduslzd9c0ql0eu/RecoveryImage/BaseSystem.dmg
macos sonoma lxde
macos sonoma: http://oscdn.apple.com/content/downloads/14/00/082-01323/qbdhdewwbxiq2ppow3kyduslzd9c0ql0eu/RecoveryImage/BaseSystem.dmg
macos sonoma xfce
macos sonoma: http://oscdn.apple.com/content/downloads/14/00/082-01323/qbdhdewwbxiq2ppow3kyduslzd9c0ql0eu/RecoveryImage/BaseSystem.dmg
macos sonoma kde

6
public/tmp_mageia Normal file
View File

@ -0,0 +1,6 @@
mageia 9 Plasma
mageia 9 GNOME
mageia 9 Xfce
mageia 8 Plasma
mageia 8 GNOME
mageia 8 Xfce

12
public/tmp_manjaro Normal file
View File

@ -0,0 +1,12 @@
manjaro xfce full
manjaro xfce minimal
manjaro gnome full
manjaro gnome minimal
manjaro plasma full
manjaro plasma minimal
manjaro cinnamon full
manjaro cinnamon minimal
manjaro i3 full
manjaro i3 minimal
manjaro sway full
manjaro sway minimal

5
public/tmp_miyo Normal file
View File

@ -0,0 +1,5 @@
miyo 2022 Kwin
miyo 2022 Deboot-Ceres
miyo 2022 JWM
miyo 2022 Openbox
miyo 2022 MATE

3
public/tmp_mxlinux Normal file
View File

@ -0,0 +1,3 @@
mxlinux 23.5 Xfce
mxlinux 23.5 KDE
mxlinux 23.5 Fluxbox

3
public/tmp_netboot Normal file
View File

@ -0,0 +1,3 @@
netboot latest Xfce
netboot latest KDE
netboot latest Fluxbox

12
public/tmp_netbsd Normal file
View File

@ -0,0 +1,12 @@
netbsd 10.1 Xfce
netbsd 10.1 KDE
netbsd 10.1 Fluxbox
netbsd 10.0 Xfce
netbsd 10.0 KDE
netbsd 10.0 Fluxbox
netbsd 9.4 Xfce
netbsd 9.4 KDE
netbsd 9.4 Fluxbox
netbsd 9.3 Xfce
netbsd 9.3 KDE
netbsd 9.3 Fluxbox

3
public/tmp_nitrux Normal file
View File

@ -0,0 +1,3 @@
nitrux latest Xfce
nitrux latest KDE
nitrux latest Fluxbox

9
public/tmp_nixos Normal file
View File

@ -0,0 +1,9 @@
nixos unstable minimal
nixos unstable plasma
nixos unstable gnome
nixos 24.11 minimal
nixos 24.11 plasma
nixos 24.11 gnome
nixos 24.05 minimal
nixos 24.05 plasma
nixos 24.05 gnome

3
public/tmp_nwg-shell Normal file
View File

@ -0,0 +1,3 @@
nwg-shell 2025.02.23 minimal
nwg-shell 2025.02.23 plasma
nwg-shell 2025.02.23 gnome

6
public/tmp_openbsd Normal file
View File

@ -0,0 +1,6 @@
openbsd 7.6 minimal
openbsd 7.6 plasma
openbsd 7.6 gnome
openbsd 7.5 minimal
openbsd 7.5 plasma
openbsd 7.5 gnome

30
public/tmp_opensuse Normal file
View File

@ -0,0 +1,30 @@
opensuse tumbleweed gui
opensuse tumbleweed text
opensuse tumbleweed minimal
opensuse microos gui
opensuse microos text
opensuse microos minimal
opensuse aeon gui
opensuse aeon text
opensuse aeon minimal
opensuse 15.6 gui
opensuse 15.6 text
opensuse 15.6 minimal
opensuse 15.5 gui
opensuse 15.5 text
opensuse 15.5 minimal
opensuse 15.4 gui
opensuse 15.4 text
opensuse 15.4 minimal
opensuse 15.3 gui
opensuse 15.3 text
opensuse 15.3 minimal
opensuse 15.2 gui
opensuse 15.2 text
opensuse 15.2 minimal
opensuse 15.1 gui
opensuse 15.1 text
opensuse 15.1 minimal
opensuse 15.0 gui
opensuse 15.0 text
opensuse 15.0 minimal

39
public/tmp_oraclelinux Normal file
View File

@ -0,0 +1,39 @@
oraclelinux 9.3 gui
oraclelinux 9.3 text
oraclelinux 9.3 minimal
oraclelinux 9.2 gui
oraclelinux 9.2 text
oraclelinux 9.2 minimal
oraclelinux 9.1 gui
oraclelinux 9.1 text
oraclelinux 9.1 minimal
oraclelinux 9.0 gui
oraclelinux 9.0 text
oraclelinux 9.0 minimal
oraclelinux 8.9 gui
oraclelinux 8.9 text
oraclelinux 8.9 minimal
oraclelinux 8.8 gui
oraclelinux 8.8 text
oraclelinux 8.8 minimal
oraclelinux 8.7 gui
oraclelinux 8.7 text
oraclelinux 8.7 minimal
oraclelinux 8.6 gui
oraclelinux 8.6 text
oraclelinux 8.6 minimal
oraclelinux 8.5 gui
oraclelinux 8.5 text
oraclelinux 8.5 minimal
oraclelinux 8.4 gui
oraclelinux 8.4 text
oraclelinux 8.4 minimal
oraclelinux 7.9 gui
oraclelinux 7.9 text
oraclelinux 7.9 minimal
oraclelinux 7.8 gui
oraclelinux 7.8 text
oraclelinux 7.8 minimal
oraclelinux 7.7 gui
oraclelinux 7.7 text
oraclelinux 7.7 minimal

9
public/tmp_parrotsec Normal file
View File

@ -0,0 +1,9 @@
parrotsec 6.3.2 home
parrotsec 6.3.2 htb
parrotsec 6.3.2 security
parrotsec 6.2 home
parrotsec 6.2 htb
parrotsec 6.2 security
parrotsec 6.1 home
parrotsec 6.1 htb
parrotsec 6.1 security

12
public/tmp_pbpuppy Normal file
View File

@ -0,0 +1,12 @@
pbpuppy 250101 BookwormPup64-ghtest
pbpuppy 250101 S15Pup64
pbpuppy 250101 VoidPup64
pbpuppy 250201 BookwormPup64-ghtest
pbpuppy 250201 S15Pup64
pbpuppy 250201 VoidPup64
pbpuppy 250301 BookwormPup64-ghtest
pbpuppy 250301 S15Pup64
pbpuppy 250301 VoidPup64
pbpuppy 250314 BookwormPup64-ghtest
pbpuppy 250314 S15Pup64
pbpuppy 250314 VoidPup64

4
public/tmp_peppermint Normal file
View File

@ -0,0 +1,4 @@
peppermint latest devuan-xfce
peppermint latest devuan-gnome
peppermint latest debian-xfce
peppermint latest debian-gnome

4
public/tmp_popos Normal file
View File

@ -0,0 +1,4 @@
popos 22.04 intel
popos 22.04 nvidia
popos 20.04 intel
popos 20.04 nvidia

8
public/tmp_porteus Normal file
View File

@ -0,0 +1,8 @@
porteus 5.01 cinnamon
porteus 5.01 gnome
porteus 5.01 kde
porteus 5.01 lxde
porteus 5.01 lxqt
porteus 5.01 mate
porteus 5.01 openbox
porteus 5.01 xfce

1
public/tmp_primtux Normal file
View File

@ -0,0 +1 @@
primtux 7 2022-10

5
public/tmp_proxmox-ve Normal file
View File

@ -0,0 +1,5 @@
proxmox-ve 8.3-1 2022-10
proxmox-ve 8.2-2 2022-10
proxmox-ve 7.4-1 2022-10
proxmox-ve 6.4-1 2022-10
proxmox-ve 5.4-1 2022-10

2
public/tmp_pureos Normal file
View File

@ -0,0 +1,2 @@
pureos 10.3 gnome
pureos 10.3 plasma

2
public/tmp_reactos Normal file
View File

@ -0,0 +1,2 @@
reactos latest gnome
reactos latest plasma

View File

@ -1 +1,2 @@
rebornos latest: https://cdn.soulharsh007.dev/RebornOS-ISO/rebornos_iso-2024.08.03-x86_64.iso
rebornos latest gnome
rebornos latest plasma

2
public/tmp_rhino Normal file
View File

@ -0,0 +1,2 @@
rhino 2025.1 gnome
rhino 2025.1 plasma

39
public/tmp_rockylinux Normal file
View File

@ -0,0 +1,39 @@
rockylinux 9.5 minimal
rockylinux 9.5 dvd
rockylinux 9.5 boot
rockylinux 9.4 minimal
rockylinux 9.4 dvd
rockylinux 9.4 boot
rockylinux 9.3 minimal
rockylinux 9.3 dvd
rockylinux 9.3 boot
rockylinux 9.2 minimal
rockylinux 9.2 dvd
rockylinux 9.2 boot
rockylinux 9.1 minimal
rockylinux 9.1 dvd
rockylinux 9.1 boot
rockylinux 9.0 minimal
rockylinux 9.0 dvd
rockylinux 9.0 boot
rockylinux 8.9 minimal
rockylinux 8.9 dvd
rockylinux 8.9 boot
rockylinux 8.8 minimal
rockylinux 8.8 dvd
rockylinux 8.8 boot
rockylinux 8.7 minimal
rockylinux 8.7 dvd
rockylinux 8.7 boot
rockylinux 8.6 minimal
rockylinux 8.6 dvd
rockylinux 8.6 boot
rockylinux 8.5 minimal
rockylinux 8.5 dvd
rockylinux 8.5 boot
rockylinux 8.4 minimal
rockylinux 8.4 dvd
rockylinux 8.4 boot
rockylinux 8.3 minimal
rockylinux 8.3 dvd
rockylinux 8.3 boot

5
public/tmp_siduction Normal file
View File

@ -0,0 +1,5 @@
siduction latest kde
siduction latest lxqt
siduction latest nox
siduction latest xfce
siduction latest xorg

25
public/tmp_slackware Normal file
View File

@ -0,0 +1,25 @@
slackware 15.0 kde
slackware 15.0 lxqt
slackware 15.0 nox
slackware 15.0 xfce
slackware 15.0 xorg
slackware 14.2 kde
slackware 14.2 lxqt
slackware 14.2 nox
slackware 14.2 xfce
slackware 14.2 xorg
slackware 14.1 kde
slackware 14.1 lxqt
slackware 14.1 nox
slackware 14.1 xfce
slackware 14.1 xorg
slackware 14.0 kde
slackware 14.0 lxqt
slackware 14.0 nox
slackware 14.0 xfce
slackware 14.0 xorg
slackware 13.37 kde
slackware 13.37 lxqt
slackware 13.37 nox
slackware 13.37 xfce
slackware 13.37 xorg

2
public/tmp_slax Normal file
View File

@ -0,0 +1,2 @@
slax latest debian
slax latest slackware

Some files were not shown because too many files have changed in this diff Show More