-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOS_LIST_COFFEEPIE.json
More file actions
2290 lines (2290 loc) · 89.3 KB
/
Copy pathOS_LIST_COFFEEPIE.json
File metadata and controls
2290 lines (2290 loc) · 89.3 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
[
{
"vmTempId": 999000001,
"osName": "Windows 11",
"licenseType": "Required",
"usersAverageScore": 7.2,
"coffeePieRank": 1,
"distroWatchRank": 0,
"popularityHitsPerDay": 0,
"version": "23H2",
"kernel": "Windows NT",
"recommendedUse": "Microsoft's premier operating system for general desktop, gaming, and enterprise use.",
"projectUrl": "https://www.microsoft.com/windows/",
"downloadMirrors": "https://www.microsoft.com/software-download/windows11",
"mainLtsIsoDownload": "",
"osType": "Windows",
"basedOn": "Windows NT",
"originCountry": "USA",
"architecture": "x86_64, ARM64",
"desktopEnvironment": "Windows Shell",
"category": "Desktop, Gaming, Enterprise",
"status": "Active"
},
{
"vmTempId": 999000002,
"osName": "Valve SteamOS",
"licenseType": "Free",
"usersAverageScore": 8.5,
"coffeePieRank": 2,
"distroWatchRank": 0,
"popularityHitsPerDay": 0,
"version": "3.9",
"kernel": "Linux",
"recommendedUse": "Arch-based Linux distribution by Valve, optimized for gaming and the Steam Deck.",
"projectUrl": "https://store.steampowered.com/steamos",
"downloadMirrors": "https://help.steampowered.com/en/faqs/view/1B71-EDF2-EB6D-2BB3",
"mainLtsIsoDownload": "https://steamdeck-images.steamos.cloud/recovery/steamdeck-repair-latest.img.bz2",
"osType": "Linux",
"basedOn": "Arch Linux",
"originCountry": "USA",
"architecture": "x86_64",
"desktopEnvironment": "KDE Plasma (Desktop Mode), Gamescope",
"category": "Gaming",
"status": "Active"
},
{
"vmTempId": 999000003,
"osName": "macOS Cloud",
"licenseType": "Required",
"usersAverageScore": 8.1,
"coffeePieRank": 3,
"distroWatchRank": 0,
"popularityHitsPerDay": 0,
"version": "14 / 15",
"kernel": "XNU (Darwin)",
"recommendedUse": "Apple's proprietary Unix operating system for Mac computers, favored by creatives and developers.",
"projectUrl": "https://www.apple.com/macos/",
"downloadMirrors": "",
"mainLtsIsoDownload": "",
"osType": "macOS",
"basedOn": "Darwin (BSD)",
"originCountry": "USA",
"architecture": "ARM64, x86_64",
"desktopEnvironment": "Aqua",
"category": "Desktop, Creator",
"status": "Inactive"
},
{
"vmTempId": 999000004,
"osName": "Red Hat Enterprise Linux",
"licenseType": "Premium Support",
"usersAverageScore": 8.4,
"coffeePieRank": 4,
"distroWatchRank": 0,
"popularityHitsPerDay": 0,
"version": "9.x",
"kernel": "5.14",
"recommendedUse": "Enterprise-grade commercial Linux distribution.",
"projectUrl": "https://www.redhat.com/",
"downloadMirrors": "https://developers.redhat.com/products/rhel/download",
"mainLtsIsoDownload": "",
"osType": "Linux",
"basedOn": "Fedora",
"originCountry": "USA",
"architecture": "x86_64, aarch64, s390x",
"desktopEnvironment": "GNOME",
"category": "Server, Enterprise",
"status": "Active"
},
{
"vmTempId": 999000005,
"osName": "TrueNAS",
"licenseType": "Premium Support",
"usersAverageScore": 9.1,
"coffeePieRank": 5,
"distroWatchRank": 0,
"popularityHitsPerDay": 0,
"version": "SCALE / CORE",
"kernel": "Linux / FreeBSD",
"recommendedUse": "Premier open-source storage OS for network-attached storage (NAS).",
"projectUrl": "https://www.truenas.com/",
"downloadMirrors": "https://www.truenas.com/download-truenas-core/",
"mainLtsIsoDownload": "",
"osType": "Linux / FreeBSD",
"basedOn": "Debian / FreeBSD",
"originCountry": "USA",
"architecture": "x86_64",
"desktopEnvironment": "WebUI",
"category": "Server, NAS",
"status": "Active"
},
{
"vmTempId": 999000101,
"osName": "CachyOS",
"licenseType": "Free",
"usersAverageScore": 9.5,
"coffeePieRank": 101,
"distroWatchRank": 1,
"popularityHitsPerDay": 4163,
"version": "260426",
"kernel": "6.19.10",
"recommendedUse": "CachyOS is an Arch-based distribution which provides a highly-optimised kernel and a number of performance-enhancing features. It is designed to be fast, stable and easy to use.",
"projectUrl": "https://cachyos.org/",
"downloadMirrors": "https://cachyos.org/download/",
"mainLtsIsoDownload": "https://cachyos.org/download/",
"osType": "Linux",
"basedOn": "Arch",
"originCountry": "Germany",
"architecture": "x86_64, x86-64-v3, x86-64-v4",
"desktopEnvironment": "Budgie, Cinnamon, COSMIC, Cutefish, GNOME, Hyprland, i3, KDE Plasma, LXQt, MATE, Openbox, Sway, UKUI, Wayfire, Xfce",
"category": "Desktop, Gaming, Live Medium",
"status": "Active"
},
{
"vmTempId": 999000102,
"osName": "Mint",
"licenseType": "Free",
"usersAverageScore": 8.8,
"coffeePieRank": 102,
"distroWatchRank": 2,
"popularityHitsPerDay": 2482,
"version": "Latest",
"kernel": "6.x",
"recommendedUse": "General use operating system (Mint).",
"projectUrl": "https://distrowatch.com/mint",
"downloadMirrors": "",
"mainLtsIsoDownload": "",
"osType": "Linux",
"basedOn": "Independent",
"originCountry": "Global",
"architecture": "x86_64",
"desktopEnvironment": "Xfce",
"category": "Desktop",
"status": "Active"
},
{
"vmTempId": 999000103,
"osName": "MX Linux",
"licenseType": "Free",
"usersAverageScore": 8.6,
"coffeePieRank": 103,
"distroWatchRank": 3,
"popularityHitsPerDay": 1947,
"version": "25.1",
"kernel": "6.18.4",
"recommendedUse": "MX Linux es una empresa cooperativa entre las comunidades de antiX y los antiguos desarrolladores de MEPIS, usando las mejores herramientas y talentos de cada distribución. Es una distribución de peso medio diseñada para combinar un escritorio elegante y eficiente con una configuración sencilla, alta estabilidad, desempeño sólido y un tamaño medio.",
"projectUrl": "https://mxlinux.org/",
"downloadMirrors": "https://mxlinux.org/download-links/",
"mainLtsIsoDownload": "https://mxlinux.org/download-links/",
"osType": "Linux",
"basedOn": "Debian, antiX",
"originCountry": "Greece, USA",
"architecture": "armhf, i686, x86_64",
"desktopEnvironment": "Fluxbox, KDE Plasma, Xfce",
"category": "Desktop, From RAM, Live Medium, Old Computers, Raspberry Pi",
"status": "Active"
},
{
"vmTempId": 999000104,
"osName": "Debian",
"licenseType": "Free",
"usersAverageScore": 8.9,
"coffeePieRank": 104,
"distroWatchRank": 4,
"popularityHitsPerDay": 1561,
"version": "13",
"kernel": "6.12.38",
"recommendedUse": "El Proyecto Debian es una asociación de individuos que han hecho causa común para crear un sistema operativo libre. Este sistema operativo que hemos creado se llama Debian.",
"projectUrl": "https://www.debian.org/",
"downloadMirrors": "https://www.debian.org/distrib/",
"mainLtsIsoDownload": "https://www.debian.org/distrib/",
"osType": "Linux",
"basedOn": "Independent",
"originCountry": "Global",
"architecture": "aarch64, armhf, ppc64el, riscv, s390x, x86_64",
"desktopEnvironment": "AfterStep, Awesome, Blackbox, bspwm, Budgie, Cinnamon, dwm, Enlightenment, Fluxbox, flwm, FVWM, GNOME, i3, IceWM, JWM, KDE Plasma, labwc, Lomiri, LXDE, LXQt, MATE, Metacity, Openbox, pekwm, Qtile, Ratpoison, Sway, TWM, UKUI, Wayfire, WMaker, Xfce",
"category": "Desktop, Live Medium, Server",
"status": "Active"
},
{
"vmTempId": 999000105,
"osName": "Pop!_OS",
"licenseType": "Free",
"usersAverageScore": 8.7,
"coffeePieRank": 105,
"distroWatchRank": 5,
"popularityHitsPerDay": 1386,
"version": "24.04",
"kernel": "6.17.9",
"recommendedUse": "Pop!_OS is a Linux distribution based on Ubuntu and featuring a custom GNOME desktop, COSMIC. The distribution is developed by US Linux computer retailer System76.",
"projectUrl": "https://pop.system76.com/",
"downloadMirrors": "https://pop.system76.com/",
"mainLtsIsoDownload": "https://pop.system76.com/",
"osType": "Linux",
"basedOn": "Debian, Ubuntu",
"originCountry": "USA",
"architecture": "aarch64, x86_64",
"desktopEnvironment": "COSMIC, GNOME",
"category": "Desktop, Live Medium, Raspberry Pi",
"status": "Active"
},
{
"vmTempId": 999000106,
"osName": "EndeavourOS",
"licenseType": "Free",
"usersAverageScore": 9.2,
"coffeePieRank": 106,
"distroWatchRank": 6,
"popularityHitsPerDay": 1322,
"version": "2026.04.27",
"kernel": "6.19.14",
"recommendedUse": "EndeavourOS es una distribución de Línux basada en Arch. El proyecto es un sucesor espiritual de Antergos - una distribución descontinuada que tenía la meta de hacer el sistema operativo Arch amigable con el usuario al proveer de un instalador fácil y un ambiente de escritorio pre-configurado.",
"projectUrl": "https://endeavouros.com/",
"downloadMirrors": "https://endeavouros.com/download/",
"mainLtsIsoDownload": "https://endeavouros.com/download/",
"osType": "Linux",
"basedOn": "Arch",
"originCountry": "Netherlands",
"architecture": "aarch64, x86_64",
"desktopEnvironment": "Budgie, Cinnamon, GNOME, i3, KDE Plasma, LXQt, MATE, Xfce",
"category": "Desktop, Live Medium, Raspberry Pi",
"status": "Active"
},
{
"vmTempId": 999000107,
"osName": "Zorin",
"licenseType": "Free",
"usersAverageScore": 8.5,
"coffeePieRank": 107,
"distroWatchRank": 7,
"popularityHitsPerDay": 1205,
"version": "18.1",
"kernel": "6.17",
"recommendedUse": "Zorin OS es una distribución de Línux basada en Ubuntu diseñada especialmente para los recién llegados a Línux. Tiene una interfaz gráfica de usuario parecida a Windows y muchos programas parecidos a los que se encuentran en Windows.",
"projectUrl": "http://www.zorin-os.com/",
"downloadMirrors": "http://www.zorin-os.com/free.html",
"mainLtsIsoDownload": "http://www.zorin-os.com/free.html",
"osType": "Linux",
"basedOn": "Debian, Ubuntu",
"originCountry": "Ireland",
"architecture": "x86_64",
"desktopEnvironment": "GNOME, Xfce",
"category": "Beginners, Desktop, Live Medium",
"status": "Active"
},
{
"vmTempId": 999000108,
"osName": "Fedora",
"licenseType": "Free",
"usersAverageScore": 8.5,
"coffeePieRank": 108,
"distroWatchRank": 8,
"popularityHitsPerDay": 1101,
"version": "44",
"kernel": "6.19.10",
"recommendedUse": "Fedora es un sistema operativo basado en Línux que exhibe lo último en software libre y de código abierto. Fedora es siempre libre para que cualquiera lo use, modifique y distribuya.",
"projectUrl": "https://getfedora.org/",
"downloadMirrors": "https://getfedora.org/",
"mainLtsIsoDownload": "https://getfedora.org/",
"osType": "Linux",
"basedOn": "Independent",
"originCountry": "USA",
"architecture": "aarch64, arm, ppc64le, s390x, x86_64",
"desktopEnvironment": "Awesome, Budgie, Cinnamon, Enlightenment, i3, GNOME, KDE Plasma, labwc, LXDE, LXQt, MATE, Openbox, Ratpoison, Wayfire, Xfce",
"category": "Desktop, Immutable, Server, Live Medium",
"status": "Active"
},
{
"vmTempId": 999000109,
"osName": "Manjaro",
"licenseType": "Free",
"usersAverageScore": 8,
"coffeePieRank": 109,
"distroWatchRank": 9,
"popularityHitsPerDay": 1096,
"version": "26.0.4",
"kernel": "6.19.8",
"recommendedUse": "Manjaro Linux es una distribución de Línux amigable con el usuario basada en Arch Linux. Presenta una interfaz de usuario intuitiva del escritorio KDE, detección y configuración automática de hardware, modelo de liberación continua ('rolling release'), capacidad para instalar múltiples kernels, scripts especiales de Bash para gestionar controladores gráficos y gran capacidad de configuración del escritorio.",
"projectUrl": "http://www.manjaro.org/",
"downloadMirrors": "http://www.manjaro.org/download/",
"mainLtsIsoDownload": "http://www.manjaro.org/download/",
"osType": "Linux",
"basedOn": "Arch",
"originCountry": "Austria, France, Germany",
"architecture": "aarch64, x86_64",
"desktopEnvironment": "Cinnamon, GNOME, i3, KDE Plasma, labwc, MATE, Sway, Xfce",
"category": "Desktop, Live Medium, Raspberry Pi",
"status": "Active"
},
{
"vmTempId": 999000110,
"osName": "Ubuntu",
"licenseType": "Free",
"usersAverageScore": 7.8,
"coffeePieRank": 110,
"distroWatchRank": 10,
"popularityHitsPerDay": 1065,
"version": "26.04 LTS",
"kernel": "7.0",
"recommendedUse": "Ubuntu es una distribución gratuita de Línux basada en Debian y con soporte de la comunidad y profesionales. El espíritu de Ubuntu se basa en que el software sea gratuito y que la gente pueda usar su software en su propio idioma...",
"projectUrl": "http://www.ubuntu.com/",
"downloadMirrors": "http://www.ubuntu.com/download/",
"mainLtsIsoDownload": "http://www.ubuntu.com/download/",
"osType": "Linux",
"basedOn": "Debian",
"originCountry": "Isle of Man",
"architecture": "aarch64, armhf, ppc64el, riscv, s390x, x86_64",
"desktopEnvironment": "GNOME, Unity",
"category": "Beginners, Desktop, Immutable, Server, Live Medium",
"status": "Active"
},
{
"vmTempId": 999000111,
"osName": "AnduinOS",
"licenseType": "Free",
"usersAverageScore": 8,
"coffeePieRank": 111,
"distroWatchRank": 11,
"popularityHitsPerDay": 924,
"version": "1.4.2",
"kernel": "6.8.0",
"recommendedUse": "AnduinOS is an Ubuntu-based distribution which provides a GNOME desktop which has been themed and styled to resemble Windows 11.",
"projectUrl": "https://www.anduinos.com/",
"downloadMirrors": "https://download.anduinos.com/",
"mainLtsIsoDownload": "https://download.anduinos.com/",
"osType": "Linux",
"basedOn": "Debian, Ubuntu",
"originCountry": "Hong Kong",
"architecture": "x86_64",
"desktopEnvironment": "GNOME",
"category": "Desktop, Live Medium",
"status": "Active"
},
{
"vmTempId": 999000112,
"osName": "openSUSE",
"licenseType": "Free",
"usersAverageScore": 8.8,
"coffeePieRank": 112,
"distroWatchRank": 12,
"popularityHitsPerDay": 764,
"version": "15.6, Tumbleweed",
"kernel": "6.12.11",
"recommendedUse": "El proyecto openSUSE es un programa comunitario patrocinado por Novell. Promoviendo el uso de Línux en todas partes, este programa provee de acceso libre y sencillo a openSUSE, una distribución completa de Línux.",
"projectUrl": "https://www.opensuse.org/",
"downloadMirrors": "https://get.opensuse.org/",
"mainLtsIsoDownload": "https://get.opensuse.org/leap/",
"osType": "Linux",
"basedOn": "Independent",
"originCountry": "Germany",
"architecture": "aarch64, armhf, i686, ppc64, ppc64el, s390x, x86_64",
"desktopEnvironment": "Cinnamon, Enlightenment, GNOME, IceWM, KDE Plasma, labwc, LXDE, LXQt, MATE, Wayfire, Xfce",
"category": "Desktop, Immutable, Server, Live Medium, Raspberry Pi",
"status": "Active"
},
{
"vmTempId": 999000113,
"osName": "Nobara",
"licenseType": "Free",
"usersAverageScore": 9,
"coffeePieRank": 113,
"distroWatchRank": 13,
"popularityHitsPerDay": 702,
"version": "Latest",
"kernel": "6.x",
"recommendedUse": "General use operating system (Nobara).",
"projectUrl": "https://distrowatch.com/nobara",
"downloadMirrors": "",
"mainLtsIsoDownload": "",
"osType": "Linux",
"basedOn": "Independent",
"originCountry": "Global",
"architecture": "x86_64",
"desktopEnvironment": "Xfce",
"category": "Desktop",
"status": "Active"
},
{
"vmTempId": 999000114,
"osName": "Bazzite",
"licenseType": "Free",
"usersAverageScore": 9.3,
"coffeePieRank": 114,
"distroWatchRank": 14,
"popularityHitsPerDay": 603,
"version": "44",
"kernel": "6.19.11",
"recommendedUse": "distro basada en Fedora e inmutable diseñada para juegos.",
"projectUrl": "https://bazzite.gg/",
"downloadMirrors": "https://bazzite.gg/#image-picker",
"mainLtsIsoDownload": "https://bazzite.gg/#image-picker",
"osType": "Linux",
"basedOn": "Fedora",
"originCountry": "Global",
"architecture": "x86_64",
"desktopEnvironment": "GNOME, KDE Plasma",
"category": "Desktop, Gaming, Immutable, Live Medium",
"status": "Active"
},
{
"vmTempId": 999000115,
"osName": "Arch",
"licenseType": "Free",
"usersAverageScore": 9.2,
"coffeePieRank": 115,
"distroWatchRank": 15,
"popularityHitsPerDay": 575,
"version": "Rolling",
"kernel": "6.12.15",
"recommendedUse": "distribución de Línux desarrollada de forma independiente y optimizada para procesadores i686- y x86_64 dirigida a usuarios de Línux competentes.",
"projectUrl": "http://www.archlinux.org/",
"downloadMirrors": "http://www.archlinux.org/download/",
"mainLtsIsoDownload": "http://www.archlinux.org/download/",
"osType": "Linux",
"basedOn": "Independent",
"originCountry": "Canada",
"architecture": "x86_64",
"desktopEnvironment": "Cinnamon, Enlightenment, GNOME, KDE Plasma, labwc, LXDE, MATE, Xfce",
"category": "Desktop, Server",
"status": "Active"
},
{
"vmTempId": 999000116,
"osName": "NixOS",
"licenseType": "Free",
"usersAverageScore": 9,
"coffeePieRank": 116,
"distroWatchRank": 16,
"popularityHitsPerDay": 566,
"version": "25.11",
"kernel": "6.17.9",
"recommendedUse": "NixOS es una distribución de Línux desarrollada de forma independiente que intenta mejorar el estado del arte en la gestión de configuraciones de sistema. En NixOS el sistema operativo completo, incluyendo el núcleo, aplicaciones, paquetes de sistema y archivos de configuración son construidos por el gestor de paquetes Nix.",
"projectUrl": "https://nixos.org/",
"downloadMirrors": "https://nixos.org/download/",
"mainLtsIsoDownload": "https://nixos.org/download/",
"osType": "Linux",
"basedOn": "Independent",
"originCountry": "Netherlands",
"architecture": "aarch64, x86_64",
"desktopEnvironment": "Awesome, COSMIC, Enlightenment, Fluxbox, GNOME, i3, IceWM, KDE Plasma, labwc, LXQt, Ratpoison, Wayfire, Xfce",
"category": "Declarative, Desktop, Live Medium, Server",
"status": "Active"
},
{
"vmTempId": 999000117,
"osName": "elementary",
"licenseType": "Free",
"usersAverageScore": 8,
"coffeePieRank": 117,
"distroWatchRank": 17,
"popularityHitsPerDay": 561,
"version": "8.1",
"kernel": "6.17",
"recommendedUse": "elementary OS es una distribución de escritorio basada en Ubuntu. Algunas de sus características más interesantes incluyen un nuevo GTK+ y temas para íconos en GNOME, el navegador de red Midori, nuevas aplicaciones desarrolladas por ellos mismos (como Dexter, una agenda y Postler, un cliente de correo) así como Nautilus Elementary, un gestor simple de archivos.",
"projectUrl": "https://elementary.io/",
"downloadMirrors": "https://elementary.io/",
"mainLtsIsoDownload": "https://elementary.io/",
"osType": "Linux",
"basedOn": "Debian, Ubuntu (LTS)",
"originCountry": "USA",
"architecture": "x86_64",
"desktopEnvironment": "Pantheon",
"category": "Beginners, Desktop, Live Medium",
"status": "Active"
},
{
"vmTempId": 999000118,
"osName": "BigLinux",
"licenseType": "Free",
"usersAverageScore": 9.4,
"coffeePieRank": 118,
"distroWatchRank": 18,
"popularityHitsPerDay": 558,
"version": "2026-04-18",
"kernel": "6.19.8",
"recommendedUse": "BigLinux is a Brazilian Linux distribution localised into Brazilian Portuguese (with support for English). It is was originally based on Kubuntu, but starting from 2017 the distribution was re-born based on deepin. It then offered two desktop environments - Cinnamon and Deepin. In 2021 the distribution switched bases and desktop environments again, migrating to Manjaro Linux and using the KDE Plasma desktop.",
"projectUrl": "https://www.biglinux.com.br/",
"downloadMirrors": "https://www.biglinux.com.br/download/",
"mainLtsIsoDownload": "https://www.biglinux.com.br/download/",
"osType": "Linux",
"basedOn": "Arch, Manjaro",
"originCountry": "Brazil",
"architecture": "x86_64",
"desktopEnvironment": "KDE Plasma",
"category": "Desktop, Live Medium",
"status": "Active"
},
{
"vmTempId": 999000119,
"osName": "antiX",
"licenseType": "Free",
"usersAverageScore": 8.5,
"coffeePieRank": 119,
"distroWatchRank": 19,
"popularityHitsPerDay": 554,
"version": "23.2",
"kernel": "6.1.60",
"recommendedUse": "antiX es una distribución en CD en vivo de Línux ligera y fácil de instalar basada en la rama de 'pruebas' de Debian para sistemas compatibles con x86. antiX ofrece a los usuarios 'antiX Magic' (la magia de antiX) en un ambiente adecuado para computadoras viejas.",
"projectUrl": "https://antixlinux.com/",
"downloadMirrors": "https://antixlinux.com/antix/download/",
"mainLtsIsoDownload": "https://antixlinux.com/antix/download/",
"osType": "Linux",
"basedOn": "Debian (Testing)",
"originCountry": "Greece",
"architecture": "i686, x86_64",
"desktopEnvironment": "Fluxbox, IceWM, JWM",
"category": "From RAM, Desktop, Live Medium, Old Computers",
"status": "Active"
},
{
"vmTempId": 999000120,
"osName": "Bluestar",
"licenseType": "Free",
"usersAverageScore": 8.5,
"coffeePieRank": 120,
"distroWatchRank": 20,
"popularityHitsPerDay": 546,
"version": "7.0.2",
"kernel": "7.0.2",
"recommendedUse": "Bluestar Linux is a GNU/Linux distribution that is based on Arch Linux. The Bluestar distribution features up to date packages, a full range of desktop and multimedia software in the default installation and a live desktop DVD.",
"projectUrl": "https://sourceforge.net/projects/bluestarlinux/",
"downloadMirrors": "https://sourceforge.net/projects/bluestarlinux/files/distro/",
"mainLtsIsoDownload": "https://sourceforge.net/projects/bluestarlinux/files/distro/",
"osType": "Linux",
"basedOn": "Arch",
"originCountry": "Germany",
"architecture": "x86_64",
"desktopEnvironment": "KDE Plasma",
"category": "Desktop, Live Medium",
"status": "Active"
},
{
"vmTempId": 999000121,
"osName": "KDE neon",
"licenseType": "Free",
"usersAverageScore": 8.5,
"coffeePieRank": 121,
"distroWatchRank": 21,
"popularityHitsPerDay": 509,
"version": "20240228",
"kernel": "6.17",
"recommendedUse": "KDE neon es una distribución de Línux basada en Ubuntu y un DVD en vivo presentando el más nuevo escritorio KDE Plasma y otros programas de la comunidad KDE.",
"projectUrl": "https://neon.kde.org/",
"downloadMirrors": "https://neon.kde.org/download",
"mainLtsIsoDownload": "https://neon.kde.org/download",
"osType": "Linux",
"basedOn": "Debian, Ubuntu (LTS)",
"originCountry": "United Kingdom",
"architecture": "aarch64, x86_64",
"desktopEnvironment": "KDE Plasma",
"category": "Desktop, Live Medium",
"status": "Active"
},
{
"vmTempId": 999000122,
"osName": "PikaOS",
"licenseType": "Free",
"usersAverageScore": 9.1,
"coffeePieRank": 122,
"distroWatchRank": 22,
"popularityHitsPerDay": 488,
"version": "26.04.04",
"kernel": "6.13.1",
"recommendedUse": "PikaOS Linux is a Linux distribution based on Debian's cutting-edge 'Unstable' branch, optimised for gaming.",
"projectUrl": "http://pika-os.com/",
"downloadMirrors": "http://pika-os.com/",
"mainLtsIsoDownload": "http://pika-os.com/",
"osType": "Linux",
"basedOn": "Debian (Unstable)",
"originCountry": "United Kingdom",
"architecture": "x86_64",
"desktopEnvironment": "COSMIC, GNOME, Hyprland, KDE Plasma, niri",
"category": "Desktop, Gaming, Live Medium",
"status": "Active"
},
{
"vmTempId": 999000123,
"osName": "Q4OS",
"licenseType": "Free",
"usersAverageScore": 8.5,
"coffeePieRank": 123,
"distroWatchRank": 23,
"popularityHitsPerDay": 460,
"version": "6.1",
"kernel": "6.19.11",
"recommendedUse": "Q4OS es una distribución de GNU/Línux para computadoras de escritorio basada en Debian diseñada para ofrecer una interface de usuario clásica (Trinity) con accesorios simples y para servir APIs estables para aplicaciones complejas de terceros como Google Chrome, VirtualBox y herramientas de desarrollo.",
"projectUrl": "https://q4os.org/",
"downloadMirrors": "https://q4os.org/downloads1.html",
"mainLtsIsoDownload": "https://q4os.org/downloads1.html",
"osType": "Linux",
"basedOn": "Debian (Stable)",
"originCountry": "Czechia",
"architecture": "i686, x86_64",
"desktopEnvironment": "KDE Plasma, Trinity",
"category": "Desktop, Live Medium, Old Computers",
"status": "Active"
},
{
"vmTempId": 999000124,
"osName": "Garuda",
"licenseType": "Free",
"usersAverageScore": 8.4,
"coffeePieRank": 124,
"distroWatchRank": 24,
"popularityHitsPerDay": 438,
"version": "250308",
"kernel": "6.18.16",
"recommendedUse": "Garuda is a performance-oriented distro with many performance enhancing tweaks. Some of the many tweaks include using zram, a performance CPU governor, along with custom memory management software.",
"projectUrl": "https://garudalinux.org/",
"downloadMirrors": "https://garudalinux.org/editions",
"mainLtsIsoDownload": "https://garudalinux.org/editions",
"osType": "Linux",
"basedOn": "Arch",
"originCountry": "Germany",
"architecture": "x86_64",
"desktopEnvironment": "Cinnamon, GNOME, Hyprland, i3, KDE Plasma, Mokka, Sway, Xfce",
"category": "Desktop, Live Medium",
"status": "Active"
},
{
"vmTempId": 999000125,
"osName": "FreeBSD",
"licenseType": "Free",
"usersAverageScore": 9,
"coffeePieRank": 125,
"distroWatchRank": 25,
"popularityHitsPerDay": 408,
"version": "15.0",
"kernel": "15.0",
"recommendedUse": "FreeBSD es un sistema operativo de tipo UNIX derivado de AT&T UNIX via la rama de Berkeley Software Distribution (BSD). FreeBSD corre en procesadores de las familias Intel x86, DEC Alpha, Sun UltraSPARC, Itanium (IA-64), AMD64 y PowerPC.",
"projectUrl": "https://www.freebsd.org/",
"downloadMirrors": "https://docs.freebsd.org/en/books/handbook/mirrors/",
"mainLtsIsoDownload": "https://docs.freebsd.org/en/books/handbook/mirrors/",
"osType": "BSD",
"basedOn": "Independent",
"originCountry": "USA",
"architecture": "arm, aarch64, armel, i486, ia64, mips, mipsel, sparc64, pc98, powerpc, ppc64, ps3, x86_64, xbox",
"desktopEnvironment": "Cinnamon, GNOME, KDE Plasma, labwc, LXQt, MATE, Wayfire, Xfce",
"category": "Desktop, Firewall, Raspberry Pi, Server",
"status": "Active"
},
{
"vmTempId": 999000126,
"osName": "TUXEDO",
"licenseType": "Free",
"usersAverageScore": 9.2,
"coffeePieRank": 126,
"distroWatchRank": 26,
"popularityHitsPerDay": 401,
"version": "20260421",
"kernel": "6.17",
"recommendedUse": "TUXEDO OS is an Ubuntu-based distribution developed in Germany by TUXEDO Computers GmbH, designed and optimised for the company's own range of Linux-friendly personal computers and notebooks. The distribution uses KDE Plasma as the preferred desktop.",
"projectUrl": "https://www.tuxedocomputers.com/os",
"downloadMirrors": "https://os.tuxedocomputers.com/",
"mainLtsIsoDownload": "https://os.tuxedocomputers.com/",
"osType": "Linux",
"basedOn": "Debian, Ubuntu (LTS)",
"originCountry": "Germany",
"architecture": "x86_64",
"desktopEnvironment": "KDE Plasma",
"category": "Beginners, Desktop, Live Medium",
"status": "Active"
},
{
"vmTempId": 999000127,
"osName": "Kali",
"licenseType": "Free",
"usersAverageScore": 8.5,
"coffeePieRank": 127,
"distroWatchRank": 27,
"popularityHitsPerDay": 397,
"version": "2026.1",
"kernel": "6.18.12",
"recommendedUse": "Kali Linux (previamente conocido como BackTrack) es una distribución basada en Debian con una colección de herramientas de seguridad y forenses.",
"projectUrl": "https://www.kali.org/",
"downloadMirrors": "https://www.kali.org/downloads/",
"mainLtsIsoDownload": "https://www.kali.org/downloads/",
"osType": "Linux",
"basedOn": "Debian (Testing)",
"originCountry": "Gibraltar",
"architecture": "aarch64, x86_64",
"desktopEnvironment": "GNOME, KDE Plasma, Xfce",
"category": "Data Rescue, Forensics, Live Medium, Raspberry Pi, Security",
"status": "Active"
},
{
"vmTempId": 999000128,
"osName": "SparkyLinux",
"licenseType": "Free",
"usersAverageScore": 8.8,
"coffeePieRank": 128,
"distroWatchRank": 28,
"popularityHitsPerDay": 384,
"version": "8.2",
"kernel": "6.12.69",
"recommendedUse": "SparkyLinux is a set of Debian-based desktop Linux distributions. The project provides separate editions with KDE Plasma, LXQt, MATE and Xfce desktops, as well as a lightweight flavour featuring the Openbox window manager.",
"projectUrl": "https://sparkylinux.org/",
"downloadMirrors": "https://sparkylinux.org/download/",
"mainLtsIsoDownload": "https://sparkylinux.org/download/",
"osType": "Linux",
"basedOn": "Debian (Stable), Debian (Testing)",
"originCountry": "Poland",
"architecture": "x86_64",
"desktopEnvironment": "KDE Plasma, LXQt, MATE, Openbox, Xfce",
"category": "Desktop, Live Medium",
"status": "Active"
},
{
"vmTempId": 999000129,
"osName": "MiniOS",
"licenseType": "Free",
"usersAverageScore": 8.5,
"coffeePieRank": 129,
"distroWatchRank": 29,
"popularityHitsPerDay": 378,
"version": "5.1.1",
"kernel": "6.12.57",
"recommendedUse": "MiniOS is a Debian-based Linux distribution which strives to be lightweight, modular, versatile and customisable. It comes in three editions, 'Standard', 'Toolbox' and 'Ultra'.",
"projectUrl": "https://minios.dev/",
"downloadMirrors": "https://minios.dev/",
"mainLtsIsoDownload": "https://minios.dev/",
"osType": "Linux",
"basedOn": "Debian (Stable)",
"originCountry": "Russia",
"architecture": "x86_64",
"desktopEnvironment": "Xfce",
"category": "Data Rescue, Desktop, Live Medium",
"status": "Active"
},
{
"vmTempId": 999000130,
"osName": "Puppy",
"licenseType": "Free",
"usersAverageScore": 8.6,
"coffeePieRank": 130,
"distroWatchRank": 30,
"popularityHitsPerDay": 365,
"version": "10.0.12",
"kernel": "6.1.148",
"recommendedUse": "Puppy Linux es otra de esas distribuciones de Línux. Lo que es diferente en ella es que Puppy es extraordinariamente pequeña y pese a ello está bastante bien equipada.",
"projectUrl": "https://puppylinux-woof-ce.github.io/",
"downloadMirrors": "https://puppylinux-woof-ce.github.io/index.html#download",
"mainLtsIsoDownload": "https://puppylinux-woof-ce.github.io/index.html#download",
"osType": "Linux",
"basedOn": "Independent",
"originCountry": "Australia",
"architecture": "x86_64",
"desktopEnvironment": "JWM, labwc, Openbox",
"category": "Desktop, From RAM, Old Computers, Live Medium, Netbooks",
"status": "Active"
},
{
"vmTempId": 999000131,
"osName": "Alpine",
"licenseType": "Free",
"usersAverageScore": 9.1,
"coffeePieRank": 131,
"distroWatchRank": 31,
"popularityHitsPerDay": 355,
"version": "3.23.4",
"kernel": "6.18.22",
"recommendedUse": "Alpine Linux is an independently developed community project designed for routers, firewalls, VPNs, VoIP boxes and servers. The distribution was designed with security in mind; it features proactive security features such as PaX and SSP that prevent security holes in the software from being exploited.",
"projectUrl": "https://www.alpinelinux.org/",
"downloadMirrors": "https://www.alpinelinux.org/downloads/",
"mainLtsIsoDownload": "https://www.alpinelinux.org/downloads/",
"osType": "Linux",
"basedOn": "Independent",
"originCountry": "Norway",
"architecture": "aarch64, armv7, i486, loongarch64, ppc64le, riscv64, s390x, x86_64",
"desktopEnvironment": "GNOME, KDE Plasma, LXQt, MATE, Sway, Xfce",
"category": "Firewall, From RAM, Raspberry Pi, Server, Security, Telephony",
"status": "Active"
},
{
"vmTempId": 999000132,
"osName": "AlmaLinux",
"licenseType": "Free",
"usersAverageScore": 8.9,
"coffeePieRank": 132,
"distroWatchRank": 32,
"popularityHitsPerDay": 353,
"version": "9.x",
"kernel": "5.14",
"recommendedUse": "Enterprise-grade server OS, 1:1 binary compatible with RHEL.",
"projectUrl": "https://almalinux.org/",
"downloadMirrors": "https://almalinux.org/get-almalinux/",
"mainLtsIsoDownload": "https://repo.almalinux.org/almalinux/9/isos/x86_64/AlmaLinux-9-latest-x86_64-boot.iso",
"osType": "Linux",
"basedOn": "Fedora, Red Hat",
"originCountry": "USA",
"architecture": "aarch64, ppc64le, s390x, x86_64",
"desktopEnvironment": "GNOME, KDE Plasma, MATE, Xfce",
"category": "Server, Desktop",
"status": "Active"
},
{
"vmTempId": 999000133,
"osName": "CentOS",
"licenseType": "Free",
"usersAverageScore": 7.5,
"coffeePieRank": 133,
"distroWatchRank": 33,
"popularityHitsPerDay": 328,
"version": "10 Stream",
"kernel": "6.12",
"recommendedUse": "CentOS Linux versions up to CentOS Linux 8 are 100% compatible rebuilds of Red Hat Enterprise Linux, in full compliance with Red Hat's redistribution requirements. In 2020 it was announced CentOS Linux is being discontinued and replaced with CentOS Stream, a developer-focused distribution which acts as a middle-stream between Fedora and Red Hat Enterprise Linux.",
"projectUrl": "https://www.centos.org/",
"downloadMirrors": "https://www.centos.org/download/",
"mainLtsIsoDownload": "https://www.centos.org/download/",
"osType": "Linux",
"basedOn": "Fedora, Red Hat",
"originCountry": "USA",
"architecture": "aarch64, ppc64le, x86_64, x86-64-v2",
"desktopEnvironment": "GNOME",
"category": "Desktop, Live Medium, Server",
"status": "Active"
},
{
"vmTempId": 999000134,
"osName": "PCLinuxOS",
"licenseType": "Free",
"usersAverageScore": 8.8,
"coffeePieRank": 134,
"distroWatchRank": 34,
"popularityHitsPerDay": 327,
"version": "2025.09",
"kernel": "6.12.85",
"recommendedUse": "PCLinuxOS es una distribución de Línux amigable con el usuario con soporte inmediato para muchas tarjetas gráficas y de sonido así como otros dispositivos periféricos. El CD de arranque en vivo provee un instalador gráfico fácil de usar y la distribución lleva consigo un amplio abanico de aplicaciones populares para el típico usuario de escritorio...",
"projectUrl": "https://www.pclinuxos.com/",
"downloadMirrors": "https://ftp.nluug.nl/pub/os/Linux/distr/pclinuxos/pclinuxos/iso/",
"mainLtsIsoDownload": "https://ftp.nluug.nl/pub/os/Linux/distr/pclinuxos/pclinuxos/iso/",
"osType": "Linux",
"basedOn": "Independent",
"originCountry": "USA",
"architecture": "x86_64",
"desktopEnvironment": "KDE Plasma, labwc, MATE, Xfce",
"category": "Beginners, Desktop, Live Medium",
"status": "Active"
},
{
"vmTempId": 999000135,
"osName": "Artix",
"licenseType": "Free",
"usersAverageScore": 9,
"coffeePieRank": 135,
"distroWatchRank": 35,
"popularityHitsPerDay": 322,
"version": "20260402",
"kernel": "6.19.10",
"recommendedUse": "Artix Linux is a fork (or continuation as an autonomous project) of the Arch-OpenRC and Manjaro-OpenRC projects. Artix Linux offers a lightweight, rolling-release operating system featuring the OpenRC init software.",
"projectUrl": "https://artixlinux.org/",
"downloadMirrors": "https://artixlinux.org/download.php",
"mainLtsIsoDownload": "https://artixlinux.org/download.php",
"osType": "Linux",
"basedOn": "Arch",
"originCountry": "Global",
"architecture": "x86_64",
"desktopEnvironment": "Cinnamon, LXDE, LXQt, MATE, KDE Plasma, Xfce",
"category": "Desktop, Live Medium",
"status": "Active"
},
{
"vmTempId": 999000136,
"osName": "Tails",
"licenseType": "Free",
"usersAverageScore": 8.9,
"coffeePieRank": 136,
"distroWatchRank": 36,
"popularityHitsPerDay": 321,
"version": "7.7.1",
"kernel": "6.12.74",
"recommendedUse": "The Amnesic Incognito Live System (Tails; en español, El Sistema en Vivo en Incógnito con Amnesia) es un CD/USB en vivo basado en Debian con la meta de proveer completo anonimato en Internet al usuario.",
"projectUrl": "https://tails.net/",
"downloadMirrors": "https://tails.net/install/index.en.html",
"mainLtsIsoDownload": "https://tails.net/install/index.en.html",
"osType": "Linux",
"basedOn": "Debian (Stable)",
"originCountry": "Ireland",
"architecture": "x86_64",
"desktopEnvironment": "GNOME",
"category": "From RAM, Live Medium, Privacy, Security",
"status": "Active"
},
{
"vmTempId": 999000137,
"osName": "Kubuntu",
"licenseType": "Free",
"usersAverageScore": 8.2,
"coffeePieRank": 137,
"distroWatchRank": 37,
"popularityHitsPerDay": 315,
"version": "24.10",
"kernel": "6.11",
"recommendedUse": "Kubuntu es una distribución gratuita de Línux amigable con el usuario, basada en el escritorio de KDE y en el sistema operativo ganador de premios, Ubuntu.",
"projectUrl": "https://www.kubuntu.org/",
"downloadMirrors": "https://kubuntu.org/getkubuntu/",
"mainLtsIsoDownload": "https://kubuntu.org/getkubuntu/",
"osType": "Linux",
"basedOn": "Debian, Ubuntu",
"originCountry": "Isle of Man",
"architecture": "x86_64",
"desktopEnvironment": "KDE Plasma",
"category": "Desktop, Live Medium",
"status": "Active"
},
{
"vmTempId": 999000138,
"osName": "Solus",
"licenseType": "Free",
"usersAverageScore": 8.6,
"coffeePieRank": 138,
"distroWatchRank": 38,
"popularityHitsPerDay": 314,
"version": "4.9",
"kernel": "6.18.21",
"recommendedUse": "Solus es una distribución de Línux hecha desde cero. Usa una versión derivada del manejador de paquetes PiSi, mantenida como 'eopkg' dentro de Solus y un ambiente de escritorio personalizado hecho por ellos mismos llamado 'Budgie'.",
"projectUrl": "https://getsol.us/",
"downloadMirrors": "https://getsol.us/download/",
"mainLtsIsoDownload": "https://getsol.us/download/",
"osType": "Linux",
"basedOn": "Independent",
"originCountry": "Ireland",
"architecture": "x86_64",
"desktopEnvironment": "Budgie, GNOME, KDE Plasma, Xfce",
"category": "Beginners, Desktop, Live Medium",
"status": "Active"
},
{
"vmTempId": 999000139,
"osName": "Devuan",
"licenseType": "Free",
"usersAverageScore": 8.8,
"coffeePieRank": 139,
"distroWatchRank": 39,
"popularityHitsPerDay": 312,
"version": "Latest",
"kernel": "6.x",
"recommendedUse": "General use operating system (Devuan).",
"projectUrl": "https://distrowatch.com/devuan",
"downloadMirrors": "",
"mainLtsIsoDownload": "",
"osType": "Linux",
"basedOn": "Independent",
"originCountry": "Global",
"architecture": "x86_64",
"desktopEnvironment": "Xfce",
"category": "Desktop",
"status": "Active"
},
{
"vmTempId": 999000140,
"osName": "Omarchy",
"licenseType": "Free",
"usersAverageScore": 8,
"coffeePieRank": 140,
"distroWatchRank": 40,
"popularityHitsPerDay": 306,
"version": "3.6.0",
"kernel": "6.19.13",
"recommendedUse": "Omarchy is an Arch-based Linux distribution featuring the Hyprland tiling window manager. It ships with what a modern software developer would need to be productive immediately, including Neovim, Spotify, Chromium, Typora, Alacritty, LibreOffice and Zoom.",
"projectUrl": "https://omarchy.org/",
"downloadMirrors": "https://omarchy.org/",
"mainLtsIsoDownload": "https://omarchy.org/",
"osType": "Linux",
"basedOn": "Arch",
"originCountry": "Denmark",
"architecture": "x86_64",
"desktopEnvironment": "Hyprland",
"category": "Desktop, Immutable",
"status": "Active"
},
{
"vmTempId": 999000141,
"osName": "Voyager",
"licenseType": "Free",
"usersAverageScore": 8.5,
"coffeePieRank": 141,
"distroWatchRank": 41,
"popularityHitsPerDay": 303,
"version": "26.04",