-
Notifications
You must be signed in to change notification settings - Fork 19
/
index.html
2437 lines (2437 loc) · 210 KB
/
index.html
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
<!DOCTYPE html>
<!-- https://github.com/MichaIng/DietPi-Website -->
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="canonical" href="https://dietpi.com/">
<title>DietPi - Lightweight justice for your SBC!</title>
<meta name="description" content="Optimised | Simplified | For everyone - Easy to install and run optimised software for your SBC - Raspberry Pi, Odroid, PINE64 etc.!">
<!-- Twitter meta tags: https://developer.twitter.com/docs/twitter-for-websites/cards -->
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@DietPi_">
<meta name="twitter:creator" content="@DietPi_">
<meta name="twitter:title" content="Lightweight justice for your SBC!">
<meta name="twitter:description" content="Optimised | Simplified | For everyone - Easy to install and run optimised software for your SBC - Raspberry Pi, Odroid, PINE64 etc.!">
<meta name="twitter:image" content="https://dietpi.com/images/dietpi-logo_720x720.png">
<!-- Open Graph meta tags: https://developers.facebook.com/docs/sharing/webmasters -->
<meta property="og:locale" content="en_GB">
<meta property="og:site_name" content="DietPi">
<meta property="og:type" content="website">
<meta property="og:url" content="https://dietpi.com/">
<meta property="og:title" content="Lightweight justice for your SBC!">
<meta property="og:description" content="Optimised | Simplified | For everyone - Backed by community, DietPi is a minimal OS image for SBCs - Raspberry Pi, Odroid, PINE64 etc. Install software optimised for you!">
<meta property="og:image" content="https://dietpi.com/images/dietpi-logo_720x720.png">
<!-- Adjust width based on screen size -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Favicon and theme: https://realfavicongenerator.net/ -->
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="images/dietpi-logo_32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="images/dietpi-logo_16x16.png">
<link rel="manifest" href="site.webmanifest">
<link rel="mask-icon" href="images/dietpi-logo_mask_720x720.svg" color="#c5ff00">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#000000">
<!-- Load CSS styles -->
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css?v=2">
<link rel="stylesheet" type="text/css" href="css/cslider.min.css">
<link rel="stylesheet" type="text/css" href="css/style.min.css?v=8">
<!-- Include JavaScript -->
<script defer src="js/bootstrap.min.js?v=2"></script>
<script defer src="js/cslider.min.js"></script>
<script defer src="js/mixitup.min.js"></script>
<script defer src="js/app.min.js?v=2"></script>
</head>
<body>
<nav class="navbar navbar-expand-lg">
<div class="container-xl">
<img src="images/dietpi-logo_240x80.png" alt="DietPi logo" loading="lazy">
<!-- Navigation button, visible on small resolution -->
<button class="navbar-toggler" data-bs-toggle="collapse" data-bs-target=".navbar-collapse"><svg viewBox="0 0 12 12"><path d="M1 1h10M1 6h10M1 11h10"/></svg></button>
<!-- Main navigation -->
<div class="navbar-collapse collapse">
<a class="nav-link" href="#home">HOME</a>
<a class="nav-link" href="#features">FEATURES</a>
<a class="nav-link" href="#download">DOWNLOAD</a>
<a class="nav-link" href="https://dietpi.com/docs/">DOCS</a>
<a class="nav-link" href="https://dietpi.com/forum/">FORUM</a>
<a class="nav-link" href="https://dietpi.com/blog/">BLOG</a>
<a class="nav-link" href="https://github.com/MichaIng/DietPi" target="_blank" rel="noopener">GITHUB</a>
<a class="nav-link" href="contribute.html">DONATE</a>
</div>
</div>
</nav>
<!-- Slider section: https://github.com/Le-Stagiaire/jquery.cslider -->
<div class="da-slider" id="home">
<!-- All slides centred in container element -->
<div class="container-xl">
<svg class="triangle" viewBox="0 0 100 100" preserveAspectRatio="none" aria-hidden="true"><path d="M0 0h100l-50 100"/></svg>
<!-- Slide 1 -->
<div class="da-slide da-slide-current">
<h2>DietPi v9.8 has been released</h2>
<h4>Check out all changes</h4>
<p>This release adds support for the Orange Pi 3B v2.1 revision board, and contains bug fixes for some other Orange Pi, NanoPi and Radxa SBCs.</p>
<a class="da-link" href="https://dietpi.com/docs/releases/v9_8/" target="_blank" rel="noopener">Release notes</a>
<div class="da-img"><img class="img-fluid" src="images/dietpi-logo_360x360.png" alt="DietPi logo" width="300" height="300" loading="lazy"></div>
</div>
<!-- Slide 2 -->
<div class="da-slide">
<h2>DietPi | Minimal image at its core</h2>
<h4>Highly optimised minimal Debian OS</h4>
<p>DietPi is extremely lightweight at its core, with features of low process/memory footprint and DietPi-RAMlog installed by default, to get the maximum performance from your device.</p>
<a class="da-link" href="stats.html">Learn more</a>
<div class="da-img"><img class="img-fluid" src="images/slider_feather.png" alt="Feather" width="360" height="360" loading="lazy"></div>
</div>
<!-- Slide 3 -->
<div class="da-slide">
<h2>DietPi-Software</h2>
<h4>Installs and optimises popular software for you</h4>
<p>Quickly and easily install popular software "ready to run" and optimised for your system. Gone are the days of reading 5+ page guides, DietPi does everything for you, giving you more time to enjoy the software you require.</p>
<a class="da-link" href="dietpi-software.html">Learn more</a>
<div class="da-img"><img class="img-fluid" src="images/slider_software.png" alt="Software image" width="320" height="320" loading="lazy"></div>
</div>
<!-- Slide 4 -->
<div class="da-slide">
<h2>DietPi | Benchmarks</h2>
<h4>All devices benchmarked (CPU/IO)</h4>
<p>Looking to purchase a new SBC device? Curious to see which devices perform best? With thanks to our end users, you can now view and compare DietPi-Benchmark results for all devices.</p>
<a class="da-link" href="https://dietpi.com/survey/#benchmark" target="_blank" rel="noopener">Learn more</a>
<div class="da-img"><img class="img-fluid" src="images/dietpi-logo_360x360.png" alt="DietPi logo" width="300" height="300" loading="lazy"></div>
</div>
<!-- Slider navigation arrows -->
<div class="da-arrows">
<span class="da-arrows-prev"></span>
<span class="da-arrows-next"></span>
</div>
</div>
</div>
<!-- Features section -->
<div class="section primary-section" id="features">
<div class="container-xl centered">
<svg class="triangle" viewBox="0 0 100 100" preserveAspectRatio="none" aria-hidden="true"><path d="M0 0h100l-50 100"/></svg>
<div class="title">
<!-- Title -->
<h1>DietPi - features overview</h1>
<!-- Button -->
<a href="stats.html" class="button">View comparisons with other distributions</a>
<!-- Description -->
<p>DietPi is more than just a minimal image.</p>
</div>
<div class="row">
<div class="col-md-4 col-sm-6 service">
<a href="stats.html">
<svg viewBox="0 0 950 950" aria-hidden="true">
<path d="M949.869 741.307l-.446-12.489-.098-2.554-.02-1.76-.006-.082-.025-.326-1.221-15.719-.312-3.43-.646-6.836-.669-6.799-.343-3.381-.414-3.119c-1.139-8.242-2.156-16.342-3.608-24.129l-2.031-11.461-2.277-10.914c-1.402-7.098-3.163-13.727-4.647-19.855l-1.115-4.492-1.185-4.264-2.221-7.855-1.99-6.889-1.851-5.803-2.079-6.455c-.815-2.529-3.487-3.951-6.043-3.223l-160.613 45.771c-2.447.697-3.964 3.135-3.498 5.637l.595 3.201.759 3.994c.261 1.457.466 3.053.729 4.74l.821 5.383.439 2.91.35 3.07c.447 4.184 1.115 8.67 1.413 13.48l.609 7.361.368 7.709c.348 5.213.282 10.641.382 16.115l.023 2.039-.072 1.805-.124 3.617-.098 3.619-.038 1.807-.687 16.111c.002.393-.03-3.111-.02-1.598l-.013.129-.048.516-.095 1.031-.371 4.102-.355 4.062-.479 4.004c-.341 2.65-.551 5.275-.973 7.832l-1.09 7.535-1.246 7.166c-.366 2.33-.856 4.574-1.292 6.746l-1.292 6.271-1.93 8.355-.588 2.125-.327 1.221H944.3c2.633 0 4.826-2.066 4.926-4.697.001-.016.001-.031.002-.047l.503-11.254.224-11.742c.112-3.982-.009-8.029-.02-12.121l-.066-6.17zm-51.078-206.178a4.93 4.93 0 0 0 2.622-6.68l-1.886-3.984-2.231-4.697-3.396-6.916-3.893-7.834-2.093-3.963-2.186-4.037-4.671-8.551-5.254-9.002-2.749-4.684-2.947-4.723-6.112-9.706c-4.377-6.45-8.734-13.196-13.597-19.761l-5.408-7.47-1.884-2.453-7.58-9.812-7.85-9.587-3.946-4.727-4.04-4.603-4.011-4.554c-1.323-1.517-2.657-3.008-4.033-4.45l-8.06-8.585c-2.65-2.81-5.394-5.451-8.005-8.091-2.63-2.626-5.186-5.205-7.796-7.6l-7.521-7.04c-2.418-2.279-4.887-4.349-7.187-6.399l-6.656-5.819-6.157-5.073-5.416-4.442c-1.676-1.367-3.279-2.552-4.692-3.657l-5.177-3.973c-2.105-1.616-5.106-1.271-6.798.776l-86.204 104.346c-1.625 1.968-1.486 4.844.327 6.64l2.489 2.463c.897.901 1.925 1.855 2.979 2.969l3.409 3.604 3.88 4.078 4.147 4.67c1.427 1.642 2.987 3.272 4.471 5.09l4.636 5.573c1.621 1.878 3.168 3.917 4.77 5.977 1.585 2.074 3.279 4.119 4.871 6.312l4.851 6.658c.836 1.107 1.629 2.262 2.41 3.434l2.381 3.506 2.404 3.52c.802 1.178 1.537 2.41 2.312 3.615l4.596 7.277 5.459 9.248 1.021 1.877 2.038 3.727c2.795 4.889 5.154 9.93 7.623 14.666l4.943 10.605 1.459 3.43 2.812 6.547 2.427 6.199 1.142 2.912c.352.926.788 1.928 1.022 2.699l1.574 4.6 1.413 4.016 1.574 4.697 1.395 4.184a4.93 4.93 0 0 0 6.515 3.008l149.464-60.05zM459.808 348.748l4.324.59 5.063.882 5.747.987 5.472 1.112 54.404-111.282-7.993-1.248-5.325-.794-5.218-.632-9.989-1.187-9.358-.802-8.6-.663-7.765-.382-6.818-.322-5.792-.093-6.222-.075c-2.655-.032-4.852 2.043-4.979 4.695l-4.961 103.577c-.122 2.552 1.719 4.774 4.25 5.121l3.76.516zm146.219 57.033l4.15 3.02 3.654 2.617 1.955 1.438 5.472 4.084c2.276 1.698 5.506 1.124 7.065-1.25l71.03-108.196c1.56-2.374.803-5.567-1.661-6.98l-5.924-3.398-2.511-1.421-6.542-3.604-7.443-4.056-7.86-3.939-8.565-4.19-9.273-4.25c-3.161-1.492-6.497-2.847-9.883-4.269-3.4-1.392-6.821-2.914-10.394-4.257l-2.736-1.036-30.642 132.998c1.694 1.064 3.29 2.192 4.862 3.21l5.246 3.479zm-241.593-57.575l4.064-.547 3.984-.405 7.619-.791 10.495-.708 3.118-.167 5.479-.143 4.8-.152 5.025-.033 4.408-.024c2.84-.015 5.072-2.42 4.886-5.254l-6.394-97.57c-.187-2.834-2.713-4.927-5.53-4.571l-4.373.552-5.089.648-7.083 1.05-8.034 1.224-4.18.739-4.279.817-9.076 1.754-9.642 2.196-5.019 1.154-5.11 1.325-10.51 2.8-10.757 3.243-5.463 1.689-5.467 1.865-5.5 1.885-5.501 1.972-10.963 4.185c-3.643 1.426-7.226 3.006-10.817 4.501l-5.354 2.282-5.253 2.425-5.201 2.409c-1.725.798-3.443 1.584-5.113 2.451l-9.919 5.008c-3.257 1.633-6.361 3.435-9.444 5.094-3.069 1.69-6.087 3.302-8.934 5.039l-8.342 4.949c-2.702 1.576-5.208 3.278-7.664 4.816l-6.999 4.487-6.178 4.24-5.418 3.731c-1.672 1.153-3.151 2.296-4.514 3.284l-4.7 3.47c-2.131 1.573-2.631 4.544-1.141 6.735l40.515 59.566c1.442 2.12 4.261 2.785 6.494 1.524l3.632-2.049c1.209-.669 2.517-1.459 3.994-2.228l4.777-2.488 5.417-2.832 6.107-2.928c2.138-.996 4.307-2.137 6.646-3.132l7.189-3.155c2.443-1.125 5.031-2.108 7.649-3.158 2.632-1.02 5.268-2.174 8.029-3.149l8.374-3.018c1.403-.533 2.847-.984 4.294-1.446l4.353-1.401 4.378-1.416c1.472-.447 2.965-.847 4.448-1.275l8.938-2.504 8.994-2.225c1.484-.395 2.99-.704 4.489-1.013l4.475-.942 4.429-.94c1.473-.294 2.954-.521 4.415-.784l8.648-1.501 8.399-1.16zM88.175 425.22l-6.415 9.085-3.115 4.669-6.168 9.422-5.887 9.585-1.46 2.386-4.14 7.247c-3.74 6.353-6.989 12.847-10.291 19.015l-6.707 13.754-1.999 4.441-3.817 8.504-3.329 8.045-3.004 7.408-2.527 6.752-2.212 5.93-1.734 5.084-1.741 5.168c-.845 2.506.44 5.225 2.91 6.172l37.71 14.457a4.93 4.93 0 0 0 6.212-2.473l1.962-4.102 2.073-4.311 2.596-5.004 2.942-5.68c1.044-1.994 2.246-4.039 3.439-6.199l3.77-6.705 6.462-10.711 2.383-3.688 4.916-7.59c3.546-5.02 7.014-10.307 10.933-15.406l4.327-5.826 7.578-9.537 6.279-7.439 3.145-3.672 6.423-7.093c1.05-1.178 2.11-2.335 3.211-3.444l6.411-6.64c2.101-2.177 4.294-4.197 6.364-6.239 2.086-2.027 4.104-4.027 6.182-5.86l5.956-5.42c1.908-1.761 3.874-3.333 5.69-4.911l5.246-4.468 4.646-3.679 4.062-3.235c.576-.476 1.356-1.046 2.015-1.547l5.451-4.113c2.267-1.711 2.618-4.973.774-7.133l-42.935-50.299c-1.844-2.16-5.121-2.325-7.166-.355l-4.918 4.737c-.621.603-1.212 1.152-1.982 1.939l-4.764 4.808-5.392 5.47-5.557 6.019c-1.912 2.113-3.974 4.242-5.969 6.576l-6.202 7.19c-2.155 2.438-4.24 5.057-6.385 7.714l-6.514 8.16-6.501 8.603c-1.116 1.441-2.183 2.929-3.237 4.439zm-78.02 176.352l-1.889 9.297-1.108 6.271-1.234 7.18-.649 3.875-.542 4c-.704 5.453-1.631 11.32-2.165 17.588l-.953 9.609-.678 10.053c-.54 6.811-.639 13.875-.864 21.021L0 693.152l.013 2.697.079 13.559.104 2.719.586 14.408.905 12.268.516 5.309.516 5.24.258 2.588.32 2.529 1.255 9.871 1.449 9.412c.44 3.057 1.007 6.014 1.528 8.873l.128.682a4.93 4.93 0 0 0 4.846 4.031h13.291c2.838 0 5.09-2.389 4.923-5.221l-.142-2.291-.43-8.531-.295-9.01-.072-11.804.266-12.062.576-12.371c0-.207.004.191.006.123l.012-.158 1.24-15.481 1.731-15.038.369-2.471c1.012-6.57 1.872-13.033 3.132-19.221l1.727-9.119 1.936-8.666c1.164-5.641 2.673-10.885 3.901-15.746l.924-3.562c.318-1.143.661-2.225.977-3.297l1.81-6.059 1.614-5.354 2.99-9.006c.895-2.693-.668-5.58-3.412-6.311l-33.319-8.885c-2.745-.733-5.537.992-6.103 3.775zM387.317 774.27c10.84 5.299 22.323 7.811 33.628 7.811 28.378 0 55.65-15.811 68.953-43.023 2.562-5.238 4.545-11.021 5.835-16.467l125.424-544.387c2.13-9.245-5.224-15.543-12.602-15.543-4.319 0-8.647 2.159-11.087 7.148l-245.364 501.88c-18.603 38.051-2.837 83.979 35.213 102.581zm36.472-108.434c20.759 0 37.588 16.828 37.588 37.588s-16.829 37.588-37.588 37.588-37.588-16.83-37.588-37.588 16.829-37.588 37.588-37.588z"/>
</svg>
<h3>Truly Optimised</h3>
</a>
<p>DietPi is an extremely lightweight Debian OS, highly optimised for minimal CPU and RAM resource usage, ensuring your SBC always runs at its maximum potential.</p>
</div>
<div class="col-md-4 col-sm-6 service">
<a href="https://dietpi.com/docs/dietpi_tools/#dietpi-launcher" target="_blank" rel="noopener">
<svg viewBox="0 0 360 360" aria-hidden="true">
<path d="M312.5 78.4c13.3 6.3 18.7 18.1 15.7 34.6l-6.7 35.5-7 37-2.8 14.5-3.1 16.5c-4.6 25.3-7.6 38.4-9.9 43-4.9 10.1-15.1 18.9-25.7 22.4-6.5 2.2-6.8 2.2-92 1.9l-85.5-.3-4-2.3c-11.9-7-17-17.9-14.6-31.7.9-5.7 2.3-13 5.7-30.5l3.8-20 3-15.5 3.5-18 6.7-35.5c.9-4.1 1.6-8.4 1.8-9.5 3.4-22.3 13.6-36.3 31.1-42.6 4.7-1.7 10.5-1.8 90-1.9h85l5 2.4zm-231 57.3c-.3 1-1.1 4.3-1.6 7.3s-1.4 7.4-2.1 9.7l-1.1 4.3H30v-23h26.1c24.5 0 26.1.1 25.4 1.7zm-8.9 46c-.2 1-1.3 6.2-2.2 11.5l-1.8 9.8H30v-23h21.6c20 0 21.5.1 21 1.7zM64 226.2c0 .2-.7 4.1-1.6 8.8l-2.1 11.7-.5 3.3H30v-24h17l17 .2zm59.2-96l-2.6 14.3-7.1 37-6.9 36.5-2.6 13.5c-.6 3.3-1.8 9.2-2.6 13-1.6 7.5-1.1 10.6 2.1 13.8 1.5 1.6 8.7 1.7 84 1.7h82.4l3.5-3c4.7-4.1 4.8-4.7 10.1-33.5.8-5 2.7-14.4 4-21l9.9-52c2.2-11.2 4.6-24.8 4.6-26.3 0-.9-18.4-1.2-88.8-1.2h-88.7l-1.3 7.2zm154.7 16.4c1.8.9 4 3.2 4.9 5 1.7 3.7 1.4 7.5-2.2 24.9l-5.1 26c-3 16.8-4 19.4-7.9 22-2 1.4-10.7 1.5-70.7 1.3l-68.4-.3-2.4-2.4c-4.2-4.2-3.7-13.5 2.4-41.1.8-3.6 1.7-8.5 2-11 .4-2.5 1.6-8.3 2.8-13 1.9-7.4 2.6-8.7 5.6-10.7l3.4-2.3h66.2c58.8 0 66.6.2 69.4 1.6zm-123.4 26.1l-1.5 6.8c-.5 1.6-1.4 6.4-2 10.5s-1.5 8.7-2 10.2l-.9 2.8h51.4c49.1 0 51.4-.1 52-1.9.5-1.7 1.3-5.9 4.9-25.4l1.3-6.7H155.1l-.6 3.7z"/>
</svg>
<h3>Simple interface</h3>
</a>
<p>DietPi programs use lightweight Whiptail menus. Spend less time staring at the command line, more time enjoying your Pi.</p>
</div>
<div class="col-md-4 col-sm-6 service">
<a href="dietpi-software.html">
<svg viewBox="-150 -100 703 703" aria-hidden="true">
<path d="M502.686 260.467c0-84.752-64.712-154.339-147.415-162.191V7.614H0v487.457h355.271V422.68c82.702-7.874 147.415-77.461 147.415-162.213zM339.718 395.759c-74.721 0-135.27-60.592-135.27-135.292s60.571-135.27 135.27-135.27 135.292 60.571 135.292 135.27-60.571 135.292-135.292 135.292zm-.021-206.648c-39.41 0-71.356 31.925-71.356 71.356s31.925 71.356 71.356 71.356 71.378-31.925 71.378-71.356-31.968-71.356-71.378-71.356zm0 95.408c-13.266 0-24.051-10.764-24.051-24.051 0-13.266 10.785-24.051 24.051-24.051 13.288 0 24.051 10.785 24.051 24.051a24.05 24.05 0 0 1-24.051 24.051z"/>
</svg>
<h3>DietPi-Software</h3>
</a>
<p>Quickly and easily install popular software "ready to run" and optimised for your system. Only the software you need is installed.</p>
</div>
<div class="col-md-4 col-sm-6 service">
<a href="https://dietpi.com/docs/dietpi_tools/system_configuration/#dietpi-config" target="_blank" rel="noopener">
<svg viewBox="0 0 508.96 508.96" aria-hidden="true">
<path d="M248.78 293.56l29.595-29.66-30.242-30.156-29.552 29.574c-12.36-8.413-26.51-14.237-41.718-17.17v-41.912h-42.71v41.934c-15.164 2.955-29.293 8.758-41.675 17.17L62.84 233.766l-30.156 30.156 29.509 29.66c-8.305 12.295-14.172 26.424-17.127 41.718H3.154v42.689h41.912c2.955 15.164 8.822 29.293 17.127 41.718l-29.509 29.574 30.156 30.156 29.617-29.574c12.36 8.369 26.51 14.237 41.696 17.192v41.912h42.689v-41.955c15.207-2.955 29.315-8.801 41.718-17.192l29.552 29.53 30.242-30.134-29.595-29.574c8.413-12.382 14.215-26.51 17.127-41.739h41.998v-42.645h-41.977c-2.912-15.274-8.714-29.338-17.127-41.698zm-93.25 109.62c-25.669 0-46.593-20.859-46.593-46.593s20.924-46.571 46.593-46.571c25.712 0 46.528 20.837 46.528 46.571s-20.795 46.593-46.528 46.593zm340.1-69l.302-.216-207.73-208.83-.324-98.255L187.358.002l-10.699 10.721 53.452 53.323-52.072 52.18L124.63 62.86l-10.742 10.656 26.963 100.41 95.602.324-.626.518 209.09 210.18.28-.259c13.935 13.633 36.411 13.633 50.13-.237 13.914-13.827 13.936-36.196.303-50.281zm-13.503 37.015c-6.212 6.191-16.243 6.212-22.412 0-6.148-6.191-6.212-16.157-.065-22.369 6.234-6.169 16.264-6.169 22.477-.022 6.147 6.148 6.212 16.157 0 22.391z"/>
</svg>
<h3>DietPi-Config</h3>
</a>
<p>Quickly and effortlessly customise your device's hardware and software settings for your needs, including network connection and localisation setup.</p>
</div>
<div class="col-md-4 col-sm-6 service">
<a href="https://dietpi.com/docs/dietpi_tools/system_maintenance/#dietpi-backup-backuprestore" target="_blank" rel="noopener">
<svg viewBox="-60 -60 632 632" aria-hidden="true">
<path d="M350.862 36.407c-21.64 0-42.15 2.544-60.84 7.18C260.852 19.393 214.4 4.015 161.139 4.015 70.78 4.014 0 48.265 0 104.755v302.49c0 56.49 70.78 100.74 161.139 100.74 73.802 0 134.536-29.523 154.315-71.122 11.364 1.536 23.204 2.35 35.408 2.35 90.359 0 161.138-44.25 161.138-100.741V137.147c0-56.489-70.78-100.74-161.138-100.74zm-69.006 370.838c-.001 28.531-49.578 60.32-120.717 60.32s-120.717-31.79-120.717-60.32v-33.77c29.303 20.574 72.181 33.346 120.717 33.346s91.415-12.772 120.717-33.346v33.77zm0-101.166c0 28.531-49.576 60.32-120.717 60.32s-120.717-31.79-120.717-60.32v-33.268c29.303 20.574 72.181 33.346 120.717 33.346s91.415-12.772 120.717-33.346v33.268zm0-100.662c0 28.531-49.576 60.32-120.717 60.32s-120.717-31.79-120.717-60.32v-33.268c29.303 20.574 72.181 33.346 120.717 33.346s91.415-12.772 120.717-33.346v33.268zm-120.717-40.343c-71.141 0-120.717-31.789-120.717-60.319s49.576-60.32 120.717-60.32 120.717 31.79 120.717 60.32-49.576 60.319-120.717 60.319zm310.44 173.397c0 28.531-49.576 60.32-120.717 60.32a225.76 225.76 0 0 1-28.586-1.801v-59.957c9.256.996 18.805 1.516 28.586 1.516 48.535 0 91.415-12.772 120.717-33.346v33.268zm0-100.662c0 28.531-49.576 60.32-120.717 60.32a225.76 225.76 0 0 1-28.586-1.801v-59.957c9.256.996 18.805 1.516 28.586 1.516 48.535 0 91.415-12.772 120.717-33.346v33.268zm-120.717-40.341a225.76 225.76 0 0 1-28.586-1.801v-90.911c0-8.817-1.725-17.335-4.979-25.434 10.512-1.598 21.732-2.494 33.564-2.494 71.141.001 120.717 31.79 120.717 60.32s-49.575 60.32-120.716 60.32z"/>
</svg>
<h3>DietPi-Backup</h3>
</a>
<p>Quickly and easily backup or restore your DietPi system.</p>
</div>
<div class="col-md-4 col-sm-6 service">
<a href="https://dietpi.com/docs/software/log_system/" target="_blank" rel="noopener">
<svg viewBox="0 0 548 548" aria-hidden="true">
<path d="M486.201 196.124h-13.166V132.59c0-.396-.062-.795-.115-1.196-.021-2.523-.825-5-2.552-6.963L364.657 3.677c-.033-.031-.064-.042-.085-.073-.63-.707-1.364-1.292-2.143-1.795-.229-.157-.461-.286-.702-.421a11.22 11.22 0 0 0-2.121-.892l-.577-.188C358.23.118 357.401 0 356.562 0H96.757C84.894 0 75.256 9.651 75.256 21.502v174.613H62.092c-16.971 0-30.732 13.756-30.732 30.733V386.66c0 16.968 13.761 30.731 30.732 30.731h13.164V526.79c0 11.854 9.638 21.501 21.501 21.501h354.776c11.853 0 21.501-9.647 21.501-21.501V417.392H486.2c16.966 0 30.729-13.764 30.729-30.731V226.854c.001-16.982-13.762-30.73-30.728-30.73zM96.757 21.502h249.054v110.009c0 5.939 4.817 10.75 10.751 10.75h94.972v53.861H96.757V21.502zm221.059 281.925c0 47.77-28.973 76.746-71.558 76.746-43.234 0-68.531-32.641-68.531-74.152 0-43.679 27.887-76.319 70.906-76.319 44.756 0 69.183 33.511 69.183 73.725zM82.153 377.79V232.085h33.073v118.039h57.944v27.66l-91.017.006zm369.381 143.172H96.757v-103.57h354.776v103.57zm9.642-149.87c-10.162 3.454-29.402 8.209-48.641 8.209-26.589 0-45.833-6.698-59.24-19.664-13.396-12.535-20.75-31.568-20.529-52.967.214-48.436 35.448-76.108 83.229-76.108 18.814 0 33.292 3.688 40.431 7.139l-6.92 26.37c-7.999-3.457-17.942-6.268-33.942-6.268-27.449 0-48.209 15.567-48.209 47.134 0 30.049 18.807 47.771 45.831 47.771 7.564 0 13.623-.852 16.21-2.152v-30.488h-22.478v-25.723h54.258v76.747zM212.533 305.37c0 28.535 13.407 48.64 35.452 48.64 22.268 0 35.021-21.186 35.021-49.5 0-26.153-12.539-48.655-35.237-48.655-22.265-.001-35.236 21.192-35.236 49.515z"/>
</svg>
<h3>Logging System Choices</h3>
</a>
<p>You decide how much logging you need. Get a performance boost with DietPi-RAMlog, or, rsyslog and logrotate for log critical servers.</p>
</div>
<div class="col-md-4 col-sm-6 service">
<a href="https://dietpi.com/docs/dietpi_tools/system_configuration/#dietpi-services" target="_blank" rel="noopener">
<svg viewBox="0 0 360 360" aria-hidden="true">
<path d="M146 31.1c0 .6 2.8 4 6.2 7.5 6 6.2 6.2 6.4 11.3 6.4 4.3 0 5.5.4 7.8 2.8l2.7 2.8v17.9c0 16.3.2 18.1 1.9 19.9 1.8 1.9 2 3.8 2.2 22.3.1 11-.2 20.6-.6 21.3-2.1 3.3-2.7-2-2.6-20.7.2-18.9.1-20-1.8-21.8-2-1.7-2.1-2.9-2.1-20.3 0-21.8-.2-22.2-8.4-22.2-5 0-5.4-.2-11.1-6-3.3-3.3-6.5-6-7.2-6-1.6 0-2.6-1.8-1.9-3.5.6-1.7 3.6-2 3.6-.4zm142.8 1.2c.2 1-.5 2-2 2.6-1.3.5-6.8 5.5-12.3 11l-10 10.1h-8.9c-8.8 0-9.1.1-12.3 3.2l-3.3 3.2v12.5c0 11.4-.2 12.7-2.2 14.8-1.6 1.7-3.2 2.3-6.6 2.3-6.3 0-8.2 2-8.2 8.4 0 5.1 0 5.2-8.6 13.6-8.4 8.4-8.5 8.6-8.1 12.7.3 2.6 0 4.6-.7 5.3-2.1 1.7-3.4-.9-2.9-5.3.5-3.6 1.7-5.4 8.9-12.7 8.3-8.4 8.4-8.6 8.4-13.6 0-7.1 2.9-10.4 9-10.4 3.1 0 5-.6 6.7-2.2 2.2-2 2.3-2.9 2.3-14.3V61.4l8.6-8.4h17.9l9.6-9.8c5.3-5.3 9.9-10.5 10.3-11.5.7-2.3 3.9-1.8 4.4.6zM125 39c0 .6 2.1 3.3 4.6 6l4.7 5h10c9 0 10.3.2 12.4 2.2 2.2 2.1 2.3 2.7 2.3 17.6v15.4l5.9 6.2 6 6.1.2 16.7c.2 16.4-.3 20-2.3 18-.7-.7-1-7.5-.9-17.9l.2-16.8L157 86.6v-15c0-14-.1-15.1-2.2-17.3-2-2.1-3-2.3-11.8-2.3h-9.6l-4.9-5c-2.7-2.8-5.5-5-6.2-5s-1.3-.9-1.3-2c0-1.3.7-2 2-2 1.1 0 2 .5 2 1zm77.7 3.5c.3 1.1-.9 2.8-3.6 5.1l-4.1 3.6v30.4l-10.1 9.9.2 19.8c.1 18.7-.5 24-2.6 20.7-.4-.7-.7-10.3-.6-21.3l.2-20.2 5.4-5.5 5.5-5.6V49.8l3.8-4.3c4-4.8 5-5.3 5.9-3zM109 62.6L122.5 76h12c11.5 0 12 .1 14.7 2.7 2.6 2.5 2.8 3.3 2.8 10.2v7.5l5.9 6.1 6 6 .2 11.1c.3 11.2-.4 14.5-2.4 12.5-.6-.6-1-5.4-.8-12.3l.2-11.3-5.5-5.5-5.6-5.4v-7c0-5.8-.4-7.4-2.2-9.3-2-2.1-2.9-2.3-13.7-2.3h-11.6L109 65.5 95.5 51.9l-15.3.2c-8.4.1-15.5-.1-15.8-.4-.4-.3-.4-1.2-.2-1.9.4-1 4-1.2 15.9-1l15.4.3L109 62.6zm113.2-5c-.3 5.3-.1 6.2 2.2 8.3 2.3 2.2 2.6 3.2 2.6 10 0 6.3-.3 7.8-2.2 9.8-1.3 1.4-3.3 2.3-5.1 2.3-5.2 0-6.7 2.3-6.7 10.4v7.2l-7.1 6.9-7.1 7 .4 5.8c.3 3.7 0 6.1-.8 6.7-2.1 1.8-3.1-1.2-2.5-7.5.6-5.8.8-6.2 7.9-13.3l7.2-7.4v-6.6c0-5.4.4-7 2.2-8.9 1.2-1.3 3.3-2.3 4.7-2.3 1.3 0 3.5-1 4.8-2.2 3.4-3.1 3.3-12.1-.1-15.7-1.8-2-2.5-4.1-2.9-9.3-.5-6.8-.2-8.1 1.7-7.5.7.2 1 2.7.8 6.3zm-10 9c-.4 6.6-.6 7.1-4.8 11.4l-4.4 4.6v20l-5.6 5.4-5.5 5.5.2 8.5c.3 8.9-.5 12-2.4 10.1-.7-.7-1-4.5-.8-9.9l.2-8.7 6-6 5.9-6.1v-20l4.6-4.4 4.6-4.5-.5-6.2c-.5-6.3-.1-7.6 1.7-7 .7.2 1 3 .8 7.3zm-152 .9c8.1 0 8.9.3 11.6 2.8 2.7 2.6 3.1 2.7 14.8 2.7h11.9l27 27h18.1l13.3 13.5.2 8.5c.3 8.9-.5 12-2.4 10.1-.7-.7-1-4.4-.8-9.7l.3-8.7-5.3-5.3-5.3-5.4h-18.1l-27-27H73.4l-3-3.1-2.9-3.1-10.2.4c-5.6.1-10.5 0-10.9-.4-.3-.4-.4-1.4 0-2.3.4-1.2 1.2-1.4 2.8-.9 1.3.5 6.2.8 11 .9zM266.1 82l-.2 12.5-11 11-10.9 11v9c0 8.3-.2 9.1-2.7 11.7-1.7 1.8-3.7 2.8-5.5 2.8-3.3 0-5.2 3-4.3 7 .7 3.2-.9 4.8-3 3-1.1-.9-1.2-1.7-.5-3 .6-1 1-2.7 1-3.6 0-2.7 4-6.4 6.8-6.4 5 0 6.2-2.4 6.2-12.4v-9.1l10.6-10.5 10.5-10.5-.1-12c-.2-14.8-.3-13.7 1.7-13.3 1.4.3 1.6 1.8 1.4 12.8zM309 70.9c0 1.7-.6 1.8-8.5 1.3-11-.6-12.5.5-12.5 10v6.3l-28 28v27.1l-13.5 13.3-8.5.2c-8.9.3-12-.5-10.1-2.4.7-.7 4.3-1 9.2-.8l8.2.3 6.3-6.3 6.4-6.3v-26.1l27-27V82c0-5.9.3-6.9 2.8-9.3 2.3-2.2 3.7-2.6 10.2-3 4.1-.1 8.3-.4 9.3-.5 1.1-.1 1.7.5 1.7 1.7zm18.8 5.4c.2 1-.4 2-1.5 2.3-1 .4-4.4 3.2-7.5 6.3l-5.8 5.5v8.5c0 7.9-.2 8.7-2.7 11.3-2.3 2.4-3.4 2.8-8.2 2.8-5.5 0-5.6.1-12.3 6.7l-6.8 6.7v10.5c0 9.4-.2 10.7-2.2 12.8-1.8 2-3.1 2.3-9.2 2.3h-7l-6.1 5.9-6 6-11.6.2c-11.7.2-15-.4-13-2.4.6-.6 5.4-1 12.3-.8l11.3.2 5.5-5.5 5.4-5.6h7.5c10.7 0 11.1-.5 11.1-14.4v-11.1l7.2-7.2 7.2-7.3h6c8.7 0 9.6-1.2 9.6-11.9v-8.7l6.5-6.4c3.6-3.5 6.5-7.1 6.5-7.8 0-2 3.4-1 3.8 1.1zM107 109.5l6.6 6.5h9.9c8.8 0 10.1.2 12.2 2.2 1.3 1.2 2.3 3.3 2.3 4.8 0 4.2 3.1 6.4 7.9 5.6 4.3-.7 6 .6 4.1 2.9-.9 1.1-1.7 1.2-3 .5-1-.6-3.1-1-4.6-1-3.8 0-6.4-2.7-6.4-6.6 0-5.2-2.7-6.4-14-6.4h-9.6l-11.9-12.1-24.3.2c-13.4 0-24.6-.2-24.9-.5s-.3-1.1-.1-1.8c.4-1 5.7-1.2 24.9-1l24.4.3 6.5 6.4zm131.5-2.3c-.8 4.9-3.9 8.8-6.8 8.8-3.3 0-5.7 2.9-5.7 6.8 0 4.8-3.2 8.2-7.7 8.2-1.9 0-4.3.4-5.3 1-1.3.7-2.1.6-3-.5-2-2.4-.2-3.4 4.8-2.9 6 .7 9.2-1.8 9.2-7.3 0-4.5 3.2-8.3 7.1-8.3 3.7 0 5.2-2.1 4.3-6.4-.6-3.2-.4-3.6 1.6-3.6s2.1.3 1.5 4.2zM89.3 123.7c2.2 2.2 2.7 3.6 2.7 7.3 0 2.5.5 5.1 1.2 5.8s3.9 1.2 7.3 1.2h6l8 8.1c7.9 7.9 8.1 8 12.2 7.6 2.7-.3 4.6 0 5.3.8 1.8 2.2-1.1 3.4-6.3 2.5-4.3-.6-5.7-1.6-12.6-8.4l-7.6-7.6h-5.6c-4.8 0-5.9-.4-8.2-2.8-2.1-2.1-2.7-3.8-2.7-7 0-2.5-.7-5-1.7-6.2-1.7-2-2.7-2.1-29.1-1.9-15 .1-27.5-.1-27.8-.4-1.9-1.8 3.2-2.2 28.3-1.9l27.8.3 2.8 2.6zm16.7-2.5c0 1.6 23.1 24.8 24.6 24.8 1.8 0 2.4 2.7.9 4-1.6 1.3-3.5.6-3.5-1.3 0-1.6-23.1-24.7-24.7-24.7-.7 0-1.3-.9-1.3-2 0-1.3.7-2 2-2 1.1 0 2 .6 2 1.2zm201.1 9l3.8 4.3.1 10.5c0 10.4 0 10.4-3.2 13.7l-3.2 3.3h-33l-4.6 4.4-4.5 4.5-16.6.2c-16.5.2-20.1-.3-18.1-2.3.7-.7 7.5-1 17.9-.9l16.8.2 4.5-4.5 4.4-4.6h16.5c20.9 0 20.1.6 20.1-14.2 0-5.9-.3-10.8-.7-10.8-1.8-.1-7.5-5.9-6.9-6.9 1.2-1.9 2.7-1.2 6.7 3.1zm-222.9 6.5c1.6 1.5 2.8 3.7 2.8 5.2 0 4.7 2.5 6.1 10.9 6.1h7.7l6.4 6.6 6.5 6.5 6-.3c6.6-.3 9.4.7 7.5 2.6-.6.6-3.7 1-7.8.8l-6.7-.4-14-13.8h-7c-6.1 0-7.2-.3-9.7-2.7-1.5-1.5-2.8-3.6-2.8-4.7 0-4-2.8-5.6-9.8-5.6-5.1 0-7 .4-8.6 1.9-1.6 1.4-3.9 2-9.1 2.3-6.4.3-7 .1-7-1.7s.6-2 7-1.7c6.1.3 7.3.1 8.9-1.7s3.1-2.1 9-2.1c6.2 0 7.3.3 9.8 2.7zm134 5l2.8 2.7v71l-5.4 5.6h-71.2l-5.4-5.6v-70.8l5.4-5.6h71l2.8 2.7zm110.9 14.8c-.2 12.4-.4 13.1-2.9 15.7l-2.6 2.8h-22.5c-18.2 0-22.7.3-24 1.5-1.3 1.1-6.1 1.4-24.8 1.6-12.7 0-23.7-.2-24.3-.6-3.4-2.1 2.3-2.7 24.3-2.6 15.5.1 23.7-.2 24.2-.9.4-.6 8.6-1 23.4-1 28.3 0 26.3 1.2 26.1-16.2-.2-15.1-.3-14 1.7-13.6 1.6.3 1.7 1.7 1.4 13.3zm-219.5 8.7c3.1 2.9 3.4 3 12.1 2.7 9.2-.3 12.4.4 10.4 2.4-.7.7-4.6 1-10.4.8-9.1-.2-9.3-.3-12.9-3.8l-3.7-3.6-8 .6c-7.3.5-8.1.3-8.1-1.3s.8-1.7 8.8-1.3c7.9.5 9 .8 11.8 3.5zM85.5 171l4 4.1 20.7-.2c11.3 0 21.2.2 21.8.6 3.4 2.1-2.1 2.7-21.7 2.6l-20.8-.2-9.1-8.9H50.3l-7.2 7.5c-3.9 4.1-7.5 7.5-8.1 7.5-1.9 0-1-3.8 1.3-5.3 1.2-.8 4.5-3.8 7.4-6.6l5.1-5.1h32.8l3.9 4zm46.4 11.4c.9 1.1.9 1.6.1 2.1-.7.4-10.3.7-21.4.6l-20.2-.2-2.4 2.5-2.3 2.6H66c-19.5 0-19.7 0-21.9 2.4-2.2 2.3-2.3 3.1-2 14.8.3 11.6.2 12.3-1.6 12.3s-1.9-.7-1.6-13c.3-13 .3-13 3.2-15.8l3-2.7h39.5l2.9-3 2.8-3 19.6-.3c10.8-.1 19.9-.3 20.2-.5.4-.1 1.2.4 1.8 1.2zM250 182h17.9l5.6 5.5 5.7 5.5h31.6l4.1-4.6c3.8-4.3 6.1-5 6.1-1.8 0 .8-1 1.8-2.2 2.3-1.3.5-3.4 2.1-4.7 3.5l-2.4 2.6h-34.3l-9.9-10.1-19.2.2c-10.5.1-19.6-.2-20.3-.6-1.6-1 .9-3.8 2.7-3 .8.3 9.5.5 19.3.5zm-118.1 7.4c2.1 2.5-.5 2.9-17.3 2.7l-16.1-.2-5.5 5.5-5.4 5.6H71.5c-15.8 0-16.2.1-18.4 2.4s-2.3 3.1-2 15.3c.3 10.6.1 12.8-1.1 12.8s-1.4-2.3-1.1-13.5c.2-13 .4-13.6 2.9-16.3l2.6-2.7h31.2l11.8-12 16-.3c8.9-.1 16.4-.4 16.7-.5.4-.1 1.2.4 1.8 1.2zm118.7 6.7l7 7 34-.1c31.1-.1 33.9 0 33.9 1.5 0 1.6-2.8 1.7-34 1.6l-34-.2-7.1-7-7.1-7.1-6.9.3c-7.4.4-10.2-.5-8.5-2.5.7-.8 3.4-1 8.3-.8l7.3.4 7.1 6.9zm-118.7.3c2 2.4-.5 3-12.3 2.7l-11.1-.2-6.5 6.5-6.4 6.6h-6.5c-5.3 0-6.9.4-8.8 2.2-2.1 2-2.3 2.9-2.3 13.7v11.6l-19 19c-10.4 10.4-19 19.5-19 20.2 0 1.9-2 2.6-3.5 1.3-2-1.6-1.9-2.9.2-3.7 1-.3 10.2-8.9 20.6-19.2L76 238.5v-11.9c0-11.4.1-12 2.6-14.2 2.1-2 3.5-2.4 9.2-2.4h6.8l6.9-7 6.9-6.9 10.5-.4c5.8-.1 10.9-.4 11.2-.5.4-.1 1.2.4 1.8 1.2zm116.1 8.2l8.5 8.4h6.5c5.9 0 6.7.3 9.7 3.2 1.8 1.8 3.3 4.2 3.3 5.4 0 1.1 1.1 3.3 2.5 4.8 2.3 2.5 2.7 2.6 14.3 2.6 10.6 0 12.1-.2 13.7-2 1.4-1.5 3.1-2 7-2 2.8 0 5.6-.5 6.3-1.2 1.4-1.4 4.3.7 3.6 2.6-.4 1-2.3 1.2-7.2.8-5.9-.4-6.9-.2-8.6 1.7-1.8 1.9-2.9 2.1-15 2.1h-13l-3.3-3.2c-2-1.9-3.3-4.2-3.3-5.7 0-1.4-1-3.5-2.2-4.8-1.8-2-3.1-2.3-8.7-2.3h-6.6l-8-8.1-8-8-5 .3c-5.7.3-8.2-.7-6.5-2.6.7-.9 2.7-1.2 6.3-.8 5 .4 5.6.8 13.7 8.8zm-116.1-1.2c1.9 2.3-.6 3-9.4 2.7l-8.1-.3-13.4 13.4v28.3l-26 26v7c0 6.7-.2 7.3-3.2 10.2-3.1 3-3.8 3.2-12.3 3.4-8.3.3-9 .2-9-1.6s.6-1.9 8.3-1.6c7.6.2 8.6.1 10.8-2 2.1-1.9 2.4-3.2 2.4-8.8v-6.6l27-27v-29.1l7.3-7.1 7.2-7.2 8-.4c4.4-.1 8.3-.4 8.6-.5.4-.1 1.2.4 1.8 1.2zm114.1 9.2c9.2 9.1 9.7 9.4 14.1 9.4 6.1 0 9.9 3.7 9.9 9.6 0 3.4.7 4.6 4.8 8.7l4.9 4.8 24.9-.2c21.5-.1 24.9 0 25.2 1.3.3 1.8-2.4 3.2-3.3 1.8-.4-.6-10.3-1-24.3-1h-23.6l-5.3-5.2c-4.6-4.6-5.3-5.7-5.3-9.2 0-5.8-3-8.6-9.1-8.6-4.8 0-5-.2-14.1-9.1-8.5-8.4-9.4-9.1-12.4-8.6-2 .3-3.7.1-4.3-.7-1.7-2 .7-3.5 4.8-2.9 2.9.4 5.5 2.4 13.1 9.9zm-114.2-2.3c.7.8.7 1.8.2 2.7-.6.8-1 3-1 4.9 0 4-3.3 8.1-6.3 8.1-4.5 0-5.7 2.7-5.7 12.4v9.1L107.4 259c-6.4 6.3-12 12.5-12.5 13.7-.9 2.3-3.3 3.1-4.4 1.4-.3-.6 5.5-6.9 13-14.2l13.5-13.2v-9c0-7.9.3-9.4 2.2-11.4 1.2-1.3 3.1-2.3 4.3-2.3 3.9 0 5.9-3.3 5.2-8.9-.7-5.9.6-7.9 3.1-4.8zm100.1.9c.5 1.3 3.2 4.5 6 7.3 4.9 4.8 5.1 5.1 5.1 10.5 0 3.1.5 6.1 1.2 6.8s3.5 1.2 6.3 1.2h5l31 31h8.9c8.8 0 9.1.1 12.3 3.2 3.1 3 3.3 3.6 3.3 10.3v7.1l4.8 4.5c2.6 2.6 5.5 4.9 6.5 5.2.9.4 1.7 1.3 1.7 2.2 0 2.1-3.2 3.3-3.9 1.4-.2-.8-3.1-4.1-6.3-7.5l-5.8-6.1V282c0-5.2-.4-6.8-2.2-8.7-1.9-2.1-3.1-2.3-10.7-2.3h-8.6l-31-31h-5.4c-7.9 0-10.1-2.3-10.1-10.4 0-5.8-.1-6.2-4.7-10.8-2.6-2.6-5.3-4.8-5.9-4.8-1.7 0-2.4-2.6-1.1-3.9 1.7-1.7 2.7-1.3 3.6 1.1zm-81.3 19.6c-.4.6-2.8.8-5.9.5l-5.2-.5-6.4 6.5-6.4 6.6.6 7c.5 6.5.4 7.1-1.3 7.1s-1.8-.7-1.3-7.8l.5-7.7 6.6-6.8c5.7-5.7 7.1-6.7 10.2-6.7 1.9 0 4.2-.5 5-1 1.7-1.1 4.6 1.2 3.6 2.8zm6.5 3.3c-.7 4.2-1.7 5.7-9.4 13.4-8.4 8.4-8.7 8.9-8.7 13.3 0 6.3-3.6 10.2-9.4 10.2-2.7 0-4.7.7-6.3 2.2-2.2 2.1-2.3 2.6-2.3 21.3 0 12.7.4 19.5 1.1 20.2 1.4 1.4.3 3.3-1.9 3.3-1.6 0-1.7-1.9-1.4-22.2l.3-22.3 3-2.8c2.2-2 3.9-2.7 7.1-2.7 5.9 0 7.8-2.1 7.8-8.4 0-5.1 0-5.2 8.6-13.6 8.4-8.4 8.5-8.6 8.1-12.7-.5-4.6.9-7.1 2.9-5.1.8.9 1 2.8.5 5.9zm7.1 1.1l-.4 6.3-15.8 16v7c0 8.1-2.2 11.5-7.5 11.5-4.5 0-5.5 1.6-5.5 8.9 0 5.5.4 6.9 2.4 9 1.9 2.1 2.5 3.9 2.8 9.1.3 5.9.1 6.5-1.7 6.5s-2-.6-1.7-6.5c.3-5.6.1-6.8-1.7-8.4s-2.1-3.1-2.1-9.4c0-8.4 1.5-11.2 5.8-11.2 1.4 0 3.6-1 4.9-2.2 2-1.8 2.3-3.1 2.3-8.7v-6.7l7.6-7.4 7.5-7.5-.3-6c-.3-6.6.6-9.2 2.6-7.6.8.7 1.1 3.1.8 7.3zm6.9 3.1l-.2 9.2-4.5 4.5c-4 4.2-4.4 5-4.4 9.6 0 4.1-.5 5.5-2.5 7.4-1.4 1.3-2.5 3-2.5 3.7 0 .9-.8 1.3-2.2 1.1-2.8-.4-3.5-2.6-1.1-3.4 4.4-1.6 6.3-4.6 6.3-9.9 0-4.6.4-5.4 4.1-9l4-4-.2-9c-.3-9.4.4-12.6 2.4-10.6.7.7 1 4.7.8 10.4zm7 11.4l-.2 20.8-10.9 11.1v29.2l4.6 4.1c3 2.6 4.4 4.6 4 5.6-.8 2.2-2.5 1.8-3.5-.8-.5-1.2-2.3-3.5-4-5.1l-3.1-3v-31.2l10.1-9.9-.2-20.7c-.1-11.3.2-21.2.6-21.8 2.1-3.4 2.7 2.1 2.6 21.7zm7-.5c-.2 17.4 0 20.7 1.3 21.8 1.4 1 1.6 4.5 1.6 22.4v21.2l11.7 11.5 12.9-.2c11.9-.2 12.9-.1 12.9 1.6s-1 1.8-13 1.6l-13-.2-6.7-6.7-6.8-6.6v-21c0-19.4-.1-21.1-1.9-23s-2-3.8-2.2-22.3c-.1-11 .2-20.6.6-21.3 2.1-3.3 2.7 2 2.6 21.2zm7-3l-.2 17.3 10.1 9.9v16c0 20.5-.7 19.6 15 19.6 11.4 0 11.7 0 14.3-2.8 1.5-1.5 2.7-3.4 2.7-4.1 0-1.6 4.2-1 4.8.6.2.7-.7 1.7-2 2.2s-3.4 2.1-4.7 3.5c-2.4 2.5-2.7 2.6-15.5 2.6-18.2 0-17.6.8-17.6-20.9v-16.5l-4.9-5.1-5-5-.2-17.1c-.2-17 .3-20.6 2.3-18.6.7.7 1 7.7.9 18.4zm7-5.5l-.2 11.8 5.5 5.5 5.6 5.4v7.1c0 11.1.6 11.5 14.8 11.5h11.7l18.5 18.6c10.2 10.2 19.5 19 20.8 19.5 1.5.6 2.2 1.6 2 2.6-.5 2.4-3.7 2.9-4.4.6-.4-1-9-10.2-19.3-20.6L235.5 284h-11.4c-10.4 0-11.7-.2-13.8-2.2-2-1.9-2.3-3.1-2.3-9.7v-7.5l-5.9-6.1-6-6-.2-11.6c-.2-11.7.4-15 2.4-13 .6.6.9 5.6.8 12.8zm7-2.1l-.3 9.7 5.3 5.3 5.3 5.4h29.1l27 27h6.5c6.1 0 6.8.2 9.7 3.2 2.8 3 3.1 4 3.5 11.6.4 6.6.2 8.5-.9 8.9-2.1.8-4-1.4-2.5-2.9.7-.7 1.2-3.9 1.2-7.3 0-5.4-.3-6.4-2.8-8.8s-3.6-2.7-9.2-2.7h-6.4L258 274.5 244.3 261h-28.9l-6.1-6.3-6.2-6.2-.2-9.5c-.3-9.9.4-13.1 2.4-11.1.7.7 1 4.8.8 10.7zm10.5-9.6c2.7 0 6.4 4 6.4 6.8 0 5 2.4 6.2 12.4 6.2h9.1l11.5 11.6c6.3 6.4 12.5 12 13.8 12.5 2.2.9 3 3.3 1.3 4.4-.6.3-6.9-5.5-14.2-13L243.7 244h-9c-7.9 0-9.4-.3-11.4-2.2-1.3-1.2-2.3-3.3-2.3-4.8 0-4-3.1-6.4-7.4-5.6-3.8.7-5.5-.6-3.6-2.9.9-1.1 1.7-1.2 3-.5 1 .6 2.7 1 3.6 1zm-72.1-83.8c-.3.7-.4 16.8-.3 35.8l.3 34.5h71v-71l-35.3-.3c-27.7-.2-35.4 0-35.7 1zm41.9 4.4c1 .4 1.6 1.8 1.6 3.9 0 4.2 2.5 5.3 5.6 2.4 2.7-2.5 4.5-1.8 9.3 3.6 3.7 4.2 3.7 4.3 1.1 7-2.8 3-1.7 5.5 2.5 5.5 3.8 0 4.5 1.2 4.5 8s-.7 8-4.5 8c-4.2 0-5.3 2.5-2.5 5.5 2.6 2.7 2.6 2.8-1.1 7-4.8 5.4-6.6 6.1-9.3 3.6-3.1-2.9-5.6-1.8-5.6 2.4 0 3.8-1.2 4.5-8 4.5s-8-.7-8-4.5c0-4.2-2.5-5.3-5.6-2.4-2.7 2.5-4.5 1.8-9.3-3.6-3.7-4.2-3.7-4.3-1.1-7 2.8-3 1.7-5.5-2.5-5.5-3.8 0-4.5-1.2-4.5-8s.7-8 4.5-8c4.2 0 5.3-2.5 2.4-5.6-2.5-2.7-1.8-4.5 3.6-9.3 4.2-3.7 4.3-3.7 7-1.1 3 2.8 5.5 1.7 5.5-2.5 0-1.8.6-3.6 1.3-3.8 1.8-.8 11.3-.8 13.1-.1zM175.7 151.6c-.4.4-.7 2-.7 3.5 0 2.2-.8 3.2-3.1 4.5-2.9 1.5-3.2 1.4-5.3-.5-2.9-2.7-3.4-2.6-6.8.6s-3.4 4-.7 6.9c1.9 2.1 2 2.4.5 5.2-1.2 2.3-2.4 3.1-4.8 3.4-3.2.3-3.3.5-3.3 4.8s.1 4.5 3.3 4.8c2.4.3 3.6 1.1 4.8 3.4 1.5 2.8 1.4 3.1-.5 5.2-2.7 2.9-2.7 3.7.7 6.9s3.9 3.3 6.8.6c2.1-1.9 2.4-2 5.2-.5 2.3 1.2 3.1 2.4 3.4 4.8.3 3.2.5 3.3 4.8 3.3s4.5-.1 4.8-3.3c.3-2.4 1.1-3.6 3.4-4.8 2.8-1.5 3.1-1.4 5.2.5 2.9 2.7 3.4 2.6 6.8-.6s3.4-4 .7-6.9c-1.9-2.1-2-2.4-.5-5.2 1.2-2.3 2.4-3.1 4.8-3.4 3.2-.3 3.3-.5 3.3-4.8s-.1-4.5-3.3-4.8c-2.4-.3-3.6-1.1-4.8-3.4-1.5-2.8-1.4-3.1.5-5.2 2.7-2.9 2.6-3.4-.6-6.8s-4-3.4-6.9-.7c-2.1 1.9-2.4 2-5.2.5-2.3-1.2-3.1-2.4-3.4-4.8-.3-3.1-.6-3.3-4.3-3.6-2.3-.2-4.4 0-4.8.4zm10.3 17.9c1.6.9 3.6 2.9 4.5 4.5 3.1 6 1 13.7-4.5 16.5-11 5.7-22.2-5.5-16.5-16.5 2.9-5.5 10.5-7.6 16.5-4.5zm-10.9 1.9c-8.7 4.8-5 18.6 4.9 18.6 5.1 0 10-4.9 10-9.9 0-7.5-8.3-12.4-14.9-8.7z"/>
</svg>
<h3>DietPi-Services Control</h3>
</a>
<p>Control which installed software has higher or lower priority levels: nice, affinity, policy scheduler and more.</p>
</div>
<div class="col-md-4 col-sm-6 service">
<a href="https://dietpi.com/docs/dietpi_tools/system_maintenance/#dietpi-update" target="_blank" rel="noopener">
<svg viewBox="0 0 256 161" aria-hidden="true">
<path d="M213.8 69.4c-.4 0-.8.1-1.2.1l.3-5.9c0-34-27.5-61.5-61.5-61.5-31 0-56.7 23-60.7 52.9-4.2-1.4-8.4-2.2-12.9-2.2-23.3 0-42.3 19-42.3 42.3 0 .2.1.4.1.5-1.9-.3-3.9-.5-5.8-.5-16.7 0-30 13.4-30 29.9s13.3 29 29.9 29h184.1c23.3 0 42.3-19 42.3-42.3s-19-42.3-42.3-42.3zm-85.9 68.7c-19.1 0-34.7-15.4-35.2-34.4h-9.2L98.3 89l15 14.8H104c.5 12.7 11 23 23.8 23a23.68 23.68 0 0 0 16.3-6.5l8.1 8.1c-6.2 6-14.9 9.7-24.3 9.7zm29.5-19.4l-15-15h9.2v-.9c0-13.1-10.7-23.8-23.8-23.8-6.8 0-13 2.9-17.3 7.5l-8.1-8.1c6.4-6.7 15.4-10.8 25.4-10.8 19.5 0 35.3 15.8 35.3 35.2v.9h9.2l-14.9 15z"/>
</svg>
<h3>DietPi-Update System</h3>
</a>
<p>DietPi automatically checks for updates and informs you when they are available. Update instantly, without having to write a new image.</p>
</div>
<div class="col-md-4 col-sm-6 service">
<a href="https://dietpi.com/docs/usage/#how-to-do-an-automatic-base-installation-at-first-boot-dietpi-automation" target="_blank" rel="noopener">
<svg viewBox="0 0 360 360" aria-hidden="true">
<path d="M113.7 13.4l2.8 2.4.3 21.9c.3 23.7-.1 25.7-5.1 28.1-3.2 1.5-6 .9-8.7-2.1-1.9-1.9-2-3.6-2-24.7 0-23.6.1-24.5 4.5-26.8 3.1-1.7 5.1-1.4 8.2 1.2zm40.6-1.3c4.2 1.9 4.7 4.7 4.7 27.4 0 21 0 21.4-2.3 24.1-1.7 2-3.3 2.7-5.7 2.7s-4-.7-5.7-2.7c-2.3-2.7-2.3-3.1-2.3-24.7V16.8l2.9-2.9c3.2-3.2 4.7-3.5 8.4-1.8zm45 2c1.5 1.9 1.7 4.7 1.7 24.4 0 12.3-.3 23.1-.6 24-.9 2.3-6 4.6-8.8 3.9-1.4-.3-3.3-1.5-4.3-2.6-1.6-1.8-1.8-4.2-1.8-25v-23l2.9-2.5c3.5-2.9 8-2.6 10.9.8zm13.3 68.4c3.7 2.3 5.6 4.4 7.7 8.4l2.7 5.5v65.7l-2.1-1.2c-1.2-.6-4.3-.9-7-.7l-4.8.5-.3-31.8c-.3-29-.5-32-2.1-33.6-1.7-1.7-5.3-1.8-55.7-1.8s-54 .1-55.7 1.8-1.8 5.3-1.8 55.7.1 54 1.8 55.7c1.6 1.6 4.6 1.8 33.8 2.1l32 .3-.8 2.2c-1.1 3.1-.7 8.6.8 10.3 1 1.2-3.3 1.4-31.8 1.4H96.4l-5.5-2.8c-4-2-6.1-3.9-8.4-7.6l-3-4.9V94.3l3-4.8c2.2-3.6 4.5-5.7 8.4-7.7l5.4-2.8 111.4.5 4.9 3zM62.9 102c1 .5 2.4 2.3 3.1 3.9 1.5 3.7-.2 7.9-4 9.8-3 1.5-41.5 1.8-45.4.3-5.7-2.1-7-8.6-2.6-13 1.9-1.9 3.4-2 24.6-2 12.5 0 23.3.4 24.3 1zm225.2.9c3.1 2.5 3.2 8.3.1 11.4-2.2 2.1-2.8 2.2-25.2 2.2-21.6 0-23.1-.1-24.9-2-3.1-3.2-3.1-8.5-.1-11.5 1.9-1.9 3.3-2 24.9-2 20.9 0 23.1.2 25.2 1.9zM187.8 112l3.2 2v36.7c0 32.7-.2 36.8-1.7 38.5s-4 1.8-38.5 1.8H114l-2-3.3c-1.9-3-2-5-2-36.7.1-25.9.4-34 1.4-35.9 2.7-4.9 3.8-5 39.6-5.1 31.7 0 33.7.1 36.8 2zM63.6 145.3c2 1.7 2.7 3.3 2.7 5.7s-.7 4-2.7 5.7c-2.7 2.3-3.1 2.3-24.1 2.3-22.7 0-25.5-.5-27.4-4.7-1.7-3.7-1.4-5.2 1.8-8.4l2.9-2.9h22.1c21.6 0 22 0 24.7 2.3zm201.3 16.9c.4 1.3 1.4 5.8 2.1 10.1 1.2 7.1 1.5 7.8 3.9 8.3 1.4.3 4 1 5.6 1.5 2.9 1 3.3.7 8.7-5.3 3.2-3.5 5.8-6.6 5.8-7.1 0-1.7 4.2-.4 10.5 3.3 3.8 2.1 7.3 4.4 7.8 4.9.7.7-.1 4-2.2 9.9l-3.2 8.9 8.5 8.5 8.9-3.1c4.9-1.7 9.2-2.9 9.6-2.6.5.2 2.9 4.1 5.6 8.7l4.8 8.2-4.9 4-7.6 6.6-2.8 2.5 1.7 5.7 1.6 5.7 7.1 1.1c13 2.2 12.1 1.2 12.4 12.3.3 11.3.9 10.6-12 12.7l-7.7 1.3-.9 4.1c-.5 2.2-1.3 4.8-1.6 5.7-.5 1.2 1.1 3.2 6.1 7.4 3.7 3.2 7.1 6.3 7.4 6.9.7 1.1-6 13.8-8.6 16.5-1.1 1.1-2.7.9-10.1-1.8l-8.8-3.2-4.3 4.4-4.4 4.3 3.2 8.8c2.7 7.4 2.9 9 1.8 10.1-2.7 2.6-15.4 9.3-16.5 8.6-.6-.3-3.7-3.7-6.9-7.4-4.2-5-6.2-6.6-7.4-6.1-.9.3-3.5 1.1-5.7 1.6l-4.1.9-1.3 7.7c-2.1 12.9-1.4 12.3-12.7 12-11.1-.3-10.1.6-12.3-12.4l-1.1-7.1-5.7-1.6-5.7-1.7-2.5 2.8c-1.4 1.5-4.3 4.9-6.6 7.6l-4 4.9-8.2-4.8c-4.6-2.7-8.5-5.1-8.7-5.6-.3-.4.9-4.7 2.6-9.6l3.1-8.9-8.5-8.5-8.9 3.2c-5.9 2.1-9.2 2.9-9.9 2.2-.5-.5-2.8-4-4.9-7.8-3.7-6.3-5-10.5-3.2-10.5.4 0 3.5-2.6 7-5.8 6-5.4 6.3-5.8 5.3-8.7-.5-1.7-1.2-4.2-1.5-5.6-.5-2.4-1.2-2.7-8.3-3.9-13-2.2-12.3-1.5-12.3-12.4 0-5.2.4-9.7.9-10 .5-.4 4.9-1.3 9.7-2.2 4.9-.8 9-1.6 9.1-1.8.2-.2 1-2.7 1.7-5.7 1.7-6.3 1.8-6.1-7-13-3-2.4-5.4-5-5.4-5.8 0-2 8-16.2 9.4-16.7.7-.3 4.8.9 9.2 2.6 4.3 1.6 8.3 3 8.7 3 .5 0 2.7-1.7 4.8-3.9 2.2-2.1 3.9-4.3 3.9-4.8 0-.4-1.4-4.4-3-8.7-1.7-4.4-2.9-8.5-2.6-9.2.5-1.4 14.7-9.4 16.7-9.4.8 0 3.4 2.4 5.8 5.4 6.9 8.8 6.7 8.7 13 7 3-.7 5.5-1.5 5.7-1.7.2-.1 1-4.2 1.8-9.1.9-4.8 1.8-9.2 2.2-9.7.3-.5 4.8-.9 10-.9 8.9 0 9.5.1 10.3 2.2zM63.8 187.3c1.1 1 2.3 2.9 2.6 4.3.7 2.8-1.6 7.9-3.9 8.8-.9.3-11.7.6-24 .6-24.7 0-25.9-.3-27.1-6.5-.7-3.6 2.3-8.1 5.9-8.8 1.2-.3 11.7-.4 23.3-.3 19 .1 21.4.3 23.2 1.9zm50.7 50.8c1.9 1.8 2 3.3 2 24.9 0 22.4-.1 23-2.2 25.2-3.1 3.1-8.9 3-11.4-.1-1.7-2.1-1.9-4.3-1.9-24.6 0-12.3.3-23.1.6-24 .9-2.2 6.3-4.6 8.9-3.8 1.1.3 2.9 1.4 4 2.4zm95.5-1.7c0 18.2.3 26.7 1.1 27.2.6.3 3.7-2 7-5.2l5.9-5.9 38 38 14.2-14.3 14.3-14.2-38-38 5.9-5.9c3.2-3.3 5.5-6.4 5.2-7-.5-.8-9-1.1-27.2-1.1H210v26.4z"/>
</svg>
<h3>DietPi-Automation</h3>
</a>
<p>Allows you to completely automate a DietPi installation with no user input. Simply by configuring dietpi.txt before powering on.</p>
</div>
</div>
</div>
</div>
<!-- Download section -->
<div class="section secondary-section mixitup" id="download">
<div class="container-xl">
<svg class="triangle" viewBox="0 0 100 100" preserveAspectRatio="none" aria-hidden="true"><path d="M0 0h100l-50 100"/></svg>
<div class="title">
<h1>Download</h1>
<p>Give your single-board computer lightweight justice</p>
<a href="https://dietpi.com/survey/#benchmark" class="button" target="_blank" rel="noopener">View DietPi-Benchmark scores for all devices</a>
<p>username: <b>root</b> password: <b>dietpi</b></p>
</div>
<nav class="nav nav-pills" id="downloadinfo" style="display:none">
<button class="nav-link filter" data-filter="all">[All]</button>
<button class="nav-link filter" data-filter=".raspberrypi">Raspberry Pi</button>
<button class="nav-link filter" data-filter=".odroid">Odroid</button>
<button class="nav-link filter" data-filter=".pine">PINE64</button>
<button class="nav-link filter" data-filter=".radxa">Radxa</button>
<button class="nav-link filter" data-filter=".allo">Allo</button>
<button class="nav-link filter" data-filter=".asus">ASUS</button>
<button class="nav-link filter" data-filter=".nanopi">NanoPi</button>
<button class="nav-link filter" data-filter=".orangepi">Orange Pi</button>
<button class="nav-link filter" data-filter=".riscv">RISC-V</button>
<button class="nav-link filter" data-filter=".x86_64">PC/VM</button>
<button class="nav-link filter" data-filter=".other">Other</button>
</nav>
<div id="raspberrypi1" class="single-project">
<div class="row"><div class="col-md-12 project-title"><h3>Raspberry Pi 1/Zero (1)</h3><span class="close"></span></div></div>
<div class="row">
<div class="col-md-6 project-description">
<div class="project-info">
<div><span>CPU:</span>BCM2708 900/1000 MHz | 1 Core | ARMv6</div>
<div><span>RAM:</span>256 MiB - 512 MiB LPDDR2</div>
<br>
<div><a href="https://dietpi.com/downloads/images/DietPi_RPi-ARMv6-Bookworm.img.xz"><span>Download Image:</span><i class="fa fa-download"></i><u>Download</u></a> (<a href="https://dietpi.com/downloads/images/DietPi_RPi-ARMv6-Bookworm.img.xz.sha256"><u>SHA256</u></a>) (<a href="https://dietpi.com/downloads/images/DietPi_RPi-ARMv6-Bookworm.img.xz.asc"><u>Signature</u></a>)</div>
<div><a href="https://dietpi.com/docs/install/" target="_blank" rel="noopener"><span>How to install / Details:</span><i class="fa fa-book"></i><u>View</u></a></div>
<div>
<a href="https://dietpi.com/downloads/images/DietPi_RPi-ARMv6-Bookworm_Amiberry.img.xz"><span>Amiberry image:</span><i class="fa fa-download"></i><u>Download</u></a> (<a href="https://dietpi.com/downloads/images/DietPi_RPi-ARMv6-Bookworm_Amiberry.img.xz.sha256"><u>SHA256</u></a>) (<a href="https://dietpi.com/downloads/images/DietPi_RPi-ARMv6-Bookworm_Amiberry.img.xz.asc"><u>Signature</u></a>)
<br>This image installs and boots into <a href="https://dietpi.com/docs/software/gaming/#amiberry" target="_blank" rel="noopener" style="text-decoration-line:underline;">Amiberry</a> automatically on first boot.
</div>
<div>
<a href="https://dietpi.com/downloads/images/DietPi_RPi-ARMv6-Bookworm_AlloGUI.img.xz"><span>Allo GUI image:</span><i class="fa fa-download"></i><u>Download</u></a> (<a href="https://dietpi.com/downloads/images/DietPi_RPi-ARMv6-Bookworm_AlloGUI.img.xz.sha256"><u>SHA256</u></a>) (<a href="https://dietpi.com/downloads/images/DietPi_RPi-ARMv6-Bookworm_AlloGUI.img.xz.asc"><u>Signature</u></a>)
<br>This image has our <a href="https://dietpi.com/forum/t/dietpi-allo-com-web-gui-image/1523" target="_blank" rel="noopener" style="text-decoration-line:underline;">Allo web GUI</a> and audiophile software pre-installed.
</div>
<div>
<span>Bullseye images:</span>
<br>We provide images based on the older Debian Bullseye release as well, as not all software in our catalogue is compatible with Debian Bookworm yet. All info about this can be found <a href="https://dietpi.com/blog/?p=3128" target="_blank" rel="noopener">here</a>.
</div>
</div>
<p>These images are compatible with all Raspberry Pi models, but we recommend it only for Raspberry Pi 1 and Zero (1) models.</p>
</div>
<div class="col-md-6"><img src="images/sbc_images/raspberrypi1.jpg" alt="Raspberry Pi 1 photo" width="8" height="5" loading="lazy"></div>
</div>
</div>
<div id="raspberrypi2" class="single-project">
<div class="row"><div class="col-md-12 project-title"><h3>Raspberry Pi 2 PCB v1.1</h3><span class="close"></span></div></div>
<div class="row">
<div class="col-md-6 project-description">
<div class="project-info">
<div><span>CPU:</span>BCM2709 900 MHz | 4 Cores | ARMv7</div>
<div><span>RAM:</span>1 GiB LPDDR2</div>
<br>
<div><a href="https://dietpi.com/downloads/images/DietPi_RPi-ARMv7-Bookworm.img.xz"><span>Download Image:</span><i class="fa fa-download"></i><u>Download</u></a> (<a href="https://dietpi.com/downloads/images/DietPi_RPi-ARMv7-Bookworm.img.xz.sha256"><u>SHA256</u></a>) (<a href="https://dietpi.com/downloads/images/DietPi_RPi-ARMv7-Bookworm.img.xz.asc"><u>Signature</u></a>)</div>
<div><a href="https://dietpi.com/docs/install/" target="_blank" rel="noopener"><span>How to install / Details:</span><i class="fa fa-book"></i><u>View</u></a></div>
<div>
<a href="https://dietpi.com/downloads/images/DietPi_RPi-ARMv7-Bookworm_Amiberry.img.xz"><span>Amiberry image:</span><i class="fa fa-download"></i><u>Download</u></a> (<a href="https://dietpi.com/downloads/images/DietPi_RPi-ARMv7-Bookworm_Amiberry.img.xz.sha256"><u>SHA256</u></a>) (<a href="https://dietpi.com/downloads/images/DietPi_RPi-ARMv7-Bookworm_Amiberry.img.xz.asc"><u>Signature</u></a>)
<br>This image installs and boots into <a href="https://dietpi.com/docs/software/gaming/#amiberry" target="_blank" rel="noopener" style="text-decoration-line:underline;">Amiberry</a> automatically on first boot.
</div>
<div>
<a href="https://dietpi.com/downloads/images/DietPi_RPi-ARMv7-Bookworm_AlloGUI.img.xz"><span>Allo GUI image:</span><i class="fa fa-download"></i><u>Download</u></a> (<a href="https://dietpi.com/downloads/images/DietPi_RPi-ARMv7-Bookworm_AlloGUI.img.xz.sha256"><u>SHA256</u></a>) (<a href="https://dietpi.com/downloads/images/DietPi_RPi-ARMv7-Bookworm_AlloGUI.img.xz.asc"><u>Signature</u></a>)
<br>This image has our <a href="https://dietpi.com/forum/t/dietpi-allo-com-web-gui-image/1523" target="_blank" rel="noopener" style="text-decoration-line:underline;">Allo web GUI</a> and audiophile software pre-installed.
</div>
<div>
<span>Bullseye images:</span>
<br>We provide images based on the older Debian Bullseye release as well, as not all software in our catalogue is compatible with Debian Bookworm yet. All info about this can be found <a href="https://dietpi.com/blog/?p=3128" target="_blank" rel="noopener">here</a>.
</div>
</div>
<p>
These images are compatible with all Raspberry Pi 2, 3 and 4 models, but we recommend it only for Raspberry Pi 2 PCB v1.1, or if you require a 32-bit system explicitly.
<br>The Raspberry Pi 2 comes in two versions, which is printed onto the PCB. PCB v1.1 has an ARMv7 chip, hence needs to use this image, PCB v1.2 can use the ARMv8 image, which we then generally recommend.
</p>
</div>
<div class="col-md-6"><img src="images/sbc_images/raspberrypi2.jpg" alt="Raspberry Pi 2 photo" width="8" height="5" loading="lazy"></div>
</div>
</div>
<div id="raspberrypi4" class="single-project">
<div class="row"><div class="col-md-12 project-title"><h3>Raspberry Pi 2/3/4/Zero 2</h3><span class="close"></span></div></div>
<div class="row">
<div class="col-md-6 project-description">
<div class="project-info">
<div><span>CPU:</span>BCM2710/2711 900-1800 MHz | 4 Cores | ARMv8</div>
<div><span>RAM:</span>1 GiB LPDDR2 - 8 GiB LPDDR4</div>
<br>
<div><a href="https://dietpi.com/downloads/images/DietPi_RPi-ARMv8-Bookworm.img.xz"><span>Download Image:</span><i class="fa fa-download"></i><u>Download</u></a> (<a href="https://dietpi.com/downloads/images/DietPi_RPi-ARMv8-Bookworm.img.xz.sha256"><u>SHA256</u></a>) (<a href="https://dietpi.com/downloads/images/DietPi_RPi-ARMv8-Bookworm.img.xz.asc"><u>Signature</u></a>)</div>
<div><a href="https://dietpi.com/docs/install/" target="_blank" rel="noopener"><span>How to install / Details:</span><i class="fa fa-book"></i><u>View</u></a></div>
<div>
<a href="https://dietpi.com/downloads/images/DietPi_RPi-ARMv8-Bookworm_Amiberry.img.xz"><span>Amiberry image:</span><i class="fa fa-download"></i><u>Download</u></a> (<a href="https://dietpi.com/downloads/images/DietPi_RPi-ARMv8-Bookworm_Amiberry.img.xz.sha256"><u>SHA256</u></a>) (<a href="https://dietpi.com/downloads/images/DietPi_RPi-ARMv8-Bookworm_Amiberry.img.xz.asc"><u>Signature</u></a>)
<br>This image installs and boots into <a href="https://dietpi.com/docs/software/gaming/#amiberry" target="_blank" rel="noopener" style="text-decoration-line:underline;">Amiberry</a> automatically on first boot.
</div>
<div>
<a href="https://dietpi.com/downloads/images/DietPi_RPi-ARMv8-Bookworm_AlloGUI.img.xz"><span>Allo GUI image:</span><i class="fa fa-download"></i><u>Download</u></a> (<a href="https://dietpi.com/downloads/images/DietPi_RPi-ARMv8-Bookworm_AlloGUI.img.xz.sha256"><u>SHA256</u></a>) (<a href="https://dietpi.com/downloads/images/DietPi_RPi-ARMv8-Bookworm_AlloGUI.img.xz.asc"><u>Signature</u></a>)
<br>This image has our <a href="https://dietpi.com/forum/t/dietpi-allo-com-web-gui-image/1523" target="_blank" rel="noopener" style="text-decoration-line:underline;">Allo web GUI</a> and audiophile software pre-installed.
</div>
<div>
<span>Bullseye images:</span>
<br>We provide images based on the older Debian Bullseye release as well, as not all software in our catalogue is compatible with Debian Bookworm yet. All info about this can be found <a href="https://dietpi.com/blog/?p=3128" target="_blank" rel="noopener">here</a>.
</div>
</div>
<p>
These images are compatible with all Raspberry Pi 3 and 4 models, as well as Raspberry Pi 2 PCB v1.2 and Zero 2.
<br>The Raspberry Pi 2 comes in two versions, which is printed onto the PCB. PCB v1.1 has an ARMv7 chip, hence needs to use the ARMv7 image, PCB v1.2 can use this ARMv8 image, which we then generally recommend.
</p>
</div>
<div class="col-md-6"><img src="images/sbc_images/raspberrypi4.jpg" alt="Raspberry Pi 4 photo" width="8" height="5" loading="lazy"></div>
</div>
</div>
<div id="raspberrypi5" class="single-project">
<div class="row"><div class="col-md-12 project-title"><h3>Raspberry Pi 5 (testing)</h3><span class="close"></span></div></div>
<div class="row">
<div class="col-md-6 project-description">
<div class="project-info">
<div><span>CPU:</span>BCM2712 2.4 GHz | 4 Cores | ARMv8</div>
<div><span>RAM:</span>4 - 8 GiB LPDDR4</div>
<br>
<div><a href="https://dietpi.com/downloads/images/testing/DietPi_RPi5-ARMv8-Bookworm.img.xz"><span>Download Image:</span><i class="fa fa-download"></i><u>Download</u></a> (<a href="https://dietpi.com/downloads/images/testing/DietPi_RPi5-ARMv8-Bookworm.img.xz.sha256"><u>SHA256</u></a>) (<a href="https://dietpi.com/downloads/images/testing/DietPi_RPi5-ARMv8-Bookworm.img.xz.asc"><u>Signature</u></a>)</div>
<div><a href="https://dietpi.com/docs/install/" target="_blank" rel="noopener"><span>How to install / Details:</span><i class="fa fa-book"></i><u>View</u></a></div>
</div>
<p>Not all hardware features, especially overclocking, display and camera settings, can be controlled with our scripts yet. Legacy GPU and camera support, MMAL and DispmanX have been removed, which breaks some older camera software. Details can be found <a href="https://github.com/MichaIng/DietPi/issues/6676" target="_blank" rel="noopener">here</a></p>
</div>
<div class="col-md-6"><img src="images/sbc_images/raspberrypi5.jpg" alt="Raspberry Pi 5 photo" width="8" height="5" loading="lazy"></div>
</div>
</div>
<div id="odroidc1" class="single-project">
<div class="row"><div class="col-md-12 project-title"><h3>Odroid C1</h3><span class="close"></span></div></div>
<div class="row">
<div class="col-md-6 project-description">
<div class="project-info">
<div><span>CPU:</span>Amlogic S805 1.5 GHz | 4 cores | ARMv7</div>
<div><span>RAM:</span>1 GiB DDR3</div>
<div>
<span>Known issues:</span>No HDMI output, serial console only<br>
<span></span>No eMMC support, limited USB hot-plug support
</div>
<br>
<div><a href="https://dietpi.com/downloads/images/DietPi_OdroidC1-ARMv7-Bookworm.img.xz"><span>Download Image:</span><i class="fa fa-download"></i><u>Download</u></a> (<a href="https://dietpi.com/downloads/images/DietPi_OdroidC1-ARMv7-Bookworm.img.xz.sha256"><u>SHA256</u></a>) (<a href="https://dietpi.com/downloads/images/DietPi_OdroidC1-ARMv7-Bookworm.img.xz.asc"><u>Signature</u></a>)</div>
<div><a href="https://dietpi.com/docs/install/" target="_blank" rel="noopener"><span>How to install / Details:</span><i class="fa fa-book"></i><u>View</u></a></div>
<div>
<span>Bullseye images:</span>
<br>We provide images based on the older Debian Bullseye release as well, as not all software in our catalogue is compatible with Debian Bookworm yet. All info about this can be found <a href="https://dietpi.com/blog/?p=3128" target="_blank" rel="noopener">here</a>.
</div>
</div>
<p>The Odroid C1 is esteemed to be the most powerful low-cost single board computer available, as well as being an extremely versatile device. Featuring a quad-core Amlogic processor, advanced Mali GPU, and Gigabit Ethernet, it can function as a home theater set-top box, a general purpose computer for web browsing, gaming and socializing, a compact tool for college or office work, a prototyping device for hardware tinkering, a controller for home automation, a workstation for software development, and much more.</p>
</div>
<div class="col-md-6"><img src="images/sbc_images/odroidc1.jpg" alt="Odroid C1 photo" width="8" height="5" loading="lazy"></div>
</div>
</div>
<div id="odroidc2" class="single-project">
<div class="row"><div class="col-md-12 project-title"><h3>Odroid C2</h3><span class="close"></span></div></div>
<div class="row">
<div class="col-md-6 project-description">
<div class="project-info">
<div><span>CPU:</span>Amlogic S905 1.54 GHz | 4 cores | ARMv8</div>
<div><span>RAM:</span>2 GiB DDR3</div>
<br>
<div><a href="https://dietpi.com/downloads/images/DietPi_OdroidC2-ARMv8-Bookworm.img.xz"><span>Download Image:</span><i class="fa fa-download"></i><u>Download</u></a> (<a href="https://dietpi.com/downloads/images/DietPi_OdroidC2-ARMv8-Bookworm.img.xz.sha256"><u>SHA256</u></a>) (<a href="https://dietpi.com/downloads/images/DietPi_OdroidC2-ARMv8-Bookworm.img.xz.asc"><u>Signature</u></a>)</div>
<div><a href="https://dietpi.com/docs/install/" target="_blank" rel="noopener"><span>How to install / Details:</span><i class="fa fa-book"></i><u>View</u></a></div>
<div>
<span>Bullseye images:</span>
<br>We provide images based on the older Debian Bullseye release as well, as not all software in our catalogue is compatible with Debian Bookworm yet. All info about this can be found <a href="https://dietpi.com/blog/?p=3128" target="_blank" rel="noopener">here</a>.
</div>
</div>
<p>In our eyes, the Odroid C2 is the best "all round" SBC on the market today. Exceptional CPU and LAN performance which is great for multiple uses. Couple the C2 with an eMMC module and you'll experience next-level SBC filesystem performance at up to 140 MiB/s transfer rates. The C2 is innovative SBC perfection, and, because of its excellent all round performance, we even have a few dedicated to daily DietPi testing.</p>
</div>
<div class="col-md-6"><img src="images/sbc_images/odroidc2.jpg" alt="Odroid C2 photo" width="8" height="5" loading="lazy"></div>
</div>
</div>
<div id="odroidxu3" class="single-project">
<div class="row"><div class="col-md-12 project-title"><h3>Odroid XU3/XU4/MC1/HC1/HC2</h3><span class="close"></span></div></div>
<div class="row">
<div class="col-md-6 project-description">
<div class="project-info">
<div><span>CPU:</span>Samsung Exynos5422 2.0/1.4 GHz | 8 cores | ARMv8</div>
<div><span>RAM:</span>2 GiB DDR3</div>
<br>
<div><a href="https://dietpi.com/downloads/images/DietPi_OdroidXU4-ARMv7-Bookworm.img.xz"><span>Download Image:</span><i class="fa fa-download"></i><u>Download</u></a> (<a href="https://dietpi.com/downloads/images/DietPi_OdroidXU4-ARMv7-Bookworm.img.xz.sha256"><u>SHA256</u></a>) (<a href="https://dietpi.com/downloads/images/DietPi_OdroidXU4-ARMv7-Bookworm.img.xz.asc"><u>Signature</u></a>)</div>
<div><a href="https://dietpi.com/docs/install/" target="_blank" rel="noopener"><span>How to install / Details:</span><i class="fa fa-book"></i><u>View</u></a></div>
<div>
<span>Bullseye images:</span>
<br>We provide images based on the older Debian Bullseye release as well, as not all software in our catalogue is compatible with Debian Bookworm yet. All info about this can be found <a href="https://dietpi.com/blog/?p=3128" target="_blank" rel="noopener">here</a>.
</div>
</div>
<p>The XU4 is a powerhouse performance monster SBC and features USB 3.0, which makes it great for a NAS system. However, the XU4 does suffer from excessive heat at full load, you can expect 3-5 seconds at full load, before thermal throttling kicks in @ 95 °C and reduces clocks. Aside from this, the XU4 is one of the most powerful SBC on the market today and features a much welcomed USB 3.0 support. It also looks great with Odroid-CloudShell and DietPi-CloudShell stats!</p>
</div>
<div class="col-md-6"><img src="images/sbc_images/odroidxu4.jpg" alt="Odroid XU4 photo" width="8" height="5" loading="lazy"></div>
</div>
</div>
<div id="pinea64" class="single-project">
<div class="row"><div class="col-md-12 project-title"><h3>PINE A64</h3><span class="close"></span></div></div>
<div class="row">
<div class="col-md-6 project-description">
<div class="project-info">
<div><span>CPU:</span>Allwinner A64 1.2 GHz | 4 cores | ARMv8</div>
<div><span>RAM:</span>512 MiB - 2 GiB DDR3</div>
<div><span>NET:</span>Gbit Ethernet</div>
<br>
<div><a href="https://dietpi.com/downloads/images/DietPi_PINEA64-ARMv8-Bookworm.img.xz"><span>Download Image:</span><i class="fa fa-download"></i><u>Download</u></a> (<a href="https://dietpi.com/downloads/images/DietPi_PINEA64-ARMv8-Bookworm.img.xz.sha256"><u>SHA256</u></a>) (<a href="https://dietpi.com/downloads/images/DietPi_PINEA64-ARMv8-Bookworm.img.xz.asc"><u>Signature</u></a>)</div>
<div><a href="https://dietpi.com/docs/install/" target="_blank" rel="noopener"><span>How to install / Details:</span><i class="fa fa-book"></i><u>View</u></a></div>
<div>
<span>Bullseye images:</span>
<br>We provide images based on the older Debian Bullseye release as well, as not all software in our catalogue is compatible with Debian Bookworm yet. All info about this can be found <a href="https://dietpi.com/blog/?p=3128" target="_blank" rel="noopener">here</a>.
</div>
</div>
<p>PINE A64 was the worlds first "kickstarted" SBC (AFAIK). Featuring a 64-bit CPU and up to 2 GiB RAM with Gbit Ethernet. The PINE A64 shows promise for future kickstarted SBCs, albeit, the PINE A64 board is somewhat cumbersome.</p>
</div>
<div class="col-md-6"><img src="images/sbc_images/pinea64.jpg" alt="PINE A64 photo" width="8" height="5" loading="lazy"></div>
</div>
</div>
<div id="nanopineo" class="single-project">
<div class="row"><div class="col-md-12 project-title"><h3>NanoPi NEO</h3><span class="close"></span></div></div>
<div class="row">
<div class="col-md-6 project-description">
<div class="project-info">
<div><span>CPU:</span>Allwinner H3 1.2 GHz | 4 cores | ARMv7</div>
<div><span>RAM:</span>256 MiB - 512 MiB DDR3</div>
<div><span>NET:</span>100 Mbit Ethernet</div>
<br>
<div><a href="https://dietpi.com/downloads/images/DietPi_NanoPiNEO-ARMv7-Bookworm.img.xz"><span>Download Image:</span><i class="fa fa-download"></i><u>Download</u></a> (<a href="https://dietpi.com/downloads/images/DietPi_NanoPiNEO-ARMv7-Bookworm.img.xz.sha256"><u>SHA256</u></a>) (<a href="https://dietpi.com/downloads/images/DietPi_NanoPiNEO-ARMv7-Bookworm.img.xz.asc"><u>Signature</u></a>)</div>
<div><a href="https://dietpi.com/docs/install/" target="_blank" rel="noopener"><span>How to install / Details:</span><i class="fa fa-book"></i><u>View</u></a></div>
<div>
<span>Bullseye images:</span>
<br>We provide images based on the older Debian Bullseye release as well, as not all software in our catalogue is compatible with Debian Bookworm yet. All info about this can be found <a href="https://dietpi.com/blog/?p=3128" target="_blank" rel="noopener">here</a>.
</div>
</div>
<p>Small SBC with lots of features.</p>
</div>
<div class="col-md-6"><img src="images/sbc_images/nanopineo.jpg" alt="NanoPi NEO photo" width="8" height="5" loading="lazy"></div>
</div>
</div>
<div id="nanopineoair" class="single-project">
<div class="row"><div class="col-md-12 project-title"><h3>NanoPi NEO Air</h3><span class="close"></span></div></div>
<div class="row">
<div class="col-md-6 project-description">
<div class="project-info">
<div><span>CPU:</span>Allwinner H3 1.2 GHz | 4 cores | ARMv7</div>
<div><span>RAM:</span>512 MiB DDR3</div>
<div><span>NET:</span>Onboard WiFi 4 (802.11n)</div>
<div><span>Storage:</span>8 GiB eMMC</div>
<br>
<div><a href="https://dietpi.com/downloads/images/DietPi_NanoPiNEOAir-ARMv7-Bookworm.img.xz"><span>Download Image:</span><i class="fa fa-download"></i><u>Download</u></a> (<a href="https://dietpi.com/downloads/images/DietPi_NanoPiNEOAir-ARMv7-Bookworm.img.xz.sha256"><u>SHA256</u></a>) (<a href="https://dietpi.com/downloads/images/DietPi_NanoPiNEOAir-ARMv7-Bookworm.img.xz.asc"><u>Signature</u></a>)</div>
<div><a href="https://dietpi.com/docs/install/" target="_blank" rel="noopener"><span>How to install / Details:</span><i class="fa fa-book"></i><u>View</u></a></div>
<div>
<span>Bullseye images:</span>
<br>We provide images based on the older Debian Bullseye release as well, as not all software in our catalogue is compatible with Debian Bookworm yet. All info about this can be found <a href="https://dietpi.com/blog/?p=3128" target="_blank" rel="noopener">here</a>.
</div>
</div>
<p>Small SBC with lots of features.</p>
</div>
<div class="col-md-6"><img src="images/sbc_images/nanopineoair.jpg" alt="NanoPi NEO Air photo" width="8" height="5" loading="lazy"></div>
</div>
</div>
<div id="nanopim1" class="single-project">
<div class="row"><div class="col-md-12 project-title"><h3>NanoPi M1</h3><span class="close"></span></div></div>
<div class="row">
<div class="col-md-6 project-description">
<div class="project-info">
<div><span>CPU:</span>Allwinner H3 1.2 GHz | 4 cores | ARMv7</div>
<div><span>RAM:</span>512 MiB - 1 GiB DDR3</div>
<div><span>NET:</span>100 Mbit Ethernet</div>
<br>
<div><a href="https://dietpi.com/downloads/images/DietPi_NanoPiM1-ARMv7-Bookworm.img.xz"><span>Download Image:</span><i class="fa fa-download"></i><u>Download</u></a> (<a href="https://dietpi.com/downloads/images/DietPi_NanoPiM1-ARMv7-Bookworm.img.xz.sha256"><u>SHA256</u></a>) (<a href="https://dietpi.com/downloads/images/DietPi_NanoPiM1-ARMv7-Bookworm.img.xz.asc"><u>Signature</u></a>)</div>
<div><a href="https://dietpi.com/docs/install/" target="_blank" rel="noopener"><span>How to install / Details:</span><i class="fa fa-book"></i><u>View</u></a></div>
<div>
<span>Bullseye images:</span>
<br>We provide images based on the older Debian Bullseye release as well, as not all software in our catalogue is compatible with Debian Bookworm yet. All info about this can be found <a href="https://dietpi.com/blog/?p=3128" target="_blank" rel="noopener">here</a>.
</div>
</div>
<p>Small SBC with lots of features.</p>
</div>
<div class="col-md-6"><img src="images/sbc_images/nanopim1.jpg" alt="NanoPi M1 photo" width="8" height="5" loading="lazy"></div>
</div>
</div>
<div id="nanopim2" class="single-project">
<div class="row"><div class="col-md-12 project-title"><h3>NanoPi M2/T2</h3><span class="close"></span></div></div>
<div class="row">
<div class="col-md-6 project-description">
<div class="project-info">
<div><span>CPU:</span>Samsung S5P4418 1.4 GHz | 4 cores | ARMv7</div>
<div><span>RAM:</span>1 GiB DDR3</div>
<div><span>NET:</span>Gbit Ethernet</div>
<br>
<div><a href="https://dietpi.com/downloads/images/DietPi_NanoPiM2-ARMv7-Bullseye.img.xz"><span>Download Image:</span><i class="fa fa-download"></i><u>Download</u></a> (<a href="https://dietpi.com/downloads/images/DietPi_NanoPiM2-ARMv7-Bullseye.img.xz.sha256"><u>SHA256</u></a>) (<a href="https://dietpi.com/downloads/images/DietPi_NanoPiM2-ARMv7-Bullseye.img.xz.asc"><u>Signature</u></a>)</div>
<div><a href="https://dietpi.com/docs/install/" target="_blank" rel="noopener"><span>How to install / Details:</span><i class="fa fa-book"></i><u>View</u></a></div>
</div>
<p>Small SBC with lots of features.</p>
</div>
<div class="col-md-6"><img src="images/sbc_images/nanopim2.jpg" alt="NanoPi M2 photo" width="8" height="5" loading="lazy"></div>
</div>
</div>
<div id="nanopim3" class="single-project">
<div class="row"><div class="col-md-12 project-title"><h3>NanoPi M3/T3</h3><span class="close"></span></div></div>
<div class="row">
<div class="col-md-6 project-description">
<div class="project-info">
<div><span>CPU:</span>Samsung S5P6818 1.4 GHz | 8 cores | ARMv8</div>
<div><span>RAM:</span>2 GiB DDR3</div>
<div><span>NET:</span>Gbit Ethernet, WiFi, Bluetooth</div>
<br>
<div><a href="https://dietpi.com/downloads/images/DietPi_NanoPiM3-ARMv8-Bullseye.img.xz"><span>Download Image:</span><i class="fa fa-download"></i><u>Download</u></a> (<a href="https://dietpi.com/downloads/images/DietPi_NanoPiM3-ARMv8-Bullseye.img.xz.sha256"><u>SHA256</u></a>) (<a href="https://dietpi.com/downloads/images/DietPi_NanoPiM3-ARMv8-Bullseye.img.xz.asc"><u>Signature</u></a>)</div>
<div><a href="https://dietpi.com/docs/install/" target="_blank" rel="noopener"><span>How to install / Details:</span><i class="fa fa-book"></i><u>View</u></a></div>
</div>
<p>Small SBC with lots of features. 8 core powerhouse, great for multi-threaded programs like Plex Media Server</p>
</div>
<div class="col-md-6"><img src="images/sbc_images/nanopim3.jpg" alt="NanoPi M3 photo" width="8" height="5" loading="lazy"></div>
</div>
</div>
<div id="pinebook" class="single-project">
<div class="row"><div class="col-md-12 project-title"><h3>Pinebook</h3><span class="close"></span></div></div>
<div class="row">
<div class="col-md-6 project-description">
<div class="project-info">
<div><span>CPU:</span>Allwinner A64 1.1 GHz | 4 cores | ARMv8</div>
<div><span>RAM:</span>2 GiB DDR3</div>
<div><span>NET:</span>WiFi</div>
<div><span>Storage:</span>eMMC</div>
<br>
<div><a href="https://dietpi.com/downloads/images/DietPi_Pinebook-ARMv8-Bookworm.img.xz"><span>Download Image:</span><i class="fa fa-download"></i><u>Download</u></a> (<a href="https://dietpi.com/downloads/images/DietPi_Pinebook-ARMv8-Bookworm.img.xz.sha256"><u>SHA256</u></a>) (<a href="https://dietpi.com/downloads/images/DietPi_Pinebook-ARMv8-Bookworm.img.xz.asc"><u>Signature</u></a>)</div>
<div><a href="https://dietpi.com/docs/install/" target="_blank" rel="noopener"><span>How to install / Details:</span><i class="fa fa-book"></i><u>View</u></a></div>
<div>
<span>Bullseye images:</span>
<br>We provide images based on the older Debian Bullseye release as well, as not all software in our catalogue is compatible with Debian Bookworm yet. All info about this can be found <a href="https://dietpi.com/blog/?p=3128" target="_blank" rel="noopener">here</a>.
</div>
</div>
<p>The Pinebook is a phenomenal Linux laptop with exceptional build quality that rivals £300+ laptops. The unit is fitted with an exceptionally bright 1080p IPS screen, eMMC and onboard WiFi.</p>
<p>When considering all this only costs $99, you'd be silly not to pick one up. Highly recommended for anyone who loves SBCs with an expected light workload use. An ARM laptop done right, and then some!</p>
</div>
<div class="col-md-6"><img src="images/sbc_images/pinebook.jpg" alt="Pinebook photo" width="8" height="5" loading="lazy"></div>
</div>
</div>
<div id="hyperv" class="single-project">
<div class="row"><div class="col-md-12 project-title"><h3>Hyper-V</h3><span class="close"></span></div></div>
<div class="row">
<div class="col-md-6 project-description">
<div class="project-info">
<div><span>RAM:</span>1 GiB | Can be changed</div>
<br>
<div><a href="https://dietpi.com/downloads/images/DietPi_Hyper-V-x86_64-Bookworm.vhdx.xz"><span>Download Image:</span><i class="fa fa-download"></i><u>Download</u></a> (<a href="https://dietpi.com/downloads/images/DietPi_Hyper-V-x86_64-Bookworm.vhdx.xz.sha256"><u>SHA256</u></a>) (<a href="https://dietpi.com/downloads/images/DietPi_Hyper-V-x86_64-Bookworm.vhdx.xz.asc"><u>Signature</u></a>)</div>
<div><a href="https://dietpi.com/docs/install/" target="_blank" rel="noopener"><span>How to install / Details:</span><i class="fa fa-book"></i><u>View</u></a></div>
</div>
<p>The Hyper-V virtual machine is great for those occasions where SBC performance just isn't enough. Run one of these on any x86_64 PC/server and still get the same great DietPi features and experience.</p>
<p>We provide images based on the older Debian Bullseye release as well, as not all software in our catalogue is compatible with Debian Bookworm yet. All info about this can be found <a href="https://dietpi.com/blog/?p=3128" target="_blank" rel="noopener">here</a>.</p>
</div>
<div class="col-md-6"><img src="images/sbc_images/hyperv.jpg" alt="Hyper-V logo" width="8" height="5" loading="lazy"></div>
</div>
</div>
<div id="parallels" class="single-project">
<div class="row"><div class="col-md-12 project-title"><h3>Parallels</h3><span class="close"></span></div></div>
<div class="row">
<div class="col-md-6 project-description">
<div class="project-info">
<div><span>RAM:</span>1 GiB | Can be changed</div>
<br>
<div><a href="https://dietpi.com/downloads/images/DietPi_VMX-x86_64-Bookworm.tar.xz"><span>Download Image:</span><i class="fa fa-download"></i><u>Download</u></a> (<a href="https://dietpi.com/downloads/images/DietPi_VMX-x86_64-Bookworm.tar.xz.sha256"><u>SHA256</u></a>) (<a href="https://dietpi.com/downloads/images/DietPi_VMX-x86_64-Bookworm.tar.xz.asc"><u>Signature</u></a>)</div>
<div><a href="https://dietpi.com/docs/install/" target="_blank" rel="noopener"><span>How to install / Details:</span><i class="fa fa-book"></i><u>View</u></a></div>
<div>
<span>Bullseye images:</span>
<br>We provide images based on the older Debian Bullseye release as well, as not all software in our catalogue is compatible with Debian Bookworm yet. All info about this can be found <a href="https://dietpi.com/blog/?p=3128" target="_blank" rel="noopener">here</a>.
</div>
</div>
<p>The Parallels virtual machine is great for those occasions where SBC performance just isn't enough. Run one of these on any x86_64 PC/server and still get the same great DietPi features and experience.</p>
</div>
<div class="col-md-6"><img src="images/sbc_images/parallels.svg" alt="Parallels logo" width="8" height="5" loading="lazy"></div>
</div>
</div>
<div id="utm" class="single-project">
<div class="row"><div class="col-md-12 project-title"><h3>UTM</h3><span class="close"></span></div></div>
<div class="row">
<div class="col-md-6 project-description">
<div class="project-info">
<div><span>RAM:</span>1 GiB | Can be changed</div>
<br>
<div><a href="https://dietpi.com/downloads/images/DietPi_UTM-x86_64-Bookworm.tar.xz"><span>Download Image:</span><i class="fa fa-download"></i><u>Download</u></a> (<a href="https://dietpi.com/downloads/images/DietPi_UTM-x86_64-Bookworm.tar.xz.sha256"><u>SHA256</u></a>) (<a href="https://dietpi.com/downloads/images/DietPi_UTM-x86_64-Bookworm.tar.xz.asc"><u>Signature</u></a>)</div>
<div><a href="https://dietpi.com/docs/install/" target="_blank" rel="noopener"><span>How to install / Details:</span><i class="fa fa-book"></i><u>View</u></a></div>
<div>
<span>Bullseye images:</span>
<br>We provide images based on the older Debian Bullseye release as well, as not all software in our catalogue is compatible with Debian Bookworm yet. All info about this can be found <a href="https://dietpi.com/blog/?p=3128" target="_blank" rel="noopener">here</a>.
</div>
</div>
<p>The UTM virtual machine is great for those occasions where SBC performance just isn't enough. Run one of these on any x86_64 PC/server and still get the same great DietPi features and experience.</p>
</div>
<div class="col-md-6"><img src="images/sbc_images/utm.png" alt="UTM logo" width="8" height="5" loading="lazy"></div>
</div>
</div>
<div id="proxmox" class="single-project">
<div class="row"><div class="col-md-12 project-title"><h3>Proxmox</h3><span class="close"></span></div></div>
<div class="row">
<div class="col-md-6 project-description">
<div class="project-info">
<div><span>ARCH:</span>x86_64</div>
<br>
<div><a href="https://dietpi.com/downloads/images/DietPi_Proxmox-x86_64-Bookworm.qcow2.xz"><span>Download Image:</span><i class="fa fa-download"></i><u>Download</u></a> (<a href="https://dietpi.com/downloads/images/DietPi_Proxmox-x86_64-Bookworm.qcow2.xz.sha256"><u>SHA256</u></a>) (<a href="https://dietpi.com/downloads/images/DietPi_Proxmox-x86_64-Bookworm.qcow2.xz.asc"><u>Signature</u></a>)</div>
<div><a href="https://dietpi.com/docs/install/" target="_blank" rel="noopener"><span>How to install / Details:</span><i class="fa fa-book"></i><u>View</u></a></div>
<div>
<span>Bullseye images:</span>
<br>We provide images based on the older Debian Bullseye release as well, as not all software in our catalogue is compatible with Debian Bookworm yet. All info about this can be found <a href="https://dietpi.com/blog/?p=3128" target="_blank" rel="noopener">here</a>.
</div>
</div>
<p>The Proxmox virtual machine is great for those occasions where SBC performance just isn't enough. Run one of these on any x86_64 PC/server and still get the same great DietPi features and experience.</p>
</div>
<div class="col-md-6"><img src="images/sbc_images/proxmox.svg" alt="Proxmox logo" width="8" height="5" loading="lazy"></div>
</div>
</div>
<div id="odroidn2" class="single-project">
<div class="row"><div class="col-md-12 project-title"><h3>Odroid N2(+)</h3><span class="close"></span></div></div>
<div class="row">
<div class="col-md-6 project-description">
<div class="project-info">
<div><span>CPU:</span>Amlogic S922X 2.0(2.4) GHz | 6 cores | ARMv8</div>
<div><span>RAM:</span>4 GiB DDR4 1320 MHz</div>
<div><span>NET:</span>Gbit Ethernet</div>
<div><span>Storage:</span>eMMC socket</div>
<br>
<div><a href="https://dietpi.com/downloads/images/DietPi_OdroidN2-ARMv8-Bookworm.img.xz"><span>Download Image:</span><i class="fa fa-download"></i><u>Download</u></a> (<a href="https://dietpi.com/downloads/images/DietPi_OdroidN2-ARMv8-Bookworm.img.xz.sha256"><u>SHA256</u></a>) (<a href="https://dietpi.com/downloads/images/DietPi_OdroidN2-ARMv8-Bookworm.img.xz.asc"><u>Signature</u></a>)</div>
<div><a href="https://dietpi.com/docs/install/" target="_blank" rel="noopener"><span>How to install / Details:</span><i class="fa fa-book"></i><u>View</u></a></div>
<div>
<span>Bullseye images:</span>
<br>We provide images based on the older Debian Bullseye release as well, as not all software in our catalogue is compatible with Debian Bookworm yet. All info about this can be found <a href="https://dietpi.com/blog/?p=3128" target="_blank" rel="noopener">here</a>.
</div>
</div>
<p>Hardkernel's next generation "high-end" SBC is finally here! It was the fastest ARM SBC we ever tested, until the first boards with Rockchip's RK3588 arrived. Excellent performance and thermals at a reasonable price range.</p>
</div>
<div class="col-md-6"><img src="images/sbc_images/odroidn2.jpg" alt="Odroid N2 photo" width="8" height="5" loading="lazy"></div>
</div>
</div>
<div id="vmware" class="single-project">
<div class="row"><div class="col-md-12 project-title"><h3>VMware/ESXi</h3><span class="close"></span></div></div>
<div class="row">
<div class="col-md-6 project-description">
<div class="project-info">
<div><span>RAM:</span>1 GiB | Can be changed</div>
<br>
<div>
<a href="https://dietpi.com/downloads/images/DietPi_VMX-x86_64-Bookworm.tar.xz"><span>VMX appliance:</span><i class="fa fa-download"></i><u>Download</u></a> (<a href="https://dietpi.com/downloads/images/DietPi_VMX-x86_64-Bookworm.tar.xz.sha256"><u>SHA256</u></a>) (<a href="https://dietpi.com/downloads/images/DietPi_VMX-x86_64-Bookworm.tar.xz.asc"><u>Signature</u></a>)
<br>This appliance can be used with <b>VMware Workstation Player/Pro</b> and <b>Fusion</b>.
</div>
<div>
<a href="https://dietpi.com/downloads/images/DietPi_ESXi-x86_64-Bookworm.ova.xz"><span>OVA appliance:</span><i class="fa fa-download"></i><u>Download</u></a> (<a href="https://dietpi.com/downloads/images/DietPi_ESXi-x86_64-Bookworm.ova.xz.sha256"><u>SHA256</u></a>) (<a href="https://dietpi.com/downloads/images/DietPi_ESXi-x86_64-Bookworm.ova.xz.asc"><u>Signature</u></a>)
<br>This appliance can be used with <b>VMware vSphere</b> and <b>ESXi</b>.
</div>
<div><a href="https://dietpi.com/docs/install/" target="_blank" rel="noopener"><span>How to install / Details:</span><i class="fa fa-book"></i><u>View</u></a></div>
<div>
<span>Bullseye images:</span>
<br>We provide images based on the older Debian Bullseye release as well, as not all software in our catalogue is compatible with Debian Bookworm yet. All info about this can be found <a href="https://dietpi.com/blog/?p=3128" target="_blank" rel="noopener">here</a>.
</div>
</div>
<p>The VMware virtual machine is great for those occasions where SBC performance just isn't enough. Run one of these on any x86_64 PC/server and still get the same great DietPi features and experience.</p>
</div>
<div class="col-md-6"><img src="images/sbc_images/vmware.jpg" alt="VMware logo" width="8" height="5" loading="lazy"></div>
</div>
</div>
<div id="virtualbox" class="single-project">
<div class="row"><div class="col-md-12 project-title"><h3>VirtualBox</h3><span class="close"></span></div></div>
<div class="row">
<div class="col-md-6 project-description">
<div class="project-info">
<div><span>RAM:</span>1 GiB | Can be changed</div>
<br>
<div><a href="https://dietpi.com/downloads/images/DietPi_VirtualBox-x86_64-Bookworm.ova.xz"><span>Download Image:</span><i class="fa fa-download"></i><u>Download</u></a> (<a href="https://dietpi.com/downloads/images/DietPi_VirtualBox-x86_64-Bookworm.ova.xz.sha256"><u>SHA256</u></a>) (<a href="https://dietpi.com/downloads/images/DietPi_VirtualBox-x86_64-Bookworm.ova.xz.asc"><u>Signature</u></a>)</div>
<div><a href="https://dietpi.com/docs/install/" target="_blank" rel="noopener"><span>How to install / Details:</span><i class="fa fa-book"></i><u>View</u></a></div>
<div>
<span>Bullseye images:</span>
<br>We provide images based on the older Debian Bullseye release as well, as not all software in our catalogue is compatible with Debian Bookworm yet. All info about this can be found <a href="https://dietpi.com/blog/?p=3128" target="_blank" rel="noopener">here</a>.
</div>
</div>
<p>The VirtualBox virtual machine is great for those occasions where SBC performance just isn't enough. Run one of these on any x86_64 PC/server and still get the same great DietPi features and experience.</p>
</div>
<div class="col-md-6"><img src="images/sbc_images/virtualbox.jpg" alt="VirtualBox logo" width="8" height="5" loading="lazy"></div>
</div>
</div>
<div id="rockpi4" class="single-project">
<div class="row"><div class="col-md-12 project-title"><h3>ROCK 4</h3><span class="close"></span></div></div>
<div class="row">
<div class="col-md-6 project-description">
<div class="project-info">
<div><span>CPU:</span>Rockchip RK3399 1.8/1.4 GHz | 6 cores | ARMv8</div>
<div><span>RAM:</span>1 GiB - 4 GiB LPDDR4@3200 MiB/s</div>
<div><span>NET:</span>Gbit Ethernet</div>
<div><span>Storage:</span>eMMC socket</div>
<br>
<div>
<a href="https://dietpi.com/downloads/images/DietPi_ROCKPi4-ARMv8-Bookworm.img.xz"><span>ROCK 4 Image:</span><i class="fa fa-download"></i><u>Download</u></a> (<a href="https://dietpi.com/downloads/images/DietPi_ROCKPi4-ARMv8-Bookworm.img.xz.sha256"><u>SHA256</u></a>) (<a href="https://dietpi.com/downloads/images/DietPi_ROCKPi4-ARMv8-Bookworm.img.xz.asc"><u>Signature</u></a>)
<br>This image supports the ROCK 4A/4B/4C and 4A/4B Plus variants, as far as it as been tested.
</div>
<div>
<a href="https://dietpi.com/downloads/images/DietPi_ROCK4SE-ARMv8-Bookworm.img.xz"><span>ROCK 4 SE Image:</span><i class="fa fa-download"></i><u>Download</u></a> (<a href="https://dietpi.com/downloads/images/DietPi_ROCK4SE-ARMv8-Bookworm.img.xz.sha256"><u>SHA256</u></a>) (<a href="https://dietpi.com/downloads/images/DietPi_ROCK4SE-ARMv8-Bookworm.img.xz.asc"><u>Signature</u></a>)
<br>This image supports the ROCK 4 SE variant only.
</div>
<div>
<a href="https://dietpi.com/downloads/images/DietPi_ROCK4CPlus-ARMv8-Bookworm.img.xz"><span>ROCK 4C Plus Image:</span><i class="fa fa-download"></i><u>Download</u></a> (<a href="https://dietpi.com/downloads/images/DietPi_ROCK4CPlus-ARMv8-Bookworm.img.xz.sha256"><u>SHA256</u></a>) (<a href="https://dietpi.com/downloads/images/DietPi_ROCK4CPlus-ARMv8-Bookworm.img.xz.asc"><u>Signature</u></a>)
<br>This image supports the ROCK 4C Plus variant only.
</div>
<div><a href="https://dietpi.com/docs/install/" target="_blank" rel="noopener"><span>How to install / Details:</span><i class="fa fa-book"></i><u>View</u></a></div>
<div>
<span>Bullseye images:</span>
<br>We provide images based on the older Debian Bullseye release as well, as not all software in our catalogue is compatible with Debian Bookworm yet. All info about this can be found <a href="https://dietpi.com/blog/?p=3128" target="_blank" rel="noopener">here</a>.
</div>
</div>
<p>Compared to other RK3399 SBCs, this one is small sized, like the Raspberry Pi.</p>
</div>
<div class="col-md-6"><img src="images/sbc_images/rockpi4.jpg" alt="ROCK 4 photo" width="8" height="5" loading="lazy"></div>
</div>
</div>
<div id="zeropi" class="single-project">
<div class="row"><div class="col-md-12 project-title"><h3>ZeroPi</h3><span class="close"></span></div></div>
<div class="row">
<div class="col-md-6 project-description">
<div class="project-info">
<div><span>CPU:</span>Allwinner H3 Cortex-A7 1.2 GHz | 4 cores | ARMv7</div>
<div><span>RAM:</span>256 MiB - 512 MiB DDR3</div>
<div><span>NET:</span>Gbit Ethernet</div>
<br>
<div><a href="https://dietpi.com/downloads/images/DietPi_ZeroPi-ARMv7-Bookworm.img.xz"><span>Download Image:</span><i class="fa fa-download"></i><u>Download</u></a> (<a href="https://dietpi.com/downloads/images/DietPi_ZeroPi-ARMv7-Bookworm.img.xz.sha256"><u>SHA256</u></a>) (<a href="https://dietpi.com/downloads/images/DietPi_ZeroPi-ARMv7-Bookworm.img.xz.asc"><u>Signature</u></a>)</div>
<div><a href="https://dietpi.com/docs/install/" target="_blank" rel="noopener"><span>How to install / Details:</span><i class="fa fa-book"></i><u>View</u></a></div>
<div>
<span>Bullseye images:</span>
<br>We provide images based on the older Debian Bullseye release as well, as not all software in our catalogue is compatible with Debian Bookworm yet. All info about this can be found <a href="https://dietpi.com/blog/?p=3128" target="_blank" rel="noopener">here</a>.
</div>
</div>
</div>
<div class="col-md-6"><img src="images/sbc_images/zeropi.jpg" alt="ZeroPi photo" width="8" height="5" loading="lazy"></div>
</div>
</div>
<div id="sparkysbc" class="single-project">
<div class="row"><div class="col-md-12 project-title"><h3>Sparky SBC (Allo)</h3><span class="close"></span></div></div>
<div class="row">
<div class="col-md-6 project-description">
<div class="project-info">
<div><span>CPU:</span>Actions semiconductor S500 1.1 GHz | 4 cores | ARMv7</div>
<div><span>RAM:</span>1 GiB DDR3</div>
<div><span>USB:</span>3.0</div>
<div><span>Storage:</span>eMMC socket</div>
<br>
<div><a href="https://dietpi.com/downloads/images/DietPi_SparkySBC-ARMv7-Bullseye.img.xz"><span>Download Image:</span><i class="fa fa-download"></i><u>Download</u></a> (<a href="https://dietpi.com/downloads/images/DietPi_SparkySBC-ARMv7-Bullseye.img.xz.sha256"><u>SHA256</u></a>) (<a href="https://dietpi.com/downloads/images/DietPi_SparkySBC-ARMv7-Bullseye.img.xz.asc"><u>Signature</u></a>)</div>
<div><a href="https://dietpi.com/docs/install/" target="_blank" rel="noopener"><span>How to install / Details:</span><i class="fa fa-book"></i><u>View</u></a></div>
<div>
<a href="https://dietpi.com/downloads/images/DietPi_SparkySBC-ARMv7-Bullseye_AlloGUI.img.xz"><span>Allo GUI image:</span><i class="fa fa-download"></i><u>Download</u></a> (<a href="https://dietpi.com/downloads/images/DietPi_SparkySBC-ARMv7-Bullseye_AlloGUI.img.xz.sha256"><u>SHA256</u></a>) (<a href="https://dietpi.com/downloads/images/DietPi_SparkySBC-ARMv7-Bullseye_AlloGUI.img.xz.asc"><u>Signature</u></a>)
<br>This image has our <a href="https://dietpi.com/forum/t/dietpi-allo-com-web-gui-image/1523" target="_blank" rel="noopener" style="text-decoration-line:underline;">Allo web GUI</a> and audiophile software pre-installed.
</div>
</div>
<p>The Allo Sparky SBC is unique, in the way its been designed for Audiophile usage at its core. By attaching a Kali Reclocker, Allo Piano DAC and Volt+, this system becomes the ultimate in high end audio quality and playback. If you love your audio and want the very best in audio quality, Sparky SBC coupled with the available audio HATs, is the complete Audiophile SBC solution.</p>
</div>
<div class="col-md-6"><img src="images/sbc_images/sparkysbc.jpg" alt="Sparky SBC photo" width="8" height="5" loading="lazy"></div>
</div>
</div>
<div id="asustinkerboard" class="single-project">
<div class="row"><div class="col-md-12 project-title"><h3>ASUS Tinker Board</h3><span class="close"></span></div></div>
<div class="row">
<div class="col-md-6 project-description">
<div class="project-info">
<div><span>CPU:</span>Rockchip RK3288 1.8 GHz | 4 cores | ARMv7</div>
<div><span>RAM:</span>2 GiB Dual Channel DDR3</div>
<div><span>NET:</span>Gbit Ethernet, WiFi, Bluetooth</div>
<div><span>Storage:</span>eMMC socket (model S only), SDIO 3.0 (fast)</div>
<br>
<div><a href="https://dietpi.com/downloads/images/DietPi_ASUSTB-ARMv7-Bookworm.img.xz"><span>Download Image:</span><i class="fa fa-download"></i><u>Download</u></a> (<a href="https://dietpi.com/downloads/images/DietPi_ASUSTB-ARMv7-Bookworm.img.xz.sha256"><u>SHA256</u></a>) (<a href="https://dietpi.com/downloads/images/DietPi_ASUSTB-ARMv7-Bookworm.img.xz.asc"><u>Signature</u></a>)</div>
<div><a href="https://dietpi.com/docs/install/" target="_blank" rel="noopener"><span>How to install / Details:</span><i class="fa fa-book"></i><u>View</u></a></div>
<div>
<span>Bullseye images:</span>
<br>We provide images based on the older Debian Bullseye release as well, as not all software in our catalogue is compatible with Debian Bookworm yet. All info about this can be found <a href="https://dietpi.com/blog/?p=3128" target="_blank" rel="noopener">here</a>.
</div>
</div>
<p>Here come the giants "ASUS" with their first SBC on the market. It provides excellent performance as a SBC with its 1.8 GHz CPU and SDIO 3.0 for fast SD transfer rates. The S model contains an additional onboard eMMC module with write speeds of 70 MiB/s and read speeds of 150 MiB/s. A highly recommended SBC.</p>
</div>
<div class="col-md-6"><img src="images/sbc_images/asustinkerboard.jpg" alt="ASUS Tinker Board photo" width="8" height="5" loading="lazy"></div>
</div>
</div>
<div id="asustinkerboard2" class="single-project">
<div class="row"><div class="col-md-12 project-title"><h3>ASUS Tinker Board 2</h3><span class="close"></span></div></div>
<div class="row">
<div class="col-md-6 project-description">
<div class="project-info">
<div><span>CPU:</span>Rockchip RK3399 1.8/1.4 GHz | 6 cores | ARMv8</div>
<div><span>RAM:</span>2 GiB LPDDR4</div>
<div><span>NET:</span>Gbit Ethernet, WiFi 5, Bluetooth 5.0</div>
<div><span>Storage:</span>eMMC socket (model S only)</div>
<br>
<div><a href="https://dietpi.com/downloads/images/DietPi_ASUSTB2-ARMv8-Bookworm.img.xz"><span>Download Image:</span><i class="fa fa-download"></i><u>Download</u></a> (<a href="https://dietpi.com/downloads/images/DietPi_ASUSTB2-ARMv8-Bookworm.img.xz.sha256"><u>SHA256</u></a>) (<a href="https://dietpi.com/downloads/images/DietPi_ASUSTB2-ARMv8-Bookworm.img.xz.asc"><u>Signature</u></a>)</div>
<div><a href="https://dietpi.com/docs/install/" target="_blank" rel="noopener"><span>How to install / Details:</span><i class="fa fa-book"></i><u>View</u></a></div>
<div>
<span>Bullseye images:</span>
<br>We provide images based on the older Debian Bullseye release as well, as not all software in our catalogue is compatible with Debian Bookworm yet. All info about this can be found <a href="https://dietpi.com/blog/?p=3128" target="_blank" rel="noopener">here</a>.
</div>
</div>
<p>Successor of the ASUS Tinker Board 1 with 64-bit RK3399 SoC.</p>
</div>
<div class="col-md-6"><img src="images/sbc_images/asustinkerboard2.jpg" alt="ASUS Tinker Board 2 photo" width="8" height="5" loading="lazy"></div>
</div>
</div>
<div id="nanopifire3" class="single-project">
<div class="row"><div class="col-md-12 project-title"><h3>NanoPi Fire3</h3><span class="close"></span></div></div>
<div class="row">
<div class="col-md-6 project-description">
<div class="project-info">
<div><span>CPU:</span>Samsung S5P6818 1.4 GHz | 8 cores | ARMv8</div>
<div><span>RAM:</span>1 GiB DDR3</div>
<div><span>NET:</span>Gbit Ethernet</div>
<br>
<div><a href="https://dietpi.com/downloads/images/DietPi_NanoPiFire3-ARMv8-Bullseye.img.xz"><span>Download Image:</span><i class="fa fa-download"></i><u>Download</u></a> (<a href="https://dietpi.com/downloads/images/DietPi_NanoPiFire3-ARMv8-Bullseye.img.xz.sha256"><u>SHA256</u></a>) (<a href="https://dietpi.com/downloads/images/DietPi_NanoPiFire3-ARMv8-Bullseye.img.xz.asc"><u>Signature</u></a>)</div>
<div><a href="https://dietpi.com/docs/install/" target="_blank" rel="noopener"><span>How to install / Details:</span><i class="fa fa-book"></i><u>View</u></a></div>
</div>
<p>The NanoPi M3's "Mini-Me". 8 core powerhouse, great for multi-threaded programs like Plex Media Server, all wrapped up into a nano sized SBC device. The CPU runs hot under full CPU load, so if you plan to run this at full load, make sure to obtain an upgraded heat sink (as the default is insufficient).</p>
</div>
<div class="col-md-6"><img src="images/sbc_images/nanopifire3.jpg" alt="NanoPi Fire3 photo" width="8" height="5" loading="lazy"></div>
</div>
</div>
<div id="nanopim1plus" class="single-project">
<div class="row"><div class="col-md-12 project-title"><h3>NanoPi M1 Plus</h3><span class="close"></span></div></div>
<div class="row">
<div class="col-md-6 project-description">
<div class="project-info">
<div><span>CPU:</span>Allwinner H3 1.2 GHz | 4 cores | ARMv7</div>
<div><span>RAM:</span>512 MiB - 1 GiB DDR3</div>
<div><span>NET:</span>WiFi, Bluetooth</div>
<div><span>Storage:</span>eMMC socket</div>
<br>
<div><a href="https://dietpi.com/downloads/images/DietPi_NanoPiM1Plus-ARMv7-Bookworm.img.xz"><span>Download Image:</span><i class="fa fa-download"></i><u>Download</u></a> (<a href="https://dietpi.com/downloads/images/DietPi_NanoPiM1Plus-ARMv7-Bookworm.img.xz.sha256"><u>SHA256</u></a>) (<a href="https://dietpi.com/downloads/images/DietPi_NanoPiM1Plus-ARMv7-Bookworm.img.xz.asc"><u>Signature</u></a>)</div>
<div><a href="https://dietpi.com/docs/install/" target="_blank" rel="noopener"><span>How to install / Details:</span><i class="fa fa-book"></i><u>View</u></a></div>
<div>
<span>Bullseye images:</span>
<br>We provide images based on the older Debian Bullseye release as well, as not all software in our catalogue is compatible with Debian Bookworm yet. All info about this can be found <a href="https://dietpi.com/blog/?p=3128" target="_blank" rel="noopener">here</a>.
</div>
</div>
<p>Small SBC with lots of features.</p>
</div>
<div class="col-md-6"><img src="images/sbc_images/nanopim1plus.jpg" alt="NanoPi M1 Plus photo" width="8" height="5" loading="lazy"></div>
</div>
</div>
<div id="nanopineo2" class="single-project">
<div class="row"><div class="col-md-12 project-title"><h3>NanoPi NEO2</h3><span class="close"></span></div></div>
<div class="row">
<div class="col-md-6 project-description">
<div class="project-info">
<div><span>CPU:</span>Allwinner H5 1.2 GHz | 4 cores | ARMv8</div>
<div><span>RAM:</span>512 MiB DDR3</div>
<div><span>NET:</span>Gbit Ethernet</div>
<br>
<div><a href="https://dietpi.com/downloads/images/DietPi_NanoPiNEO2-ARMv8-Bookworm.img.xz"><span>Download Image:</span><i class="fa fa-download"></i><u>Download</u></a> (<a href="https://dietpi.com/downloads/images/DietPi_NanoPiNEO2-ARMv8-Bookworm.img.xz.sha256"><u>SHA256</u></a>) (<a href="https://dietpi.com/downloads/images/DietPi_NanoPiNEO2-ARMv8-Bookworm.img.xz.asc"><u>Signature</u></a>)</div>
<div><a href="https://dietpi.com/docs/install/" target="_blank" rel="noopener"><span>How to install / Details:</span><i class="fa fa-book"></i><u>View</u></a></div>
<div>
<span>Bullseye images:</span>
<br>We provide images based on the older Debian Bullseye release as well, as not all software in our catalogue is compatible with Debian Bookworm yet. All info about this can be found <a href="https://dietpi.com/blog/?p=3128" target="_blank" rel="noopener">here</a>.
</div>
</div>
<p>An upgrade to the original Nano NEO, now features H5 64-bit CPU and Gbit LAN. Quite possibly the smallest (and cutest) SBC on the market. Great for headless/IoT/NAS/server/HiFi projects and showing old friends how small computers have become.</p>
</div>
<div class="col-md-6"><img src="images/sbc_images/nanopineo2.jpg" alt="NanoPi NEO2 photo" width="8" height="5" loading="lazy"></div>
</div>
</div>
<div id="nanopik1plus" class="single-project">
<div class="row"><div class="col-md-12 project-title"><h3>NanoPi K1 Plus</h3><span class="close"></span></div></div>
<div class="row">
<div class="col-md-6 project-description">
<div class="project-info">
<div><span>CPU:</span>Allwinner H5 1.4 GHz | 4 cores | ARMv8</div>
<div><span>RAM:</span>2 GiB DDR3</div>
<div><span>NET:</span>Gbit Ethernet, WiFi</div>
<br>
<div><a href="https://dietpi.com/downloads/images/DietPi_NanoPiK1Plus-ARMv8-Bookworm.img.xz"><span>Download Image:</span><i class="fa fa-download"></i><u>Download</u></a> (<a href="https://dietpi.com/downloads/images/DietPi_NanoPiK1Plus-ARMv8-Bookworm.img.xz.sha256"><u>SHA256</u></a>) (<a href="https://dietpi.com/downloads/images/DietPi_NanoPiK1Plus-ARMv8-Bookworm.img.xz.asc"><u>Signature</u></a>)</div>
<div><a href="https://dietpi.com/docs/install/" target="_blank" rel="noopener"><span>How to install / Details:</span><i class="fa fa-book"></i><u>View</u></a></div>
<div>
<span>Bullseye images:</span>
<br>We provide images based on the older Debian Bullseye release as well, as not all software in our catalogue is compatible with Debian Bookworm yet. All info about this can be found <a href="https://dietpi.com/blog/?p=3128" target="_blank" rel="noopener">here</a>.
</div>
</div>
<p>A direct competitor to the RPi 3+. Features excellent and stable onboard WiFi, 64-bit CPU. A great all round board, utilizing the H5 ARM CPU. A good alternative to the RPi 3+, with increased performance at a similar price range.</p>
</div>
<div class="col-md-6"><img src="images/sbc_images/nanopik1plus.jpg" alt="NanoPi K1 Plus photo" width="8" height="5" loading="lazy"></div>
</div>
</div>
<div id="nanopineo2black" class="single-project">
<div class="row"><div class="col-md-12 project-title"><h3>NanoPi NEO2 Black</h3><span class="close"></span></div></div>
<div class="row">
<div class="col-md-6 project-description">
<div class="project-info">
<div><span>CPU:</span>Allwinner H5 1.2 GHz | 4 cores | ARMv8</div>
<div><span>RAM:</span>512 MiB - 1 GiB DDR3</div>
<div><span>NET:</span>Gbit Ethernet</div>
<div><span>Storage:</span>eMMC socket</div>
<br>
<div><a href="https://dietpi.com/downloads/images/DietPi_NanoPiNEO2Black-ARMv8-Bookworm.img.xz"><span>Download Image:</span><i class="fa fa-download"></i><u>Download</u></a> (<a href="https://dietpi.com/downloads/images/DietPi_NanoPiNEO2Black-ARMv8-Bookworm.img.xz.sha256"><u>SHA256</u></a>) (<a href="https://dietpi.com/downloads/images/DietPi_NanoPiNEO2Black-ARMv8-Bookworm.img.xz.asc"><u>Signature</u></a>)</div>
<div><a href="https://dietpi.com/docs/install/" target="_blank" rel="noopener"><span>How to install / Details:</span><i class="fa fa-book"></i><u>View</u></a></div>
<div>
<span>Bullseye images:</span>
<br>We provide images based on the older Debian Bullseye release as well, as not all software in our catalogue is compatible with Debian Bookworm yet. All info about this can be found <a href="https://dietpi.com/blog/?p=3128" target="_blank" rel="noopener">here</a>.
</div>
</div>
<p>A NEO2 upgrade with some additional features like eMMC and available with 1 GiB RAM</p>
</div>
<div class="col-md-6"><img src="images/sbc_images/nanopineo2black.jpg" alt="NanoPi NEO2 Black photo" width="8" height="5" loading="lazy"></div>
</div>
</div>
<div id="nanopim4v2" class="single-project">
<div class="row"><div class="col-md-12 project-title"><h3>NanoPi M4V2</h3><span class="close"></span></div></div>
<div class="row">
<div class="col-md-6 project-description">
<div class="project-info">
<div><span>CPU:</span>Rockchip RK3399 1.8/1.4 GHz | 6 cores | ARMv8</div>
<div><span>RAM:</span>4 GiB LPDDR4</div>
<div><span>NET:</span>Gbit Ethernet, WiFi, Bluetooth</div>
<div><span>Storage:</span>eMMC socket</div>
<br>
<div><a href="https://dietpi.com/downloads/images/DietPi_NanoPiM4V2-ARMv8-Bookworm.img.xz"><span>Download Image:</span><i class="fa fa-download"></i><u>Download</u></a> (<a href="https://dietpi.com/downloads/images/DietPi_NanoPiM4V2-ARMv8-Bookworm.img.xz.sha256"><u>SHA256</u></a>) (<a href="https://dietpi.com/downloads/images/DietPi_NanoPiM4V2-ARMv8-Bookworm.img.xz.asc"><u>Signature</u></a>)</div>
<div><a href="https://dietpi.com/docs/install/" target="_blank" rel="noopener"><span>How to install / Details:</span><i class="fa fa-book"></i><u>View</u></a></div>
<div>
<span>Bullseye images:</span>
<br>We provide images based on the older Debian Bullseye release as well, as not all software in our catalogue is compatible with Debian Bookworm yet. All info about this can be found <a href="https://dietpi.com/blog/?p=3128" target="_blank" rel="noopener">here</a>.
</div>
</div>
<p>New build of the NanoPi M4 with DDR4 instead of DDR3 RAM.</p>
</div>
<div class="col-md-6"><img src="images/sbc_images/nanopim4v2.jpg" alt="NanoPi M4V2" width="8" height="5" loading="lazy"></div>
</div>
</div>
<div id="pineh64" class="single-project">
<div class="row"><div class="col-md-12 project-title"><h3>PINE H64</h3><span class="close"></span></div></div>
<div class="row">
<div class="col-md-6 project-description">
<div class="project-info">
<div><span>CPU:</span>Allwinner H6 Cortex-A53 1.488 GHz | 4 cores | ARMv8</div>
<div><span>RAM:</span>1 GiB - 3 GiB LPDDR3</div>
<div><span>NET:</span>Gbit Ethernet, WiFi*</div>
<div><span>Storage:</span>eMMC socket, PCIe (Model A only)</div>
<br>
<div><a href="https://dietpi.com/downloads/images/DietPi_PINEH64-ARMv8-Bookworm.img.xz"><span>Download Image:</span><i class="fa fa-download"></i><u>Download</u></a> (<a href="https://dietpi.com/downloads/images/DietPi_PINEH64-ARMv8-Bookworm.img.xz.sha256"><u>SHA256</u></a>) (<a href="https://dietpi.com/downloads/images/DietPi_PINEH64-ARMv8-Bookworm.img.xz.asc"><u>Signature</u></a>)</div>
<div><a href="https://dietpi.com/docs/install/" target="_blank" rel="noopener"><span>How to install / Details:</span><i class="fa fa-book"></i><u>View</u></a></div>
<div>
<span>Bullseye images:</span>
<br>We provide images based on the older Debian Bullseye release as well, as not all software in our catalogue is compatible with Debian Bookworm yet. All info about this can be found <a href="https://dietpi.com/blog/?p=3128" target="_blank" rel="noopener">here</a>.
</div>
</div>
<p>The PINE H64 is available in two variants, Model A with larger PCB, PCIe slot and optional WiFi, and Model B with ROCK64-size PCB, without PCIe slot and fixed onboard WiFi.</p>
</div>
<div class="col-md-6"><img src="images/sbc_images/pineh64.jpg" alt="PINE H64 photo" width="8" height="5" loading="lazy"></div>
</div>
</div>
<div id="rockpro64" class="single-project">
<div class="row"><div class="col-md-12 project-title"><h3>ROCKPro64</h3><span class="close"></span></div></div>
<div class="row">
<div class="col-md-6 project-description">
<div class="project-info">
<div><span>CPU:</span>Rockchip RK3399 1.8/1.4 GHz | 6 cores | ARMv8</div>
<div><span>RAM:</span>4 GiB LPDDR4</div>
<div><span>NET:</span>Gbit Ethernet</div>
<div><span>Storage:</span>eMMC socket, PCIe x4</div>
<br>
<div><a href="https://dietpi.com/downloads/images/DietPi_ROCKPro64-ARMv8-Bookworm.img.xz"><span>Download Image:</span><i class="fa fa-download"></i><u>Download</u></a> (<a href="https://dietpi.com/downloads/images/DietPi_ROCKPro64-ARMv8-Bookworm.img.xz.sha256"><u>SHA256</u></a>) (<a href="https://dietpi.com/downloads/images/DietPi_ROCKPro64-ARMv8-Bookworm.img.xz.asc"><u>Signature</u></a>)</div>
<div><a href="https://dietpi.com/docs/install/" target="_blank" rel="noopener"><span>How to install / Details:</span><i class="fa fa-book"></i><u>View</u></a></div>
<div>
<span>Bullseye images:</span>
<br>We provide images based on the older Debian Bullseye release as well, as not all software in our catalogue is compatible with Debian Bookworm yet. All info about this can be found <a href="https://dietpi.com/blog/?p=3128" target="_blank" rel="noopener">here</a>.
</div>
</div>
<p>The ROCK64's big brother is here! One of the fastest ARM SBC (RK3399) on the market today, with 2x1.8 GHz A72 cores and 4x1.4 GHz A53 cores. Onboard full size PCIe x4 with excellent throughput compliments a NAS/Server setup, and, endless opportunities. A great addition to your SBC lineup that provides next gen SBC performance. Bottom line: "it's a little chunky, but it ain't no monkey", we love it!</p>
</div>
<div class="col-md-6"><img src="images/sbc_images/rockpro64.jpg" alt="ROCKPro64 photo" width="8" height="5" loading="lazy"></div>
</div>
</div>
<div id="quartz64a" class="single-project">
<div class="row"><div class="col-md-12 project-title"><h3>Quartz64 Model A</h3><span class="close"></span></div></div>
<div class="row">
<div class="col-md-6 project-description">
<div class="project-info">
<div><span>CPU:</span>Rockchip RK3566 1.8 GHz | 4 cores | ARMv8</div>
<div><span>RAM:</span>4 GiB - 8 GiB LPDDR4</div>
<div><span>NET:</span>Gbit Ethernet, optional WiFi 5</div>
<div><span>Storage:</span>eMMC socket, PCIe x4, SATA 3.0</div>
<br>
<div><a href="https://dietpi.com/downloads/images/DietPi_Quartz64A-ARMv8-Bookworm.img.xz"><span>Download Image:</span><i class="fa fa-download"></i><u>Download</u></a> (<a href="https://dietpi.com/downloads/images/DietPi_Quartz64A-ARMv8-Bookworm.img.xz.sha256"><u>SHA256</u></a>) (<a href="https://dietpi.com/downloads/images/DietPi_Quartz64A-ARMv8-Bookworm.img.xz.asc"><u>Signature</u></a>)</div>
<div><a href="https://dietpi.com/docs/install/" target="_blank" rel="noopener"><span>How to install / Details:</span><i class="fa fa-book"></i><u>View</u></a></div>
<div>
<span>Bullseye images:</span>
<br>We provide images based on the older Debian Bullseye release as well, as not all software in our catalogue is compatible with Debian Bookworm yet. All info about this can be found <a href="https://dietpi.com/blog/?p=3128" target="_blank" rel="noopener">here</a>.
</div>
</div>
<p>PINE64's next generation SBC based on the new Rockchip RK3566 SoC, which provides a lot of hardware features and connectors. Note that the RK3566 is aimed to be a successor for RK3288 and RK3328, not for the flagship RK3399. So expect the raw CPU performance to be in the range of the ROCK64. The SoC however provides a lot more hardware features, connectors and slots exposed on the SBC.</p>
</div>
<div class="col-md-6"><img src="images/sbc_images/quartz64a.jpg" alt="Quartz64 Model A photo" width="8" height="5" loading="lazy"></div>
</div>
</div>
<div id="quartz64b" class="single-project">
<div class="row"><div class="col-md-12 project-title"><h3>Quartz64 Model B</h3><span class="close"></span></div></div>
<div class="row">
<div class="col-md-6 project-description">
<div class="project-info">
<div><span>CPU:</span>Rockchip RK3566 1.8 GHz | 4 cores | ARMv8</div>
<div><span>RAM:</span>4 GiB - 8 GiB LPDDR4</div>
<div><span>NET:</span>Gbit Ethernet, WiFi 5</div>
<div><span>Storage:</span>eMMC socket, M.2 slot</div>
<br>
<div><a href="https://dietpi.com/downloads/images/DietPi_Quartz64B-ARMv8-Bookworm.img.xz"><span>Download Image:</span><i class="fa fa-download"></i><u>Download</u></a> (<a href="https://dietpi.com/downloads/images/DietPi_Quartz64B-ARMv8-Bookworm.img.xz.sha256"><u>SHA256</u></a>) (<a href="https://dietpi.com/downloads/images/DietPi_Quartz64B-ARMv8-Bookworm.img.xz.asc"><u>Signature</u></a>)</div>