123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097 |
- endpoints:
- ubuntu-18.04-live-kernel:
- path: /ubuntu-core-18.04/releases/download/18.04.5-a39e0666/
- files:
- - initrd
- - vmlinuz
- os: ubuntu
- version: '18.04'
- ubuntu-18.04-default-squash:
- path: /ubuntu-squash/releases/download/18.04.5-0dd1e29b/
- files:
- - filesystem.squashfs
- os: ubuntu
- version: '18.04'
- flavor: GNOME
- kernel: ubuntu-18.04-live-kernel
- debian-10-live-kernel:
- path: /debian-core-10/releases/download/10.12.0-cb83d5e9/
- files:
- - initrd
- - vmlinuz
- os: debian
- version: '10'
- debian-9-live-kernel:
- path: /debian-core-9/releases/download/4.9.189-3-44deb8e4/
- files:
- - initrd
- - vmlinuz
- os: debian
- version: 9
- debian-10-default-squash:
- path: /debian-squash/releases/download/10.10.0-9728909e/
- files:
- - filesystem.squashfs
- os: debian
- version: '10'
- flavor: core
- kernel: debian-10-live-kernel
- ubuntu-18.04-xfce-squash:
- path: /ubuntu-squash/releases/download/18.04.5-deb1481b/
- files:
- - filesystem.squashfs
- os: ubuntu
- version: '18.04'
- flavor: xfce
- kernel: ubuntu-18.04-live-kernel
- ubuntu-18.04-KDE-squash:
- path: /ubuntu-squash/releases/download/18.04.5-8851e4fc/
- files:
- - filesystem.squashfs
- os: ubuntu
- version: '18.04'
- flavor: KDE
- kernel: ubuntu-18.04-live-kernel
- ubuntu-18.04-Budgie-squash:
- path: /ubuntu-squash/releases/download/18.04.5-1b496cd5/
- files:
- - filesystem.squashfs
- os: ubuntu
- version: '18.04'
- flavor: Budgie
- kernel: ubuntu-18.04-live-kernel
- ubuntu-18.04-MATE-squash:
- path: /ubuntu-squash/releases/download/18.04.5-5eee48de/
- files:
- - filesystem.squashfs
- os: ubuntu
- version: '18.04'
- flavor: MATE
- kernel: ubuntu-18.04-live-kernel
- ubuntu-18.04-kylin-squash:
- path: /ubuntu-squash/releases/download/18.04.5-d16115b5/
- files:
- - filesystem.squashfs
- os: ubuntu
- version: '18.04'
- flavor: kylin
- kernel: ubuntu-18.04-live-kernel
- debian-10-xfce-squash:
- path: /debian-squash/releases/download/10.10.0-e94fae4e/
- files:
- - filesystem.squashfs
- os: debian
- version: '10'
- flavor: xfce
- kernel: debian-10-live-kernel
- debian-10-gnome-squash:
- path: /debian-squash/releases/download/10.10.0-13fd68d4/
- files:
- - filesystem.squashfs
- os: debian
- version: '10'
- flavor: gnome
- kernel: debian-10-live-kernel
- debian-10-cinnamon-squash:
- path: /debian-squash/releases/download/10.10.0-77fb8dba/
- files:
- - filesystem.squashfs
- os: debian
- version: '10'
- flavor: cinnamon
- kernel: debian-10-live-kernel
- debian-10-kde-squash:
- path: /debian-squash/releases/download/10.10.0-fc058090/
- files:
- - filesystem.squashfs
- os: debian
- version: '10'
- flavor: kde
- kernel: debian-10-live-kernel
- debian-10-lxde-squash:
- path: /debian-squash/releases/download/10.10.0-ae0d6ef2/
- files:
- - filesystem.squashfs
- os: debian
- version: '10'
- flavor: lxde
- kernel: debian-10-live-kernel
- debian-10-lxqt-squash:
- path: /debian-squash/releases/download/10.10.0-92b8fed6/
- files:
- - filesystem.squashfs
- os: debian
- version: '10'
- flavor: lxqt
- kernel: debian-10-live-kernel
- debian-10-mate-squash:
- path: /debian-squash/releases/download/10.10.0-e397bfb9/
- files:
- - filesystem.squashfs
- os: debian
- version: '10'
- flavor: mate
- kernel: debian-10-live-kernel
- kali-xfce-squash:
- path: /debian-squash/releases/download/2023.1-aee4a172/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: kali
- version: '2023.1'
- flavor: xfce
- kernel: kali-xfce-squash
- pop-19.10-default-squash:
- path: /ubuntu-squash/releases/download/10-bdc3fe0a/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: pop
- version: '19.10'
- kernel: pop-19.10-default-squash
- flavor: intel-amd
- pop-18.04-default-squash:
- path: /ubuntu-squash/releases/download/58-600b3df6/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: pop
- version: '18.04'
- kernel: pop-18.04-default-squash
- flavor: intel-amd
- mint-19-xfce-squash:
- path: /ubuntu-squash/releases/download/19.3-2ab2d1ac/
- files:
- - filesystem.squashfs
- os: mint
- version: '19'
- flavor: xfce
- kernel: mint-19-cinnamon-squash
- mint-19-mate-squash:
- path: /ubuntu-squash/releases/download/19.3-0b1e2ee6/
- files:
- - filesystem.squashfs
- os: mint
- version: '19'
- flavor: MATE
- kernel: ubuntu-18.04-live-kernel
- mint-19-cinnamon-squash:
- path: /ubuntu-squash/releases/download/19.3-07dde199/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: mint
- version: '19'
- flavor: Cinnamon
- kernel: mint-19-cinnamon-squash
- zorin-15-gnome-squash:
- path: /ubuntu-squash/releases/download/15-5baaa5e8/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: zorin
- version: '15'
- flavor: GNOME
- kernel: zorin-15-gnome-squash
- zorin-15-xfce-squash:
- path: /ubuntu-squash/releases/download/15-b47e733d/
- files:
- - filesystem.squashfs
- os: zorin
- version: '15'
- flavor: XFCE
- kernel: zorin-15-gnome-squash
- peppermint-10-default-squash:
- path: /ubuntu-squash/releases/download/20191210-55414b61/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: peppermint
- version: '10'
- flavor: LXDE
- kernel: peppermint-10-default-squash
- backbox-6-default-squash:
- path: /ubuntu-squash/releases/download/6-ff530dc8/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: BackBox
- version: '6'
- flavor: default
- kernel: backbox-6-default-squash
- kde-neon-user:
- path: /ubuntu-squash/releases/download/20230413-0717-702c76ea/
- files:
- - vmlinuz
- - filesystem.squashfs
- - initrd.lz
- os: neon
- version: 20230413-0717
- flavor: user
- kernel: kde-neon-user
- regolith-current:
- path: /ubuntu-squash/releases/download/1.2-e7db33e3/
- files:
- - initrd
- - vmlinuz
- - filesystem.squashfs
- os: regolith
- version: current
- flavor: ubuntu
- kernel: regolith-current
- pop-18.04-nvidia-squash:
- path: /ubuntu-squash/releases/download/58-316fd7f7/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: pop
- version: '18.04'
- flavor: nvidia
- kernel: pop-18.04-nvidia-squash
- pop-19.10-nvidia-squash:
- path: /ubuntu-squash/releases/download/10-3882d464/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: pop
- version: '19.10'
- flavor: nvidia
- kernel: pop-19.10-nvidia-squash
- linux-lite-4-squash:
- path: /ubuntu-squash/releases/download/4.8-feb35fae/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: lite
- version: '4'
- kernel: linux-lite-4-squash
- deepin-15-squash:
- path: /debian-squash/releases/download/15.11-387f0ae3/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: Deepin
- version: '15'
- kernel: deepin-15-squash
- mfsbsd-8:
- path: /asset-mirror/releases/download/8.4-85c0e522/
- files:
- - default.img
- - special-edition.img
- os: freebsd
- version: '8'
- mfsbsd-9:
- path: /asset-mirror/releases/download/9.2-dd689447/
- files:
- - default.img
- - special-edition.img
- os: freebsd
- version: '9'
- mfsbsd-10:
- path: /asset-mirror/releases/download/10.3-e3f93083/
- files:
- - default.img
- - special-edition.img
- os: freebsd
- version: '10'
- mfsbsd-11:
- path: /asset-mirror/releases/download/11.2-8a7e9144/
- files:
- - default.img
- - special-edition.img
- os: freebsd
- version: '11'
- mfsbsd-12:
- path: /asset-mirror/releases/download/12.2-69ab9272/
- files:
- - default.img
- - special-edition.img
- os: freebsd
- version: '12'
- feren-squash:
- path: /ubuntu-squash/releases/download/2023.01-0219a303/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: feren
- version: '2023.01'
- kernel: feren-squash
- feren-classic-squash:
- path: /ubuntu-squash/releases/download/12-2019-b43afc5c/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: feren
- version: classic
- kernel: feren-classic-squash
- breakin:
- path: /asset-mirror/releases/download/4.26.1-41841227/
- files:
- - vmlinuz
- - initrd
- os: breakin
- version: 4.26.1
- dban:
- path: /asset-mirror/releases/download/2.3.0-b41c0107/
- files:
- - DBAN.BZI
- os: dban
- version: 2.3.0
- sparky-stable-mingui:
- path: /debian-squash/releases/download/6.6-a6d3bdfa/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: sparky
- version: stable
- flavor: xfce-min
- kernel: sparky-stable-mingui
- sparky-stable-gui:
- path: /debian-squash/releases/download/6.6-60b64dd4/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: sparky
- version: stable
- flavor: xfce
- kernel: sparky-stable-gui
- sparky-stable-lxqt:
- path: /debian-squash/releases/download/6.6-9084dcac/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: sparky
- version: stable
- flavor: lxqt
- kernel: sparky-stable-lxqt
- sparky-rolling-mingui:
- path: /debian-squash/releases/download/2023.03-f4dfb444/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: sparky
- version: rolling
- flavor: xfce-min
- kernel: sparky-rolling-mingui
- sparky-rolling-gui:
- path: /debian-squash/releases/download/2023.03-c302aff8/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: sparky
- version: rolling
- flavor: xfce
- kernel: sparky-rolling-gui
- sparky-rolling-lxqt:
- path: /debian-squash/releases/download/2023.03-b10c70d5/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: sparky
- version: rolling
- flavor: lxqt
- kernel: sparky-rolling-lxqt
- oracle-8:
- path: /asset-mirror/releases/download/6-c3a8c228/
- files:
- - vmlinuz
- - initrd
- - squashfs.img
- os: oracle
- version: '8'
- arch: x86_64
- oracle-7:
- path: /asset-mirror/releases/download/u9-3f867a35/
- files:
- - vmlinuz
- - initrd
- - squashfs.img
- os: oracle
- version: '7'
- arch: x86_64
- kodachi-6:
- path: /ubuntu-squash/releases/download/6.2-2a23039c/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: kodachi
- version: '6'
- bodhi-5-standard:
- path: /ubuntu-squash/releases/download/5.1.0-5d55acb7/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: bodhi
- version: '5'
- flavor: standard
- bodhi-5-apppack:
- path: /ubuntu-squash/releases/download/5.1.0-0bcb3c87/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: bodhi
- version: '5'
- flavor: apppack
- devuan-ascii:
- path: /debian-squash/releases/download/2.1-37ead3f3/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: devuan
- version: '2'
- flavor: ascii
- grml-full:
- path: /debian-squash/releases/download/2022.11-f28182d8/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: grml
- version: '2022.11'
- flavor: full
- grml-small:
- path: /debian-squash/releases/download/2022.11-0603ce50/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: grml
- version: '2022.11'
- flavor: small
- gparted-stable:
- path: /debian-squash/releases/download/1.5.0-1-b6cfb563/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: gparted
- version: stable
- rescatux:
- path: /debian-squash/releases/download/0.72-beta8-58c496a1/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: rescatux
- version: current
- caine:
- path: /ubuntu-squash/releases/download/13.0-07eff96e/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: caine
- version: '13.0'
- bootrepair:
- path: /ubuntu-squash/releases/download/current-e035b00c/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: bootrepair
- version: current
- blackarch-installer:
- path: /asset-mirror/releases/download/2023.04.01-25bb6ed1/
- files:
- - initrd
- - vmlinuz
- - airootfs.sfs
- os: blackarch
- version: current
- bluestar:
- path: /asset-mirror/releases/download/6.2.10-2023.04.10-475894cd/
- files:
- - initrd
- - vmlinuz
- - airootfs.sfs
- os: bluestar
- version: current
- anarchy:
- path: /asset-mirror/releases/download/1.3.4-54188370/
- files:
- - initrd
- - vmlinuz
- - airootfs.sfs
- os: anarchy
- version: current
- zeninstall:
- path: /asset-mirror/releases/download/2020.05.27-a815432f/
- files:
- - initrd
- - vmlinuz
- - airootfs.sfs
- os: zeninstall
- version: current
- lxle:
- path: /ubuntu-squash/releases/download/18.04.3-83291c4b/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: lxle
- version: current
- kaspersky-rescue:
- path: /asset-mirror/releases/download/18-7f6056db/
- files:
- - initrd.xz
- - initrd
- - vmlinuz
- - kernel.dat
- - 000-core.srm
- - 001-xorg.srm
- - 002-xfce.srm
- - 003-kl.srm
- - 004-krt.srm
- - 005-bases.srm
- - 008-firefox.srm
- os: kaspersky
- version: '18'
- septor:
- path: /debian-squash/releases/download/2022-c61ed600/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: septor
- version: current
- manjaro-xfce-current:
- path: /manjaro-squash/releases/download/22.0.5-minimal-230316-linux61-fed9737f/
- files:
- - livefs.sfs
- - rootfs.sfs
- - mhwdfs.sfs
- - desktopfs.sfs
- - initrd
- - vmlinuz
- os: manjaro
- version: current
- flavor: xfce
- kernel: manjaro-xfce-current
- manjaro-gnome-current:
- path: /manjaro-squash/releases/download/22.0.5-minimal-230316-linux61-fe6d0899/
- files:
- - livefs.sfs
- - rootfs.sfs
- - mhwdfs.sfs
- - desktopfs.sfs
- - initrd
- - vmlinuz
- os: manjaro
- version: current
- flavor: gnome
- kernel: manjaro-gnome-current
- manjaro-kde-current:
- path: /manjaro-squash/releases/download/22.0.5-minimal-230316-linux61-21a3c27c/
- files:
- - livefs.sfs
- - rootfs.sfs
- - mhwdfs.sfs
- - desktopfs.sfs
- - initrd
- - vmlinuz
- os: manjaro
- version: current
- flavor: kde
- kernel: manjaro-kde-current
- fatdog:
- path: /asset-mirror/releases/download/813-bf8fccda/
- files:
- - vmlinuz
- - initrd
- os: fatdog
- version: current
- raizo:
- path: /debian-squash/releases/download/v13.22.09.11i-9e437e24/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: raizo
- version: current
- 4mlinux:
- path: /asset-mirror/releases/download/42.0-1e4f619c/
- files:
- - initrd
- - vmlinuz
- os: 4mlinux
- version: current
- flavor: full
- 4mlinux-thesss:
- path: /asset-mirror/releases/download/42.0-9ad98d63/
- files:
- - initrd
- - vmlinuz
- os: 4mlinux
- version: current
- flavor: TheSSS
- 4mlinux-bakandimg:
- path: /asset-mirror/releases/download/42.0-bd59d834/
- files:
- - initrd
- - vmlinuz
- os: 4mlinux
- version: current
- flavor: BakAndImg
- 4mlinux-antivirus:
- path: /asset-mirror/releases/download/42.0-1.0.1-21051633/
- files:
- - initrd
- - vmlinuz
- os: 4mlinux
- version: current
- flavor: AntivirusLiveCD
- ubuntu-20.04-default-squash:
- path: /ubuntu-squash/releases/download/20.04.6-dc1f87fa/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: ubuntu
- version: '20.04'
- flavor: GNOME
- kernel: ubuntu-20.04-default-squash
- ubuntu-20.04-KDE-squash:
- path: /ubuntu-squash/releases/download/20.04.5-80445908/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: ubuntu
- version: '20.04'
- flavor: KDE
- kernel: ubuntu-20.04-KDE-squash
- ubuntu-20.04-XFCE-squash:
- path: /ubuntu-squash/releases/download/20.04.6-0c3aee29/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: ubuntu
- version: '20.04'
- flavor: XFCE
- kernel: ubuntu-20.04-XFCE-squash
- ubuntu-20.04-Budgie-squash:
- path: /ubuntu-squash/releases/download/20.04.6-8fb6511b/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: ubuntu
- version: '20.04'
- flavor: Budgie
- kernel: ubuntu-20.04-Budgie-squash
- ubuntu-20.04-MATE-squash:
- path: /ubuntu-squash/releases/download/20.04.6-0b5c08d7/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: ubuntu
- version: '20.04'
- flavor: MATE
- kernel: ubuntu-20.04-MATE-squash
- ubuntu-20.04-kylin-squash:
- path: /ubuntu-squash/releases/download/20.04.6-2aee1dd5/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: ubuntu
- version: '20.04'
- flavor: kylin
- kernel: ubuntu-20.04-kylin-squash
- voyager-focal-squash:
- path: /ubuntu-squash/releases/download/focal-594b12a7/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: Voyager
- version: focal
- flavor: focal
- kernel: voyager-focal-squash
- pop-20.04-default-squash:
- path: /ubuntu-squash/releases/download/5-66b7e861/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: pop
- version: '20.04'
- flavor: intel-amd
- kernel: pop-20.04-default-squash
- pop-20.04-nvidia-squash:
- path: /ubuntu-squash/releases/download/5-6efd1d75/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: pop
- version: '20.04'
- flavor: nvidia
- kernel: pop-20.04-nvidia-squash
- nixos-20.03:
- path: /asset-mirror/releases/download/124244129-bd20f138/
- files:
- - bzImage
- - initrd
- - netboot.ipxe
- os: nixos
- version: '20.03'
- backbox-7-default-squash:
- path: /ubuntu-squash/releases/download/7-63eabf46/
- files:
- - initrd
- - vmlinuz
- - filesystem.squashfs
- os: BackBox
- version: '7'
- flavor: default
- kernel: backbox-7-default-squash
- kodachi-7:
- path: /ubuntu-squash/releases/download/7.6-5b1ead62/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: kodachi
- version: '7'
- linux-lite-5-squash:
- path: /ubuntu-squash/releases/download/5.8-75cb937c/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: lite
- version: 5.8
- kernel: linux-lite-5-squash
- vyos-rolling:
- path: /debian-squash/releases/download/202304130846-f77c5f37/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: vyos
- version: rolling
- flavor: rolling
- kernel: vyos-rolling
- q4os-3.12-plasma-squash:
- path: /debian-squash/releases/download/3.12-6e0ca54b/
- files:
- - filesystem.squashfs
- os: Q4OS
- version: '3.12'
- flavor: plasma
- kernel: q4os-3.12-default-squash
- q4os-3.12-default-squash:
- path: /debian-squash/releases/download/3.12-cf19590d/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: Q4OS
- version: '3.12'
- flavor: trinity
- kernel: q4os-3.12-default-squash
- q4os-3.13-default-squash:
- path: /debian-squash/releases/download/3.13-18394906/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: Q4OS
- version: '3.13'
- flavor: trinity
- kernel: q4os-3.13-default-squash
- q4os-3.13-plasma-squash:
- path: /debian-squash/releases/download/3.13-68332b76/
- files:
- - filesystem.squashfs
- os: Q4OS
- version: '3.13'
- flavor: plasma
- kernel: q4os-3.13-default-squash
- pureos-gnome:
- path: /ubuntu-squash/releases/download/2020-08-06-83257efc/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: pureos
- version: current
- flavor: gnome
- kernel: pureos-gnome
- rescuezilla:
- path: /asset-mirror/releases/download/2.4.2-ddd54f5e/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: rescuezilla
- version: 2.4.2
- deepin-20-squash:
- path: /debian-squash/releases/download/20.7-2c297f6a/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: Deepin
- version: '20'
- kernel: deepin-20-squash
- nitrux-release:
- path: /ubuntu-squash/releases/download/2022.02.28-e364d0a5/
- files:
- - initrd
- - vmlinuz
- - filesystem.squashfs
- os: nitrux
- version: 2022.02.28
- endeavouros:
- path: /asset-mirror/releases/download/Artemis_nova_22_9-cd1ec3bb/
- files:
- - airootfs.sfs
- - initrd
- - vmlinuz
- os: endeavouros
- version: Artemis_nova_22_9
- kodachi-8:
- path: /ubuntu-squash/releases/download/8.2-625e11fa/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: kodachi
- version: '8'
- redorescue:
- path: /asset-mirror/releases/download/4.0.0-b77187cd/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: redorescue
- version: 4.0.0
- bodhi-6-standard:
- path: /ubuntu-squash/releases/download/6.0.0-5efdb7c4/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: bodhi
- version: '6'
- flavor: standard
- bodhi-6-apppack:
- path: /ubuntu-squash/releases/download/6.0.0-976a3e4e/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: bodhi
- version: '6'
- flavor: apppack
- mfsbsd-13:
- path: /asset-mirror/releases/download/13.1-990a8d83/
- files:
- - default.img
- - special-edition.img
- os: freebsd
- version: '13'
- mint-lmde-cinnamon-squash:
- path: /debian-squash/releases/download/5-8e7d5f12/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: mint
- version: lmde
- flavor: Cinnamon
- kernel: mint-lmde-cinnamon-squash
- mint-20-mate-squash:
- path: /ubuntu-squash/releases/download/20.3-90ed1979/
- files:
- - initrd
- - vmlinuz
- - filesystem.squashfs
- os: mint
- version: '20.3'
- flavor: mate
- kernel: mint-20-mate-squash
- mint-20-xfce-squash:
- path: /ubuntu-squash/releases/download/20.3-82b59d30/
- files:
- - initrd
- - vmlinuz
- - filesystem.squashfs
- os: mint
- version: '20.3'
- flavor: xfce
- kernel: mint-20-xfce-squash
- mint-20-cinnamon-squash:
- path: /ubuntu-squash/releases/download/20.3-5eb018da/
- files:
- - initrd
- - vmlinuz
- - filesystem.squashfs
- os: mint
- version: '20.3'
- flavor: Cinnamon
- kernel: mint-20-cinnamon-squash
- talos:
- path: /asset-mirror/releases/download/0.13.4-3f5e10e5/
- files:
- - vmlinuz
- - initramfs.xz
- os: talos
- version: 0.13.4
- elementaryos-6-default-squash:
- path: /ubuntu-squash/releases/download/6-e4cd108f/
- files:
- - initrd
- - vmlinuz
- - filesystem.squashfs
- os: elementary-os
- version: '6'
- kernel: elementaryos-6-default-squash
- zorin-16-core-squash:
- path: /ubuntu-squash/releases/download/16.2-ca8ff325/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: zorin
- version: '16.2'
- flavor: Core
- kernel: zorin-16-core-squash
- debian-11-cinnamon-squash:
- path: /debian-squash/releases/download/11.6.0-66ae1880/
- files:
- - filesystem.squashfs
- os: debian
- version: '11'
- flavor: cinnamon
- kernel: debian-11-live-kernel
- debian-11-live-kernel:
- path: /debian-core-11/releases/download/11.6.0-95ff084b/
- files:
- - initrd
- - vmlinuz
- os: debian
- version: '11'
- debian-11-gnome-squash:
- path: /debian-squash/releases/download/11.6.0-7351138e/
- files:
- - filesystem.squashfs
- os: debian
- version: '11'
- flavor: gnome
- kernel: debian-11-live-kernel
- debian-11-default-squash:
- path: /debian-squash/releases/download/11.6.0-bc2052f1/
- files:
- - filesystem.squashfs
- os: debian
- version: '11'
- flavor: core
- kernel: debian-11-live-kernel
- debian-11-kde-squash:
- path: /debian-squash/releases/download/11.6.0-1ca621ea/
- files:
- - filesystem.squashfs
- os: debian
- version: '11'
- flavor: kde
- kernel: debian-11-live-kernel
- debian-11-xfce-squash:
- path: /debian-squash/releases/download/11.6.0-e20e794c/
- files:
- - filesystem.squashfs
- os: debian
- version: '11'
- flavor: xfce
- kernel: debian-11-live-kernel
- debian-11-mate-squash:
- path: /debian-squash/releases/download/11.6.0-45b9e409/
- files:
- - filesystem.squashfs
- os: debian
- version: '11'
- flavor: mate
- kernel: debian-11-live-kernel
- debian-11-lxde-squash:
- path: /debian-squash/releases/download/11.6.0-9b3c4c2b/
- files:
- - filesystem.squashfs
- os: debian
- version: '11'
- flavor: lxde
- kernel: debian-11-live-kernel
- debian-11-lxqt-squash:
- path: /debian-squash/releases/download/11.6.0-27dada40/
- files:
- - filesystem.squashfs
- os: debian
- version: '11'
- flavor: lxqt
- kernel: debian-11-live-kernel
- voyager-bullseye-squash:
- path: /debian-squash/releases/download/bullseye-887eabcf/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: Voyager
- version: bullseye
- flavor: bullseye
- kernel: voyager-bullseye-squash
- memtest86:
- path: /asset-mirror/releases/download/10.4-81ecc10e/
- files:
- - memtest86-usb.img
- os: memtest86-free
- version: '10.4'
- gentoo-x86:
- path: /asset-mirror/releases/download/20230417T170203Z-c0630a5f/
- files:
- - image.squashfs
- - initrd
- - vmlinuz
- os: gentoo
- version: 20230417T170203Z
- arch: x86
- gentoo-arm64:
- path: /asset-mirror/releases/download/20230416T233158Z-d29572ce/
- files:
- - image.squashfs
- - initrd
- - vmlinuz
- os: gentoo
- version: 20230416T233158Z
- arch: arm64
- gentoo-amd64:
- path: /asset-mirror/releases/download/20230416T164657Z-abe575fe/
- files:
- - image.squashfs
- - initrd
- - vmlinuz
- os: gentoo
- version: 20230416T164657Z
- arch: amd64
- tails:
- path: /asset-mirror/releases/download/5.12-29645174/
- files:
- - vmlinuz
- - initrd.img
- - 9990-misc-helpers.sh
- os: tails
- version: '5.12'
- arch: amd64
- hrmpf:
- path: /asset-mirror/releases/download/20230105-b073bf9a/
- files:
- - vmlinuz
- - initrd
- - squashfs.img
- os: hrmpf
- version: '20230105'
- ubuntu-netboot-20.04-arm64:
- path: /ubuntu-squash/releases/download/20.04.5-60af20cc/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: ubuntu
- version: 20.04.5
- codename: focal
- flavor: netboot
- kernel: ubuntu-netboot-20.04-arm64
- arch: arm64
- ubuntu-netboot-20.04-amd64:
- path: /ubuntu-squash/releases/download/20.04.6-a1b16d57/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: ubuntu
- version: 20.04.6
- codename: focal
- flavor: netboot
- kernel: ubuntu-netboot-20.04-amd64
- arch: amd64
- systemrescue-i686:
- path: /asset-mirror/releases/download/9.03-0f19cc5c/
- files:
- - airootfs.sfs
- - initrd
- - vmlinuz
- os: systemrescue
- version: 9.03
- arch: i686
- systemrescue-amd64:
- path: /asset-mirror/releases/download/10.00-2016e3dd/
- files:
- - airootfs.sfs
- - initrd
- - vmlinuz
- os: systemrescue
- version: 10.0
- arch: amd64
- shredos-i686:
- path: /asset-mirror/releases/download/0.34_32-bit_20221231-23a7674f/
- files:
- - shredos
- os: shredos
- version: 0.34_32-bit_20221231
- arch: i686
- shredos-x86_64:
- path: /asset-mirror/releases/download/0.34_20221231-349b2fe7/
- files:
- - shredos
- os: shredos
- version: 0.3420221231
- arch: x86_64
- archlinux-32:
- path: /asset-mirror/releases/download/2023.03.02-a8a135c1/
- files:
- - airootfs.sfs
- - initramfs-linux.img
- - vmlinuz-linux
- os: archlinux
- version: 2023.03.02
- arch: i686
- q4os-4.6-default-squash:
- path: /debian-squash/releases/download/4.6-2de282e7/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: Q4OS
- version: '4.6'
- flavor: trinity
- kernel: q4os-4.6-default-squash
- q4os-4.6-plasma-squash:
- path: /debian-squash/releases/download/4.6-f1c7b2cc/
- files:
- - filesystem.squashfs
- os: Q4OS
- version: '4.6'
- flavor: plasma
- kernel: q4os-4.6-default-squash
- clonezilla-debian-stable-i686:
- path: /debian-squash/releases/download/3.0.3-22-83ed24d6/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: clonezilla
- version: 3.0.3-22
- flavor: stable
- kernel: clonezilla-debian-stable-i686
- arch: i686
- clonezilla-debian-stable-amd64:
- path: /debian-squash/releases/download/3.0.3-22-a609986f/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: clonezilla
- version: 3.0.3-22
- flavor: stable
- kernel: clonezilla-debian-stable-amd64
- arch: amd64
- clonezilla-ubuntu-stable-amd64:
- path: /ubuntu-squash/releases/download/20230212-kinetic-2cf58701/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: clonezilla
- version: 20230212-kinetic
- flavor: stable
- kernel: clonezilla-ubuntu-stable-amd64
- arch: amd64
- clonezilla-debian-testing-amd64:
- path: /debian-squash/releases/download/3.1.0-19-1c3e1967/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: clonezilla
- version: 3.1.0-19
- flavor: testing
- kernel: clonezilla-debian-testing-amd64
- arch: amd64
- clonezilla-debian-testing-i686:
- path: /debian-squash/releases/download/3.1.0-19-d77841f5/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: clonezilla
- version: 3.1.0-19
- flavor: testing
- kernel: clonezilla-debian-testing-i686
- arch: i686
- clonezilla-ubuntu-testing-amd64:
- path: /ubuntu-squash/releases/download/20230328-lunar-4ef16ee0/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: clonezilla
- version: 20230328-lunar
- flavor: testing
- kernel: clonezilla-ubuntu-testing-amd64
- arch: amd64
- garuda-dr460nized-gaming:
- path: /asset-mirror/releases/download/230319-111e3083/
- files:
- - amd_ucode.img
- - desktopfs.sfs
- - intel_ucode.img
- - livefs.sfs
- - initramfs.img
- - mhwdfs.sfs
- - rootfs.sfs
- - vmlinuz
- os: garuda
- flavor: dr460nized-gaming
- version: 230319
- garuda-dr460nized:
- path: /asset-mirror/releases/download/230319-28ac5f81/
- files:
- - amd_ucode.img
- - desktopfs.sfs
- - intel_ucode.img
- - livefs.sfs
- - initramfs.img
- - mhwdfs.sfs
- - rootfs.sfs
- - vmlinuz
- os: garuda
- flavor: dr460nized
- version: 230319
- garuda-dr460nized-blackarch:
- path: /asset-mirror/releases/download/220329-6ab56054/
- files:
- - amd_ucode.img
- - desktopfs.sfs
- - intel_ucode.img
- - livefs.sfs
- - initramfs.img
- - mhwdfs.sfs
- - rootfs.sfs
- - vmlinuz
- os: garuda
- flavor: dr460nized-blackarch
- version: 220329
- garuda-xfce:
- path: /asset-mirror/releases/download/230319-0c35cb40/
- files:
- - amd_ucode.img
- - desktopfs.sfs
- - intel_ucode.img
- - livefs.sfs
- - initramfs.img
- - mhwdfs.sfs
- - rootfs.sfs
- - vmlinuz
- os: garuda
- flavor: xfce
- version: 230319
- garuda-gnome:
- path: /asset-mirror/releases/download/230319-45df97b9/
- files:
- - amd_ucode.img
- - desktopfs.sfs
- - intel_ucode.img
- - livefs.sfs
- - initramfs.img
- - mhwdfs.sfs
- - rootfs.sfs
- - vmlinuz
- os: garuda
- flavor: gnome
- version: 230319
- garuda-lxqt-kwin:
- path: /asset-mirror/releases/download/230319-c3fcbd36/
- files:
- - amd_ucode.img
- - desktopfs.sfs
- - intel_ucode.img
- - livefs.sfs
- - initramfs.img
- - mhwdfs.sfs
- - rootfs.sfs
- - vmlinuz
- os: garuda
- flavor: lxqt-kwin
- version: 230319
- garuda-wayfire:
- path: /asset-mirror/releases/download/230319-148b8015/
- files:
- - amd_ucode.img
- - desktopfs.sfs
- - intel_ucode.img
- - livefs.sfs
- - initramfs.img
- - mhwdfs.sfs
- - rootfs.sfs
- - vmlinuz
- os: garuda
- flavor: wayfire
- version: 230319
- garuda-qtile:
- path: /asset-mirror/releases/download/230319-a9a2a274/
- files:
- - amd_ucode.img
- - desktopfs.sfs
- - intel_ucode.img
- - livefs.sfs
- - initramfs.img
- - mhwdfs.sfs
- - rootfs.sfs
- - vmlinuz
- os: garuda
- flavor: qtile
- version: 230319
- garuda-i3wm:
- path: /asset-mirror/releases/download/230319-e6af34c0/
- files:
- - amd_ucode.img
- - desktopfs.sfs
- - intel_ucode.img
- - livefs.sfs
- - initramfs.img
- - mhwdfs.sfs
- - rootfs.sfs
- - vmlinuz
- os: garuda
- flavor: i3wm
- version: 230319
- garuda-sway:
- path: /asset-mirror/releases/download/230319-08a01ce1/
- files:
- - amd_ucode.img
- - desktopfs.sfs
- - intel_ucode.img
- - livefs.sfs
- - initramfs.img
- - mhwdfs.sfs
- - rootfs.sfs
- - vmlinuz
- os: garuda
- flavor: sway
- version: 230319
- garuda-mate:
- path: /asset-mirror/releases/download/230319-b085265a/
- files:
- - amd_ucode.img
- - desktopfs.sfs
- - intel_ucode.img
- - livefs.sfs
- - initramfs.img
- - mhwdfs.sfs
- - rootfs.sfs
- - vmlinuz
- os: garuda
- flavor: mate
- version: 230319
- garuda-kde-barebones:
- path: /asset-mirror/releases/download/220329-198784ed/
- files:
- - amd_ucode.img
- - desktopfs.sfs
- - intel_ucode.img
- - livefs.sfs
- - initramfs.img
- - mhwdfs.sfs
- - rootfs.sfs
- - vmlinuz
- os: garuda
- flavor: kde-barebones
- version: 220329
- proxmox-backup-server:
- path: /asset-mirror/releases/download/2.4-1-09769528/
- files:
- - initrd
- - proxmox-backup-server.iso
- - vmlinuz
- os: proxmox-backup-server
- version: 2.4-1
- proxmox-ve:
- path: /asset-mirror/releases/download/7.4-1-9402a564/
- files:
- - initrd
- - proxmox.iso
- - vmlinuz
- os: proxmox-ve
- version: 7.4-1
- proxmox-mailgateway:
- path: /asset-mirror/releases/download/7.3-1-5c9b0cd6/
- files:
- - initrd
- - proxmox-mailgateway.iso
- - vmlinuz
- os: proxmox-mailgateway
- version: 7.3-1
- tails-beta:
- path: /asset-mirror/releases/download/5.0b1-ebdb1fb3/
- files:
- - vmlinuz
- - initrd.img
- - 9990-misc-helpers.sh
- os: tails-beta
- version: 5.0b1
- arch: amd64
- ubuntu-netboot-22.04-amd64:
- path: /ubuntu-squash/releases/download/22.04.2-7d91a596/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: ubuntu
- version: 22.04.2
- codename: jammy
- flavor: netboot
- kernel: ubuntu-netboot-22.04-amd64
- arch: amd64
- ubuntu-netboot-22.04-arm64:
- path: /ubuntu-squash/releases/download/22.04.2-75576b2c/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: ubuntu
- version: 22.04.2
- codename: jammy
- flavor: netboot
- kernel: ubuntu-netboot-22.04-arm64
- arch: arm64
- ubuntu-22.04-default-squash:
- path: /ubuntu-squash/releases/download/22.04.2-54de5f62/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: ubuntu
- version: '22.04'
- flavor: GNOME
- kernel: ubuntu-22.04-default-squash
- ubuntu-22.04-XFCE-squash:
- path: /ubuntu-squash/releases/download/22.04.2-e90ee6cf/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: ubuntu
- version: '22.04'
- flavor: XFCE
- kernel: ubuntu-22.04-XFCE-squash
- ubuntu-22.04-MATE-squash:
- path: /ubuntu-squash/releases/download/22.04.2-674ed122/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: ubuntu
- version: '22.04'
- flavor: MATE
- kernel: ubuntu-22.04-MATE-squash
- ubuntu-22.04-Budgie-squash:
- path: /ubuntu-squash/releases/download/22.04.2-ac20ec7d/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: ubuntu
- version: '22.04'
- flavor: Budgie
- kernel: ubuntu-22.04-Budgie-squash
- ubuntu-22.04-KDE-squash:
- path: /ubuntu-squash/releases/download/22.04.2-f094e35e/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: ubuntu
- version: '22.04'
- flavor: KDE
- kernel: ubuntu-22.04-KDE-squash
- ubuntu-22.04-kylin-squash:
- path: /ubuntu-squash/releases/download/22.04.2-565f6520/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: ubuntu
- version: '22.04'
- flavor: kylin
- kernel: ubuntu-22.04-kylin-squash
- voyager-jammy-squash:
- path: /ubuntu-squash/releases/download/jammy-f4ef210a/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: Voyager
- version: jammy
- flavor: jammy
- kernel: voyager-jammy-squash
- talos-amd64:
- path: /asset-mirror/releases/download/1.0.4-9616af8f/
- files:
- - vmlinuz-amd64
- - initramfs-amd64.xz
- os: talos
- version: 1.0.4
- pop-22.04-default-squash:
- path: /ubuntu-squash/releases/download/21-c6eb5b6e/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: pop
- version: '22.04'
- flavor: intel-amd
- kernel: pop-22.04-default-squash
- fedora-36-gnome:
- path: /fedora-assets/releases/download/1.5-c9f1fb5a/
- files:
- - vmlinuz
- - initrd
- - squashfs.img
- os: fedora
- version: 36
- flavor: GNOME
- fedora-36-KDE:
- path: /fedora-assets/releases/download/1.5-da35ad5c/
- files:
- - vmlinuz
- - initrd
- - squashfs.img
- os: fedora
- version: 36
- flavor: KDE
- fedora-36-LXDE:
- path: /fedora-assets/releases/download/1.5-0252df72/
- files:
- - vmlinuz
- - initrd
- - squashfs.img
- os: fedora
- version: 36
- flavor: LXDE
- fedora-36-Cinnamon:
- path: /fedora-assets/releases/download/1.5-a4aa876b/
- files:
- - vmlinuz
- - initrd
- - squashfs.img
- os: fedora
- version: 36
- flavor: Cinnamon
- fedora-36-LXQt:
- path: /fedora-assets/releases/download/1.5-e389781d/
- files:
- - vmlinuz
- - initrd
- - squashfs.img
- os: fedora
- version: 36
- flavor: LXQt
- fedora-36-SoaS:
- path: /fedora-assets/releases/download/1.5-5e30ae81/
- files:
- - vmlinuz
- - initrd
- - squashfs.img
- os: fedora
- version: 36
- flavor: SoaS
- fedora-36-MATE_Compiz:
- path: /fedora-assets/releases/download/1.5-695457f0/
- files:
- - vmlinuz
- - initrd
- - squashfs.img
- os: fedora
- version: 36
- flavor: MATE_Compiz
- fedora-36-i3:
- path: /fedora-assets/releases/download/1.5-8efce5c5/
- files:
- - vmlinuz
- - initrd
- - squashfs.img
- os: fedora
- version: 36
- flavor: i3
- fedora-36-Xfce:
- path: /fedora-assets/releases/download/1.5-8a299814/
- files:
- - vmlinuz
- - initrd
- - squashfs.img
- os: fedora
- version: 36
- flavor: Xfce
- vmware-photon-x86_64:
- path: /asset-mirror/releases/download/4.0-5a977251/
- files:
- - initrd.img
- - vmlinuz
- os: vmware-photon
- version: '4.0'
- arch: x86_64
- vmware-photon-aarch64:
- path: /asset-mirror/releases/download/4.0-706435cb/
- files:
- - initrd.img
- - vmlinuz
- os: vmware-photon
- version: '4.0'
- arch: aarch64
- harvester:
- path: /asset-mirror/releases/download/v1.1.1-bd33b983/
- files:
- - harvester-vmlinuz-amd64
- - harvester-initrd-amd64
- - harvester-rootfs-amd64.squashfs
- - harvester-amd64.sha512
- - version.yaml
- os: harvester
- version: v1.1.1
- linux-lite-6-squash:
- path: /ubuntu-squash/releases/download/6.4-2550834c/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: lite
- version: 6.4
- kernel: linux-lite-6-squash
- mint-21-cinnamon-squash:
- path: /ubuntu-squash/releases/download/21.1-bdd51a52/
- files:
- - initrd
- - vmlinuz
- - filesystem.squashfs
- os: mint
- version: '21.1'
- flavor: Cinnamon
- kernel: mint-21-cinnamon-squash
- mint-21-mate-squash:
- path: /ubuntu-squash/releases/download/21.1-75ebe6b6/
- files:
- - initrd
- - vmlinuz
- - filesystem.squashfs
- os: mint
- version: '21.1'
- flavor: mate
- kernel: mint-21-mate-squash
- mint-21-xfce-squash:
- path: /ubuntu-squash/releases/download/21.1-150134f0/
- files:
- - initrd
- - vmlinuz
- - filesystem.squashfs
- os: mint
- version: '21.1'
- flavor: xfce
- kernel: mint-21-xfce-squash
- oracle-9-x86_64:
- path: /asset-mirror/releases/download/U1-095d2d5d/
- files:
- - vmlinuz
- - initrd
- - squashfs.img
- os: oracle
- version: '9'
- arch: x86_64
- oracle-9-aarch64:
- path: /asset-mirror/releases/download/U1-772e9a86/
- files:
- - vmlinuz
- - initrd
- - squashfs.img
- os: oracle
- version: '9'
- arch: aarch64
- parrot-home:
- path: /debian-squash/releases/download/5.2-0cf7fea3/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: parrot
- version: '5.2'
- flavor: home
- parrot-security:
- path: /debian-squash/releases/download/5.1.1-47327415/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: parrot
- version: 5.1.1
- flavor: security
- xcp-ng:
- path: /asset-mirror/releases/download/8.2-3a10905c/
- files:
- - xen.gz
- - vmlinuz
- - install.img
- os: xcp-ng
- version: '8.2'
- garuda-cinnamon:
- path: /asset-mirror/releases/download/230319-ad285577/
- files:
- - amd_ucode.img
- - desktopfs.sfs
- - intel_ucode.img
- - livefs.sfs
- - initramfs.img
- - mhwdfs.sfs
- - rootfs.sfs
- - vmlinuz
- os: garuda
- flavor: cinnamon
- version: 230319
- ubuntu-netboot-22.10-arm64:
- path: /ubuntu-squash/releases/download/22.10-0c7dfe1c/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: ubuntu
- version: '22.10'
- codename: kinetic
- flavor: netboot
- kernel: ubuntu-netboot-22.10-arm64
- arch: arm64
- ubuntu-netboot-22.10-amd64:
- path: /ubuntu-squash/releases/download/22.10-a9990c06/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: ubuntu
- version: '22.10'
- codename: kinetic
- flavor: netboot
- kernel: ubuntu-netboot-22.10-amd64
- arch: amd64
- ubuntu-22.10-XFCE-squash:
- path: /ubuntu-squash/releases/download/22.10-ff902440/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: ubuntu
- version: '22.10'
- flavor: XFCE
- kernel: ubuntu-22.10-XFCE-squash
- ubuntu-22.10-MATE-squash:
- path: /ubuntu-squash/releases/download/22.10-636355d9/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: ubuntu
- version: '22.10'
- flavor: MATE
- kernel: ubuntu-22.10-MATE-squash
- ubuntu-22.10-default-squash:
- path: /ubuntu-squash/releases/download/22.10-dd84401a/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: ubuntu
- version: '22.10'
- flavor: GNOME
- kernel: ubuntu-22.10-default-squash
- ubuntu-22.10-Budgie-squash:
- path: /ubuntu-squash/releases/download/22.10-95310d02/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: ubuntu
- version: '22.10'
- flavor: Budgie
- kernel: ubuntu-22.10-Budgie-squash
- ubuntu-22.10-KDE-squash:
- path: /ubuntu-squash/releases/download/22.10-4c45260c/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: ubuntu
- version: '22.10'
- flavor: KDE
- kernel: ubuntu-22.10-KDE-squash
- ubuntu-22.04-studio-squash:
- path: /ubuntu-squash/releases/download/22.04.1-f22bcaf8/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: ubuntu
- version: '22.04'
- flavor: Studio
- kernel: ubuntu-22.04-studio-squash
- fedora-37-gnome:
- path: /fedora-assets/releases/download/1.7-b9ac9551/
- files:
- - vmlinuz
- - initrd
- - squashfs.img
- os: fedora
- version: 37
- flavor: GNOME
- fedora-37-Cinnamon:
- path: /fedora-assets/releases/download/1.7-d19e412c/
- files:
- - vmlinuz
- - initrd
- - squashfs.img
- os: fedora
- version: 37
- flavor: Cinnamon
- fedora-37-KDE:
- path: /fedora-assets/releases/download/1.7-7fac7c7b/
- files:
- - vmlinuz
- - initrd
- - squashfs.img
- os: fedora
- version: 37
- flavor: KDE
- fedora-37-LXDE:
- path: /fedora-assets/releases/download/1.7-878edc25/
- files:
- - vmlinuz
- - initrd
- - squashfs.img
- os: fedora
- version: 37
- flavor: LXDE
- fedora-37-LXQt:
- path: /fedora-assets/releases/download/1.7-48f1cc5f/
- files:
- - vmlinuz
- - initrd
- - squashfs.img
- os: fedora
- version: 37
- flavor: LXQt
- fedora-37-i3:
- path: /fedora-assets/releases/download/1.7-a1446a61/
- files:
- - vmlinuz
- - initrd
- - squashfs.img
- os: fedora
- version: 37
- flavor: i3
- fedora-37-SoaS:
- path: /fedora-assets/releases/download/1.7-defc1cc9/
- files:
- - vmlinuz
- - initrd
- - squashfs.img
- os: fedora
- version: 37
- flavor: SoaS
- fedora-37-MATE_Compiz:
- path: /fedora-assets/releases/download/1.7-840e0126/
- files:
- - vmlinuz
- - initrd
- - squashfs.img
- os: fedora
- version: 37
- flavor: MATE_Compiz
- fedora-37-Xfce:
- path: /fedora-assets/releases/download/1.7-1bc4ff8c/
- files:
- - vmlinuz
- - initrd
- - squashfs.img
- os: fedora
- version: 37
- flavor: Xfce
- q4os-4.11-default-squash:
- path: /debian-squash/releases/download/4.11-41829bdb/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: Q4OS
- version: '4.11'
- flavor: trinity
- kernel: q4os-4.11-default-squash
- q4os-4.11-plasma-squash:
- path: /debian-squash/releases/download/4.11-62cc7148/
- files:
- - filesystem.squashfs
- os: Q4OS
- version: '4.11'
- flavor: plasma
- kernel: q4os-4.11-default-squash
- elementaryos-7-default-squash:
- path: /ubuntu-squash/releases/download/7-5dd1ce0d/
- files:
- - initrd
- - vmlinuz
- - filesystem.squashfs
- os: elementary-os
- version: '7'
- kernel: elementaryos-7-default-squash
- ubuntu-22.10-LXQT-squash:
- path: /ubuntu-squash/releases/download/22.10-f1dc5249/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: ubuntu
- version: '22.10'
- flavor: LXQT
- kernel: ubuntu-22.10-LXQT-squash
- ubuntu-18.04-LXQT-squash:
- path: /ubuntu-squash/releases/download/18.04.5-fe2c4150/
- files:
- - filesystem.squashfs
- os: ubuntu
- version: '18.04'
- flavor: LXQT
- kernel: ubuntu-18.04-live-kernel
- ubuntu-20.04-LXQT-squash:
- path: /ubuntu-squash/releases/download/20.04.5-cb7829f1/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: ubuntu
- version: '20.04'
- flavor: LXQT
- kernel: ubuntu-20.04-LXQT-squash
- fedora-38-gnome:
- path: /fedora-assets/releases/download/1.6-d83211dc/
- files:
- - vmlinuz
- - initrd
- - squashfs.img
- os: fedora
- version: 38
- flavor: GNOME
- fedora-38-Cinnamon:
- path: /fedora-assets/releases/download/1.6-51b1c868/
- files:
- - vmlinuz
- - initrd
- - squashfs.img
- os: fedora
- version: 38
- flavor: Cinnamon
- fedora-38-LXDE:
- path: /fedora-assets/releases/download/1.6-13929daa/
- files:
- - vmlinuz
- - initrd
- - squashfs.img
- os: fedora
- version: 38
- flavor: LXDE
- fedora-38-KDE:
- path: /fedora-assets/releases/download/1.6-63b85b13/
- files:
- - vmlinuz
- - initrd
- - squashfs.img
- os: fedora
- version: 38
- flavor: KDE
- fedora-38-LXQt:
- path: /fedora-assets/releases/download/1.6-e9e6fc72/
- files:
- - vmlinuz
- - initrd
- - squashfs.img
- os: fedora
- version: 38
- flavor: LXQt
- fedora-38-MATE_Compiz:
- path: /fedora-assets/releases/download/1.6-01c92b8d/
- files:
- - vmlinuz
- - initrd
- - squashfs.img
- os: fedora
- version: 38
- flavor: MATE_Compiz
- fedora-38-SoaS:
- path: /fedora-assets/releases/download/1.6-170bcbaa/
- files:
- - vmlinuz
- - initrd
- - squashfs.img
- os: fedora
- version: 38
- flavor: SoaS
- fedora-38-i3:
- path: /fedora-assets/releases/download/1.6-adb085cf/
- files:
- - vmlinuz
- - initrd
- - squashfs.img
- os: fedora
- version: 38
- flavor: i3
- ubuntu-netboot-23.04-arm64:
- path: /ubuntu-squash/releases/download/23.04-65472f2c/
- files:
- - filesystem.squashfs
- - initrd
- - vmlinuz
- os: ubuntu
- version: '23.04'
- codename: kinetic
- flavor: netboot
- kernel: ubuntu-netboot-23.04-arm64
- arch: arm64
- ubuntu-netboot-23.04-amd64:
- path: /ubuntu-squash/releases/download/23.04-e157c0e4/
- files:
- - initrd
- - vmlinuz
- os: ubuntu
- version: '23.04'
- codename: lunar
- flavor: netboot
- kernel: ubuntu-netboot-23.04-amd64
- arch: amd64
|