forked from Justsenger/ExHyperV
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimages.json
More file actions
6114 lines (6114 loc) · 250 KB
/
images.json
File metadata and controls
6114 lines (6114 loc) · 250 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"DisplayName": "Alpine Linux",
"OS": "alpine",
"Release": "v3.14",
"Option": "",
"DownloadURL": "https://dl-cdn.alpinelinux.org/alpine/v3.14/releases/x86_64/alpine-virt-3.14.10-x86_64.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/alpine/alpine-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Alpine Linux",
"OS": "alpine",
"Release": "v3.16",
"Option": "",
"DownloadURL": "https://dl-cdn.alpinelinux.org/alpine/v3.16/releases/x86_64/alpine-virt-3.16.9-x86_64.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/alpine/alpine-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Alpine Linux",
"OS": "alpine",
"Release": "v3.17",
"Option": "",
"DownloadURL": "https://dl-cdn.alpinelinux.org/alpine/v3.17/releases/x86_64/alpine-virt-3.17.10-x86_64.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/alpine/alpine-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Alpine Linux",
"OS": "alpine",
"Release": "v3.22",
"Option": "",
"DownloadURL": "https://dl-cdn.alpinelinux.org/alpine/v3.22/releases/x86_64/alpine-virt-3.22.3-x86_64.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/alpine/alpine-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Alpine Linux",
"OS": "alpine",
"Release": "v3.19",
"Option": "",
"DownloadURL": "https://dl-cdn.alpinelinux.org/alpine/v3.19/releases/x86_64/alpine-virt-3.19.9-x86_64.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/alpine/alpine-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Alpine Linux",
"OS": "alpine",
"Release": "v3.23",
"Option": "",
"DownloadURL": "https://dl-cdn.alpinelinux.org/alpine/v3.23/releases/x86_64/alpine-virt-3.23.3-x86_64.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/alpine/alpine-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Alpine Linux",
"OS": "alpine",
"Release": "v3.20",
"Option": "",
"DownloadURL": "https://dl-cdn.alpinelinux.org/alpine/v3.20/releases/x86_64/alpine-virt-3.20.9-x86_64.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/alpine/alpine-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Alpine Linux",
"OS": "alpine",
"Release": "v3.15",
"Option": "",
"DownloadURL": "https://dl-cdn.alpinelinux.org/alpine/v3.15/releases/x86_64/alpine-virt-3.15.11-x86_64.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/alpine/alpine-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Alpine Linux",
"OS": "alpine",
"Release": "v3.18",
"Option": "",
"DownloadURL": "https://dl-cdn.alpinelinux.org/alpine/v3.18/releases/x86_64/alpine-virt-3.18.12-x86_64.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/alpine/alpine-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Alpine Linux",
"OS": "alpine",
"Release": "v3.21",
"Option": "",
"DownloadURL": "https://dl-cdn.alpinelinux.org/alpine/v3.21/releases/x86_64/alpine-virt-3.21.6-x86_64.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/alpine/alpine-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Android x86",
"OS": "android",
"Release": "8.1",
"Option": "x86",
"DownloadURL": "https://mirrors.gigenet.com/OSDN/android-x86/69704/android-x86-8.1-r6.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/android/android-quickemu-white-pinkbg.png"
},
{
"DisplayName": "AlmaLinux",
"OS": "alma",
"Release": "8",
"Option": "boot",
"DownloadURL": "https://repo.almalinux.org/almalinux/8/isos/x86_64/AlmaLinux-8-latest-x86_64-boot.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/alma/alma-quickemu-white-pinkbg.png"
},
{
"DisplayName": "AlmaLinux",
"OS": "alma",
"Release": "8",
"Option": "dvd",
"DownloadURL": "https://repo.almalinux.org/almalinux/8/isos/x86_64/AlmaLinux-8-latest-x86_64-dvd.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/alma/alma-quickemu-white-pinkbg.png"
},
{
"DisplayName": "AlmaLinux",
"OS": "alma",
"Release": "9",
"Option": "dvd",
"DownloadURL": "https://repo.almalinux.org/almalinux/9/isos/x86_64/AlmaLinux-9-latest-x86_64-dvd.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/alma/alma-quickemu-white-pinkbg.png"
},
{
"DisplayName": "AlmaLinux",
"OS": "alma",
"Release": "8",
"Option": "minimal",
"DownloadURL": "https://repo.almalinux.org/almalinux/8/isos/x86_64/AlmaLinux-8-latest-x86_64-minimal.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/alma/alma-quickemu-white-pinkbg.png"
},
{
"DisplayName": "AlmaLinux",
"OS": "alma",
"Release": "9",
"Option": "boot",
"DownloadURL": "https://repo.almalinux.org/almalinux/9/isos/x86_64/AlmaLinux-9-latest-x86_64-boot.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/alma/alma-quickemu-white-pinkbg.png"
},
{
"DisplayName": "AlmaLinux",
"OS": "alma",
"Release": "9",
"Option": "minimal",
"DownloadURL": "https://repo.almalinux.org/almalinux/9/isos/x86_64/AlmaLinux-9-latest-x86_64-minimal.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/alma/alma-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Android x86",
"OS": "android",
"Release": "8.1",
"Option": "x86_64",
"DownloadURL": "https://mirrors.gigenet.com/OSDN/android-x86/69704/android-x86_64-8.1-r6.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/android/android-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Android x86",
"OS": "android",
"Release": "7.1",
"Option": "x86_64",
"DownloadURL": "https://mirrors.gigenet.com/OSDN/android-x86/67834/android-x86_64-7.1-r5.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/android/android-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Android x86",
"OS": "android",
"Release": "7.1",
"Option": "x86",
"DownloadURL": "https://mirrors.gigenet.com/OSDN/android-x86/67834/android-x86-7.1-r5.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/android/android-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Android x86",
"OS": "android",
"Release": "9.0",
"Option": "x86",
"DownloadURL": "https://mirrors.gigenet.com/OSDN/android-x86/71931/android-x86-9.0-r2.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/android/android-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Android x86",
"OS": "android",
"Release": "9.0",
"Option": "x86_64",
"DownloadURL": "https://mirrors.gigenet.com/OSDN/android-x86/71931/android-x86_64-9.0-r2.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/android/android-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Antix",
"OS": "antix",
"Release": "21",
"Option": "base-runit",
"DownloadURL": "https://phoenixnap.dl.sourceforge.net/project/antix-linux/Final/antiX-21/runit-bullseye/antiX-21-runit_x64-base.iso?viasf=1",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/antix/antix-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Antix",
"OS": "antix",
"Release": "21",
"Option": "base-sysv",
"DownloadURL": "",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/antix/antix-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Antix",
"OS": "antix",
"Release": "21",
"Option": "core-runit",
"DownloadURL": "https://phoenixnap.dl.sourceforge.net/project/antix-linux/Final/antiX-21/runit-bullseye/antiX-21-runit_x64-core.iso?viasf=1",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/antix/antix-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Antix",
"OS": "antix",
"Release": "21",
"Option": "core-sysv",
"DownloadURL": "https://phoenixnap.dl.sourceforge.net/project/antix-linux/Final/antiX-21/antiX-21_x64-core.iso?viasf=1",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/antix/antix-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Antix",
"OS": "antix",
"Release": "21",
"Option": "full-runit",
"DownloadURL": "https://phoenixnap.dl.sourceforge.net/project/antix-linux/Final/antiX-21/runit-bullseye/antiX-21-runit_x64-full.iso?viasf=1",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/antix/antix-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Antix",
"OS": "antix",
"Release": "21",
"Option": "full-sysv",
"DownloadURL": "https://pilotfiber.dl.sourceforge.net/project/antix-linux/Final/antiX-21/antiX-21_x64-full.iso?viasf=1",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/antix/antix-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Antix",
"OS": "antix",
"Release": "21",
"Option": "net-runit",
"DownloadURL": "",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/antix/antix-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Antix",
"OS": "antix",
"Release": "21",
"Option": "net-sysv",
"DownloadURL": "https://phoenixnap.dl.sourceforge.net/project/antix-linux/Final/antiX-21/antiX-21-net_x64-net.iso?viasf=1",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/antix/antix-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Antix",
"OS": "antix",
"Release": "22",
"Option": "base-runit",
"DownloadURL": "https://phoenixnap.dl.sourceforge.net/project/antix-linux/Final/antiX-22/runit-antiX-22/antiX-22-runit_x64-base.iso?viasf=1",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/antix/antix-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Antix",
"OS": "antix",
"Release": "22",
"Option": "base-sysv",
"DownloadURL": "https://phoenixnap.dl.sourceforge.net/project/antix-linux/Final/antiX-22/antiX-22_x64-base.iso?viasf=1",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/antix/antix-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Antix",
"OS": "antix",
"Release": "22",
"Option": "full-runit",
"DownloadURL": "https://phoenixnap.dl.sourceforge.net/project/antix-linux/Final/antiX-22/runit-antiX-22/antiX-22-runit_x64-full.iso?viasf=1",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/antix/antix-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Antix",
"OS": "antix",
"Release": "22",
"Option": "core-sysv",
"DownloadURL": "https://master.dl.sourceforge.net/project/antix-linux/Final/antiX-22/antiX-22_x64-core.iso?viasf=1",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/antix/antix-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Antix",
"OS": "antix",
"Release": "22",
"Option": "core-runit",
"DownloadURL": "https://phoenixnap.dl.sourceforge.net/project/antix-linux/Final/antiX-22/runit-antiX-22/antiX-22-runit_x64-core.iso?viasf=1",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/antix/antix-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Antix",
"OS": "antix",
"Release": "22",
"Option": "net-runit",
"DownloadURL": "https://phoenixnap.dl.sourceforge.net/project/antix-linux/Final/antiX-22/runit-antiX-22/antiX-22-runit-net_x64-net.iso?viasf=1",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/antix/antix-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Antix",
"OS": "antix",
"Release": "22",
"Option": "full-sysv",
"DownloadURL": "https://phoenixnap.dl.sourceforge.net/project/antix-linux/Final/antiX-22/antiX-22_x64-full.iso?viasf=1",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/antix/antix-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Antix",
"OS": "antix",
"Release": "23",
"Option": "base-runit",
"DownloadURL": "https://phoenixnap.dl.sourceforge.net/project/antix-linux/Final/antiX-23/runit-antiX-23/antiX-23-runit_x64-base.iso?viasf=1",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/antix/antix-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Antix",
"OS": "antix",
"Release": "22",
"Option": "net-sysv",
"DownloadURL": "https://master.dl.sourceforge.net/project/antix-linux/Final/antiX-22/antiX-22-net_x64-net.iso?viasf=1",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/antix/antix-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Antix",
"OS": "antix",
"Release": "23",
"Option": "base-sysv",
"DownloadURL": "https://phoenixnap.dl.sourceforge.net/project/antix-linux/Final/antiX-23/antiX-23_x64-base.iso?viasf=1",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/antix/antix-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Antix",
"OS": "antix",
"Release": "23",
"Option": "core-runit",
"DownloadURL": "https://master.dl.sourceforge.net/project/antix-linux/Final/antiX-23/runit-antiX-23/antiX-23-runit_x64-core.iso?viasf=1",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/antix/antix-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Antix",
"OS": "antix",
"Release": "23",
"Option": "core-sysv",
"DownloadURL": "https://master.dl.sourceforge.net/project/antix-linux/Final/antiX-23/antiX-23_x64-core.iso?viasf=1",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/antix/antix-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Antix",
"OS": "antix",
"Release": "23",
"Option": "full-runit",
"DownloadURL": "https://master.dl.sourceforge.net/project/antix-linux/Final/antiX-23/runit-antiX-23/antiX-23-runit_x64-full.iso?viasf=1",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/antix/antix-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Antix",
"OS": "antix",
"Release": "23",
"Option": "full-sysv",
"DownloadURL": "https://pilotfiber.dl.sourceforge.net/project/antix-linux/Final/antiX-23/antiX-23_x64-full.iso?viasf=1",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/antix/antix-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Antix",
"OS": "antix",
"Release": "23",
"Option": "net-runit",
"DownloadURL": "https://master.dl.sourceforge.net/project/antix-linux/Final/antiX-23/runit-antiX-23/antiX-23-runit-net_x64-net.iso?viasf=1",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/antix/antix-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Antix",
"OS": "antix",
"Release": "23",
"Option": "net-sysv",
"DownloadURL": "https://master.dl.sourceforge.net/project/antix-linux/Final/antiX-23/antiX-23-net_x64-net.iso?viasf=1",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/antix/antix-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Antix",
"OS": "antix",
"Release": "23.1",
"Option": "base-runit",
"DownloadURL": "https://master.dl.sourceforge.net/project/antix-linux/Final/antiX-23.1/runit-antiX-23.1/antiX-23.1-runit_x64-base.iso?viasf=1",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/antix/antix-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Antix",
"OS": "antix",
"Release": "23.1",
"Option": "base-sysv",
"DownloadURL": "https://gigenet.dl.sourceforge.net/project/antix-linux/Final/antiX-23.1/antiX-23.1_x64-base.iso?viasf=1",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/antix/antix-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Antix",
"OS": "antix",
"Release": "23.1",
"Option": "core-runit",
"DownloadURL": "https://master.dl.sourceforge.net/project/antix-linux/Final/antiX-23.1/runit-antiX-23.1/antiX-23.1-runit_x64-core.iso?viasf=1",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/antix/antix-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Antix",
"OS": "antix",
"Release": "23.1",
"Option": "core-sysv",
"DownloadURL": "https://master.dl.sourceforge.net/project/antix-linux/Final/antiX-23.1/antiX-23.1_x64-core.iso?viasf=1",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/antix/antix-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Antix",
"OS": "antix",
"Release": "23.1",
"Option": "full-runit",
"DownloadURL": "https://master.dl.sourceforge.net/project/antix-linux/Final/antiX-23.1/runit-antiX-23.1/antiX-23.1-runit_x64-full.iso?viasf=1",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/antix/antix-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Antix",
"OS": "antix",
"Release": "23.1",
"Option": "full-sysv",
"DownloadURL": "https://pilotfiber.dl.sourceforge.net/project/antix-linux/Final/antiX-23.1/antiX-23.1_x64-full.iso?viasf=1",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/antix/antix-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Antix",
"OS": "antix",
"Release": "23.1",
"Option": "net-sysv",
"DownloadURL": "https://master.dl.sourceforge.net/project/antix-linux/Final/antiX-23.1/antiX-23.1-net_x64-net.iso?viasf=1",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/antix/antix-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Antix",
"OS": "antix",
"Release": "23.1",
"Option": "net-runit",
"DownloadURL": "https://master.dl.sourceforge.net/project/antix-linux/Final/antiX-23.1/runit-antiX-23.1/antiX-23.1-runit-net_x64-net.iso?viasf=1",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/antix/antix-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Arch Linux",
"OS": "archlinux",
"Release": "latest",
"Option": "",
"DownloadURL": "https://geo.mirror.pkgbuild.com//iso/2026.03.01/archlinux-2026.03.01-x86_64.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/archlinux/archlinux-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Archcraft",
"OS": "archcraft",
"Release": "latest",
"Option": "",
"DownloadURL": "https://pilotfiber.dl.sourceforge.net/project/archcraft/v26.02/archcraft-2026.02.02-x86_64.iso?viasf=1",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/archcraft/archcraft-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Artix Linux",
"OS": "artixlinux",
"Release": "20250407",
"Option": "base-dinit",
"DownloadURL": "https://iso.artixlinux.org/iso/artix-base-dinit-20250407-x86_64.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/artixlinux/artixlinux-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Artix Linux",
"OS": "artixlinux",
"Release": "20250407",
"Option": "base-openrc",
"DownloadURL": "https://iso.artixlinux.org/iso/artix-base-openrc-20250407-x86_64.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/artixlinux/artixlinux-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Artix Linux",
"OS": "artixlinux",
"Release": "20250407",
"Option": "base-s6",
"DownloadURL": "https://iso.artixlinux.org/iso/artix-base-s6-20250407-x86_64.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/artixlinux/artixlinux-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Artix Linux",
"OS": "artixlinux",
"Release": "20250407",
"Option": "base-runit",
"DownloadURL": "https://iso.artixlinux.org/iso/artix-base-runit-20250407-x86_64.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/artixlinux/artixlinux-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Artix Linux",
"OS": "artixlinux",
"Release": "20250407",
"Option": "cinnamon-dinit",
"DownloadURL": "https://iso.artixlinux.org/iso/artix-cinnamon-dinit-20250407-x86_64.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/artixlinux/artixlinux-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Artix Linux",
"OS": "artixlinux",
"Release": "20250407",
"Option": "cinnamon-openrc",
"DownloadURL": "https://iso.artixlinux.org/iso/artix-cinnamon-openrc-20250407-x86_64.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/artixlinux/artixlinux-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Artix Linux",
"OS": "artixlinux",
"Release": "20250407",
"Option": "cinnamon-runit",
"DownloadURL": "https://iso.artixlinux.org/iso/artix-cinnamon-runit-20250407-x86_64.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/artixlinux/artixlinux-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Artix Linux",
"OS": "artixlinux",
"Release": "20250407",
"Option": "cinnamon-s6",
"DownloadURL": "https://iso.artixlinux.org/iso/artix-cinnamon-s6-20250407-x86_64.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/artixlinux/artixlinux-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Artix Linux",
"OS": "artixlinux",
"Release": "20250407",
"Option": "community-gtk-openrc",
"DownloadURL": "https://iso.artixlinux.org/iso/artix-community-gtk-openrc-20250407-x86_64.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/artixlinux/artixlinux-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Artix Linux",
"OS": "artixlinux",
"Release": "20250407",
"Option": "community-qt-openrc",
"DownloadURL": "https://iso.artixlinux.org/iso/artix-community-qt-openrc-20250407-x86_64.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/artixlinux/artixlinux-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Artix Linux",
"OS": "artixlinux",
"Release": "20250407",
"Option": "lxde-dinit",
"DownloadURL": "https://iso.artixlinux.org/iso/artix-lxde-dinit-20250407-x86_64.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/artixlinux/artixlinux-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Artix Linux",
"OS": "artixlinux",
"Release": "20250407",
"Option": "lxde-openrc",
"DownloadURL": "https://iso.artixlinux.org/iso/artix-lxde-openrc-20250407-x86_64.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/artixlinux/artixlinux-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Artix Linux",
"OS": "artixlinux",
"Release": "20250407",
"Option": "lxde-runit",
"DownloadURL": "https://iso.artixlinux.org/iso/artix-lxde-runit-20250407-x86_64.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/artixlinux/artixlinux-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Artix Linux",
"OS": "artixlinux",
"Release": "20250407",
"Option": "lxde-s6",
"DownloadURL": "https://iso.artixlinux.org/iso/artix-lxde-s6-20250407-x86_64.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/artixlinux/artixlinux-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Artix Linux",
"OS": "artixlinux",
"Release": "20250407",
"Option": "lxqt-dinit",
"DownloadURL": "https://iso.artixlinux.org/iso/artix-lxqt-dinit-20250407-x86_64.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/artixlinux/artixlinux-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Artix Linux",
"OS": "artixlinux",
"Release": "20250407",
"Option": "lxqt-openrc",
"DownloadURL": "https://iso.artixlinux.org/iso/artix-lxqt-openrc-20250407-x86_64.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/artixlinux/artixlinux-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Artix Linux",
"OS": "artixlinux",
"Release": "20250407",
"Option": "lxqt-s6",
"DownloadURL": "https://iso.artixlinux.org/iso/artix-lxqt-s6-20250407-x86_64.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/artixlinux/artixlinux-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Artix Linux",
"OS": "artixlinux",
"Release": "20250407",
"Option": "lxqt-runit",
"DownloadURL": "https://iso.artixlinux.org/iso/artix-lxqt-runit-20250407-x86_64.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/artixlinux/artixlinux-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Artix Linux",
"OS": "artixlinux",
"Release": "20250407",
"Option": "mate-dinit",
"DownloadURL": "https://iso.artixlinux.org/iso/artix-mate-dinit-20250407-x86_64.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/artixlinux/artixlinux-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Artix Linux",
"OS": "artixlinux",
"Release": "20250407",
"Option": "mate-openrc",
"DownloadURL": "https://iso.artixlinux.org/iso/artix-mate-openrc-20250407-x86_64.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/artixlinux/artixlinux-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Artix Linux",
"OS": "artixlinux",
"Release": "20250407",
"Option": "mate-runit",
"DownloadURL": "https://iso.artixlinux.org/iso/artix-mate-runit-20250407-x86_64.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/artixlinux/artixlinux-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Artix Linux",
"OS": "artixlinux",
"Release": "20250407",
"Option": "mate-s6",
"DownloadURL": "https://iso.artixlinux.org/iso/artix-mate-s6-20250407-x86_64.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/artixlinux/artixlinux-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Artix Linux",
"OS": "artixlinux",
"Release": "20250407",
"Option": "plasma-dinit",
"DownloadURL": "https://iso.artixlinux.org/iso/artix-plasma-dinit-20250407-x86_64.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/artixlinux/artixlinux-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Artix Linux",
"OS": "artixlinux",
"Release": "20250407",
"Option": "plasma-openrc",
"DownloadURL": "https://iso.artixlinux.org/iso/artix-plasma-openrc-20250407-x86_64.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/artixlinux/artixlinux-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Artix Linux",
"OS": "artixlinux",
"Release": "20250407",
"Option": "plasma-runit",
"DownloadURL": "https://iso.artixlinux.org/iso/artix-plasma-runit-20250407-x86_64.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/artixlinux/artixlinux-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Artix Linux",
"OS": "artixlinux",
"Release": "20250407",
"Option": "plasma-s6",
"DownloadURL": "https://iso.artixlinux.org/iso/artix-plasma-s6-20250407-x86_64.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/artixlinux/artixlinux-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Artix Linux",
"OS": "artixlinux",
"Release": "20250407",
"Option": "xfce-dinit",
"DownloadURL": "https://iso.artixlinux.org/iso/artix-xfce-dinit-20250407-x86_64.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/artixlinux/artixlinux-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Artix Linux",
"OS": "artixlinux",
"Release": "20250407",
"Option": "xfce-openrc",
"DownloadURL": "https://iso.artixlinux.org/iso/artix-xfce-openrc-20250407-x86_64.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/artixlinux/artixlinux-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Artix Linux",
"OS": "artixlinux",
"Release": "20250407",
"Option": "xfce-runit",
"DownloadURL": "https://iso.artixlinux.org/iso/artix-xfce-runit-20250407-x86_64.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/artixlinux/artixlinux-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Artix Linux",
"OS": "artixlinux",
"Release": "20250407",
"Option": "xfce-s6",
"DownloadURL": "https://iso.artixlinux.org/iso/artix-xfce-s6-20250407-x86_64.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/artixlinux/artixlinux-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Azure Linux",
"OS": "azurelinux",
"Release": "3.0",
"Option": "",
"DownloadURL": "https://osrelease.download.prss.microsoft.com/pr/download/AzureLinux-3.0-x86_64.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/azurelinux/azurelinux-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Batocera",
"OS": "batocera",
"Release": "38",
"Option": "",
"DownloadURL": "https://mirrors.o2switch.fr/batocera/x86_64/stable/38/batocera-x86_64-x86_64-38-20231014.img.gz",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/batocera/batocera-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Batocera",
"OS": "batocera",
"Release": "39",
"Option": "",
"DownloadURL": "https://mirrors.o2switch.fr/batocera/x86_64/stable/39/batocera-x86_64-x86_64-39-20240304.img.gz",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/batocera/batocera-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Batocera",
"OS": "batocera",
"Release": "40",
"Option": "",
"DownloadURL": "https://mirrors.o2switch.fr/batocera/x86_64/stable/40/batocera-x86_64-40-20240801.img.gz",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/batocera/batocera-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Batocera",
"OS": "batocera",
"Release": "41",
"Option": "",
"DownloadURL": "https://mirrors.o2switch.fr/batocera/x86_64/stable/41/batocera-x86_64-41-20250106.img.gz",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/batocera/batocera-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Batocera",
"OS": "batocera",
"Release": "42",
"Option": "",
"DownloadURL": "https://mirrors.o2switch.fr/batocera/x86_64/stable/42/batocera-x86_64-42-20251006.img.gz",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/batocera/batocera-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Bazzite",
"OS": "bazzite",
"Release": "latest",
"Option": "deck-gnome",
"DownloadURL": "https://download.bazzite.gg/bazzite-deck-gnome-stable-amd64.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/bazzite/bazzite-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Bazzite",
"OS": "bazzite",
"Release": "latest",
"Option": "deck-plasma",
"DownloadURL": "https://download.bazzite.gg/bazzite-deck-stable-amd64.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/bazzite/bazzite-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Bazzite",
"OS": "bazzite",
"Release": "latest",
"Option": "plasma",
"DownloadURL": "https://download.bazzite.gg/bazzite-stable-amd64.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/bazzite/bazzite-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Bazzite",
"OS": "bazzite",
"Release": "latest",
"Option": "gnome",
"DownloadURL": "https://download.bazzite.gg/bazzite-gnome-stable-amd64.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/bazzite/bazzite-quickemu-white-pinkbg.png"
},
{
"DisplayName": "BigLinux",
"OS": "biglinux",
"Release": "2026-03-28",
"Option": "k612",
"DownloadURL": "https://iso.biglinux.com.br/biglinux_2026-03-28_k612.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/biglinux/biglinux-quickemu-white-pinkbg.png"
},
{
"DisplayName": "BigLinux",
"OS": "biglinux",
"Release": "2026-03-28",
"Option": "k618",
"DownloadURL": "https://iso.biglinux.com.br/biglinux_2026-03-28_k618.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/biglinux/biglinux-quickemu-white-pinkbg.png"
},
{
"DisplayName": "BigLinux",
"OS": "biglinux",
"Release": "2026-03-28",
"Option": "k619",
"DownloadURL": "https://iso.biglinux.com.br/biglinux_2026-03-28_k619.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/biglinux/biglinux-quickemu-white-pinkbg.png"
},
{
"DisplayName": "BlendOS",
"OS": "blendos",
"Release": "latest",
"Option": "",
"DownloadURL": "",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/blendos/blendos-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Bodhi",
"OS": "bodhi",
"Release": "7.0.0",
"Option": "hwe",
"DownloadURL": "https://gigenet.dl.sourceforge.net/project/bodhilinux/7.0.0/bodhi-7.0.0-64-hwe.iso?viasf=1",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/bodhi/bodhi-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Bodhi",
"OS": "bodhi",
"Release": "7.0.0",
"Option": "s76",
"DownloadURL": "https://gigenet.dl.sourceforge.net/project/bodhilinux/7.0.0/bodhi-7.0.0-64-s76.iso?viasf=1",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/bodhi/bodhi-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Bodhi",
"OS": "bodhi",
"Release": "7.0.0",
"Option": "standard",
"DownloadURL": "https://gigenet.dl.sourceforge.net/project/bodhilinux/7.0.0/bodhi-7.0.0-64.iso?viasf=1",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/bodhi/bodhi-quickemu-white-pinkbg.png"
},
{
"DisplayName": "BunsenLabs",
"OS": "bunsenlabs",
"Release": "boron",
"Option": "",
"DownloadURL": "https://ddl.bunsenlabs.org/ddl/boron-1-240123-amd64.hybrid.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/bunsenlabs/bunsenlabs-quickemu-white-pinkbg.png"
},
{
"DisplayName": "CachyOS",
"OS": "cachyos",
"Release": "latest",
"Option": "desktop",
"DownloadURL": "https://cdn77.cachyos.org/ISO/desktop/260308/cachyos-desktop-linux-260308.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/cachyos/cachyos-quickemu-white-pinkbg.png"
},
{
"DisplayName": "CachyOS",
"OS": "cachyos",
"Release": "latest",
"Option": "handheld",
"DownloadURL": "https://cdn77.cachyos.org/ISO/handheld/260308/cachyos-handheld-linux-260308.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/cachyos/cachyos-quickemu-white-pinkbg.png"
},
{
"DisplayName": "CentOS Stream",
"OS": "centos-stream",
"Release": "10",
"Option": "boot",
"DownloadURL": "https://linuxsoft.cern.ch/centos-stream/10-stream/BaseOS/x86_64/iso/CentOS-Stream-10-latest-x86_64-boot.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/centos-stream/centos-stream-quickemu-white-pinkbg.png"
},
{
"DisplayName": "CentOS Stream",
"OS": "centos-stream",
"Release": "10",
"Option": "dvd1",
"DownloadURL": "https://linuxsoft.cern.ch/centos-stream/10-stream/BaseOS/x86_64/iso/CentOS-Stream-10-latest-x86_64-dvd1.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/centos-stream/centos-stream-quickemu-white-pinkbg.png"
},
{
"DisplayName": "CentOS Stream",
"OS": "centos-stream",
"Release": "9",
"Option": "boot",
"DownloadURL": "https://linuxsoft.cern.ch/centos-stream/9-stream/BaseOS/x86_64/iso/CentOS-Stream-9-latest-x86_64-boot.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/centos-stream/centos-stream-quickemu-white-pinkbg.png"
},
{
"DisplayName": "CentOS Stream",
"OS": "centos-stream",
"Release": "9",
"Option": "dvd1",
"DownloadURL": "https://linuxsoft.cern.ch/centos-stream/9-stream/BaseOS/x86_64/iso/CentOS-Stream-9-latest-x86_64-dvd1.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/centos-stream/centos-stream-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Chimera Linux",
"OS": "chimeralinux",
"Release": "latest",
"Option": "base",
"DownloadURL": "https://repo.chimera-linux.org/live/latest/chimera-linux-x86_64-LIVE-20251220-base.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/chimeralinux/chimeralinux-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Chimera Linux",
"OS": "chimeralinux",
"Release": "latest",
"Option": "gnome",
"DownloadURL": "https://repo.chimera-linux.org/live/latest/chimera-linux-x86_64-LIVE-20251220-gnome.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/chimeralinux/chimeralinux-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Crunchbangplusplus",
"OS": "crunchbang++",
"Release": "10.1",
"Option": "",
"DownloadURL": "https://release-assets.githubusercontent.com/github-production-release-asset/30788395/ab9b9481-485a-4a2c-a839-f9a3dd184648?sp=r&sv=2018-11-09&sr=b&spr=https&se=2026-03-30T01%3A35%3A16Z&rscd=attachment%3B+filename%3Dcbpp-10.1-amd64-20190713.iso&rsct=application%2Foctet-stream&skoid=96c2d410-5711-43a1-aedd-ab1947aa7ab0&sktid=398a6654-997b-47e9-b12b-9515b896b4de&skt=2026-03-30T00%3A35%3A12Z&ske=2026-03-30T01%3A35%3A16Z&sks=b&skv=2018-11-09&sig=L5GqIXFBZnNzmdefuuFCanK6EvJLoy2VoOhCz%2BvZNrI%3D&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmVsZWFzZS1hc3NldHMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIiwia2V5Ijoia2V5MSIsImV4cCI6MTc3NDgzNTU2MSwibmJmIjoxNzc0ODMxOTYxLCJwYXRoIjoicmVsZWFzZWFzc2V0cHJvZHVjdGlvbi5ibG9iLmNvcmUud2luZG93cy5uZXQifQ.WdWldCNP0b91y5vrNhAMA2GcDRtPD3UpyPo_6QnX6w4&response-content-disposition=attachment%3B%20filename%3Dcbpp-10.1-amd64-20190713.iso&response-content-type=application%2Foctet-stream",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/crunchbang++/crunchbang++-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Crunchbangplusplus",
"OS": "crunchbang++",
"Release": "11.2",
"Option": "",
"DownloadURL": "https://release-assets.githubusercontent.com/github-production-release-asset/30788395/9de39026-2271-45ff-87b6-10e1f86dd660?sp=r&sv=2018-11-09&sr=b&spr=https&se=2026-03-30T01%3A27%3A26Z&rscd=attachment%3B+filename%3Dcbpp-11.2-amd64-20230514.iso&rsct=application%2Foctet-stream&skoid=96c2d410-5711-43a1-aedd-ab1947aa7ab0&sktid=398a6654-997b-47e9-b12b-9515b896b4de&skt=2026-03-30T00%3A27%3A15Z&ske=2026-03-30T01%3A27%3A26Z&sks=b&skv=2018-11-09&sig=9JArrYAJmfGH2Y6OgBNhDnn1QAm%2BiWaBGVVbJ%2F8bgsI%3D&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmVsZWFzZS1hc3NldHMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIiwia2V5Ijoia2V5MSIsImV4cCI6MTc3NDgzNTU2MSwibmJmIjoxNzc0ODMxOTYxLCJwYXRoIjoicmVsZWFzZWFzc2V0cHJvZHVjdGlvbi5ibG9iLmNvcmUud2luZG93cy5uZXQifQ.WdWldCNP0b91y5vrNhAMA2GcDRtPD3UpyPo_6QnX6w4&response-content-disposition=attachment%3B%20filename%3Dcbpp-11.2-amd64-20230514.iso&response-content-type=application%2Foctet-stream",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/crunchbang++/crunchbang++-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Crunchbangplusplus",
"OS": "crunchbang++",
"Release": "9.0",
"Option": "",
"DownloadURL": "https://release-assets.githubusercontent.com/github-production-release-asset/30788395/9318d9d4-cdc9-4d7e-8e6c-d73f5561bd2b?sp=r&sv=2018-11-09&sr=b&spr=https&se=2026-03-30T01%3A43%3A04Z&rscd=attachment%3B+filename%3Dcbpp-9.0-amd64-20170621.iso&rsct=application%2Foctet-stream&skoid=96c2d410-5711-43a1-aedd-ab1947aa7ab0&sktid=398a6654-997b-47e9-b12b-9515b896b4de&skt=2026-03-30T00%3A42%3A37Z&ske=2026-03-30T01%3A43%3A04Z&sks=b&skv=2018-11-09&sig=XQM%2Fr1PECoAt9b9NA12odwfPU3dSQFmLxkTep7PN%2Fyg%3D&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmVsZWFzZS1hc3NldHMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIiwia2V5Ijoia2V5MSIsImV4cCI6MTc3NDgzNTU2MSwibmJmIjoxNzc0ODMxOTYxLCJwYXRoIjoicmVsZWFzZWFzc2V0cHJvZHVjdGlvbi5ibG9iLmNvcmUud2luZG93cy5uZXQifQ.WdWldCNP0b91y5vrNhAMA2GcDRtPD3UpyPo_6QnX6w4&response-content-disposition=attachment%3B%20filename%3Dcbpp-9.0-amd64-20170621.iso&response-content-type=application%2Foctet-stream",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/crunchbang++/crunchbang++-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Crunchbangplusplus",
"OS": "crunchbang++",
"Release": "12.0",
"Option": "",
"DownloadURL": "https://release-assets.githubusercontent.com/github-production-release-asset/30788395/16649d3d-d768-47b0-afbc-83987fac1df4?sp=r&sv=2018-11-09&sr=b&spr=https&se=2026-03-30T01%3A45%3A22Z&rscd=attachment%3B+filename%3Dcbpp-12.0-amd64-20230611.iso&rsct=application%2Foctet-stream&skoid=96c2d410-5711-43a1-aedd-ab1947aa7ab0&sktid=398a6654-997b-47e9-b12b-9515b896b4de&skt=2026-03-30T00%3A45%3A17Z&ske=2026-03-30T01%3A45%3A22Z&sks=b&skv=2018-11-09&sig=TM%2FvPT24B8y5oxZeZrRrjXcrOuKCnb7aZMUrKwNyQKI%3D&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmVsZWFzZS1hc3NldHMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIiwia2V5Ijoia2V5MSIsImV4cCI6MTc3NDgzNTU2MSwibmJmIjoxNzc0ODMxOTYxLCJwYXRoIjoicmVsZWFzZWFzc2V0cHJvZHVjdGlvbi5ibG9iLmNvcmUud2luZG93cy5uZXQifQ.WdWldCNP0b91y5vrNhAMA2GcDRtPD3UpyPo_6QnX6w4&response-content-disposition=attachment%3B%20filename%3Dcbpp-12.0-amd64-20230611.iso&response-content-type=application%2Foctet-stream",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/crunchbang++/crunchbang++-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Debian",
"OS": "debian",
"Release": "11.11.0",
"Option": "cinnamon",
"DownloadURL": "https://saimei.ftp.acc.umu.se/cdimage/archive/11.11.0-live/amd64/iso-hybrid/debian-live-11.11.0-amd64-cinnamon.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/debian/debian-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Debian",
"OS": "debian",
"Release": "11.11.0",
"Option": "gnome",
"DownloadURL": "https://saimei.ftp.acc.umu.se/cdimage/archive/11.11.0-live/amd64/iso-hybrid/debian-live-11.11.0-amd64-gnome.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/debian/debian-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Debian",
"OS": "debian",
"Release": "11.11.0",
"Option": "kde",
"DownloadURL": "https://laotzu.ftp.acc.umu.se/cdimage/archive/11.11.0-live/amd64/iso-hybrid/debian-live-11.11.0-amd64-kde.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/debian/debian-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Debian",
"OS": "debian",
"Release": "11.11.0",
"Option": "lxde",
"DownloadURL": "https://chuangtzu.ftp.acc.umu.se/cdimage/archive/11.11.0-live/amd64/iso-hybrid/debian-live-11.11.0-amd64-lxde.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/debian/debian-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Debian",
"OS": "debian",
"Release": "11.11.0",
"Option": "lxqt",
"DownloadURL": "https://chuangtzu.ftp.acc.umu.se/cdimage/archive/11.11.0-live/amd64/iso-hybrid/debian-live-11.11.0-amd64-lxqt.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/debian/debian-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Debian",
"OS": "debian",
"Release": "11.11.0",
"Option": "mate",
"DownloadURL": "https://laotzu.ftp.acc.umu.se/cdimage/archive/11.11.0-live/amd64/iso-hybrid/debian-live-11.11.0-amd64-mate.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/debian/debian-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Debian",
"OS": "debian",
"Release": "11.11.0",
"Option": "netinst",
"DownloadURL": "https://saimei.ftp.acc.umu.se/cdimage/archive/11.11.0/amd64/iso-cd/debian-11.11.0-amd64-netinst.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/debian/debian-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Debian",
"OS": "debian",
"Release": "11.11.0",
"Option": "standard",
"DownloadURL": "https://saimei.ftp.acc.umu.se/cdimage/archive/11.11.0-live/amd64/iso-hybrid/debian-live-11.11.0-amd64-standard.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/debian/debian-quickemu-white-pinkbg.png"
},
{
"DisplayName": "Debian",
"OS": "debian",
"Release": "11.11.0",
"Option": "xfce",
"DownloadURL": "https://gemmei.ftp.acc.umu.se/cdimage/archive/11.11.0-live/amd64/iso-hybrid/debian-live-11.11.0-amd64-xfce.iso",
"Logo": "https://quickemu-project.github.io/quickemu-icons/png/debian/debian-quickemu-white-pinkbg.png"