forked from canonical/ubuntu.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
meganav.yaml
989 lines (955 loc) · 37.2 KB
/
meganav.yaml
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
# -- Format example --
# A section can have either a "flat" layout where all of the content
# appears in a single panel, or it can have multiple panels navigated
# via a side navigation.
#
# To achieve the "flat" layout, the section should include primary_links
# and secondary_links at the top level, and to use the side navigation view
# the section should only include side_nav_sections at the top level, using
# the formats below.
#
# section_name:
# primary_links: (optional)
# - title: (optional)
# links:
# - title:
# description:
# url:
# secondary_links: (optional)
# - title: (optional)
# links:
# - title:
# url:
# side_nav_sections: (optional)
# - title:
# primary_links:
# - title: (optional)
# links:
# - title:
# description:
# url:
# secondary_cta_title: (optional)
# secondary_cta_url: (optional)
# secondary_links:
# - title: (optional)
# links:
# - title:
# url:
# section_footer: (optional)
# copy:
# cta_title:
# cta_url:
products:
side_nav_sections:
- title: Featured
primary_links:
- links:
- title: Ubuntu Desktop
description: Fast, modern and secure Linux
url: /desktop
- title: Ubuntu Server
description: Scalable Linux for the cloud
url: /server
- title: MAAS
description: Bare metal provisioning
url: https://maas.io/
- title: Snapcraft
description: App store for Linux
url: https://snapcraft.io/
- title: OpenStack
description: Enterprise-grade cloud platform
url: /openstack
- title: MicroCloud
description: Lightweight, automated clouds
url: https://canonical.com/microcloud
- title: Ubuntu Pro
description: Security & compliance subscription
url: /pro
- title: Enterprise-grade support
description: 24/7 support for the full-stack
url: /support
- title: Livepatch
description: Stay patched and defer reboots
url: /security/livepatch
- title: Kubernetes
description: Containerised workloads
url: /kubernetes
- title: Charmhub
description: Charmed Operators marketplace
url: https://charmhub.io/
- title: Juju
description: Orchestration engine for operators
url: https://juju.is/
- title: Certified hardware
description: Ubuntu hardware you can trust
url: /certified
section_footer:
copy: We're here to help with any questions and more information.
cta_title: Contact us
cta_url: /contact-us
- title: Ubuntu OS
primary_links:
- links:
- title: Ubuntu Desktop
description: Fast, modern and secure Linux
url: /desktop
- title: Ubuntu Server
description: Scalable Linux for the cloud
url: /server
- title: Ubuntu Pro
description: Security & compliance subscription
url: /pro
- title: Ubuntu Core
description: Embedded Linux
url: /core
- title: FIPS for Ubuntu
description: Secure Linux for government
url: /security/fips
- title: WSL
description: Windows Subsystem for Linux
url: /desktop/wsl
- title: Multipass
description: VMs for Windows, macOS & Linux
url: https://multipass.run/
secondary_links:
- title: Quick links
links:
- title: Upgrade Ubuntu
url: /tutorials/upgrading-ubuntu-desktop
- title: Ubuntu documentation
url: https://help.ubuntu.com/
- title: Desktop install
url: /tutorials/install-ubuntu-desktop
- title: Server install
url: /server/docs/installation
- title: Server guide
url: /server/docs
- title: Ubuntu on public clouds
url: /cloud/public-cloud
- title: Private cloud
primary_links:
- links:
- title: OpenStack
description: Enterprise-grade cloud platform
url: /openstack
- title: Ubuntu Server
description: Scalable Linux for the cloud
url: /server
- title: Landscape
description: Monitor and manage machines
url: /landscape
- title: MAAS
description: Bare metal provisioning
url: https://maas.io/
- title: Ceph
description: Open source storage
url: /ceph
- title: Anbox Cloud
description: Virtualised Android on demand
url: https://anbox-cloud.io/
- title: Juju
description: Orchestrator engine for operators
url: https://juju.is/
- title: Private cloud build
description: OpenStack implementation
url: /openstack/consulting
- title: MicroStack
description: Cloud-native OpenStack
url: https://microstack.run/
- title: MicroCloud
description: Lightweight, automated clouds
url: https://canonical.com/microcloud
secondary_links:
- title: Quick links
links:
- title: Server documentation
url: /server/docs
- title: MAAS documentation
url: https://maas.io/docs
- title: MicroStack installation
url: https://microstack.run/docs/single-node
- title: Data Centre Networking blog
url: /blog/data-centre-networking-what-is-sdn
- title: OpenStack pricing
url: /openstack/pricing-calculator
- title: Private cloud consulting
url: /openstack/consulting
- title: "Private cloud: Avoiding the high cost of operations"
url: /blog/private_cloud_avoiding_operational_costs
- title: Public cloud
primary_links:
- links:
- title: Ubuntu on public clouds
description: The most popular cloud OS
url: /cloud/public-cloud
- title: Ubuntu on AWS
description: AWS Marketplace
url: /aws
- title: Ubuntu on Azure
description: Microsoft Azure Marketplace
url: /azure
- title: Ubuntu on GCP
description: Google Cloud Marketplace
url: /gcp
- title: Ubuntu WorkSpaces
description: Virtual desktops on AWS
url: /aws/workspaces
- title: Virtualisation
primary_links:
- links:
- title: Multipass
description: VMs for Windows, macOS & Linux
url: https://multipass.run/
- title: LXD
description: Linux containers and VMs
url: https://canonical.com/lxd
- title: WSL
description: Windows Subsystem for Linux
url: /desktop/wsl
secondary_links:
- title: Quick links
links:
- title: What is virtualisation?
url: https://snapcraft.io/blog/what-is-virtualisation-the-basics
- title: Multipass documentation
url: https://multipass.run/docs
- title: Virtualisation docs in the server guide
url: /server/docs/virtualization-multipass
- title: What is WSL?
url: https://wiki.ubuntu.com/WSL
- title: Install Ubuntu on Windows 11
url: /tutorials/install-ubuntu-on-wsl2-on-windows-11-with-gui-support
- title: Install Ubuntu on Windows 10
url: /tutorials/install-ubuntu-on-wsl2-on-windows-10
- title: Security and support
primary_links:
- links:
- title: Ubuntu Pro
description: Security & compliance subscription
url: /pro
- title: Ubuntu Pro + support
description: 24/7 support for the full-stack
url: /support
- title: ESM
description: 10 years of security maintenance
url: /security/esm
- title: Landscape
description: Monitor and manage machines
url: /landscape
- title: Livepatch
description: Stay patched without reboots
url: /security/livepatch
- title: Ubuntu Pro for AWS
description: Amazon Web Services support
url: /aws/pro
- title: Ubuntu Pro for Azure
description: Microsoft Azure cloud support
url: /azure/pro
- title: Ubuntu Pro for GCP
description: Google Cloud support
url: /gcp/pro
- title: Certifications and hardening
description: CIS, DISA-STIG, FIPS compliance
url: /security/compliance-automation
- title: Confidential computing
description: Protect your data in use
url: /confidential-computing
secondary_links:
- title: Quick links
links:
- title: Ubuntu Pro pricing
url: /pricing/pro
- title: Open infrastructure consulting
url: /pricing/consulting
- title: Certified hardware
url: /certified
- title: CVE reports
url: /security/cves
- title: Ubuntu Security Notices (USN)
url: /security/notices
- title: Kubernetes
primary_links:
- links:
- title: Kubernetes
description: Containerised workloads
url: /kubernetes
- title: MicroK8s
description: Simplest way to get Kubernetes
url: https://microk8s.io/
- title: Charmed Kubernetes
description: Composable K8s for the enterprise
url: /kubernetes/charmed-k8s
- title: Kubeflow
description: Machine learning toolkit for K8s
url: /ai/what-is-kubeflow
secondary_links:
- title: Quick links
links:
- title: Kubernetes documentation
url: /kubernetes/docs
- title: Getting started with Kubernetes
url: /kubernetes/docs/quickstart
- title: Distributions comparison
url: /kubernetes/compare
- title: Cloud native operations report
url: https://juju.is/cloud-native-kubernetes-usage-report-2022
- title: Getting started with MicroK8s
url: http://microk8s.io/docs/getting-started
- title: Kubeflow installation tutorial
url: https://charmed-kubeflow.io/docs/install
- title: AI and data
primary_links:
- links:
- title: AI/ML
description: AI and machine learning on Ubuntu
url: /ai
- title: Kubeflow
description: End-to-end MLOps platform
url: https://charmed-kubeflow.io/
- title: MLflow
description: Lightweight ML platform
url: /ai/mlflow
- title: Data solutions
description: Enterprise data management at scale
url: https://canonical.com/data
- title: Kafka
description: Streaming data platform
url: https://canonical.com/data/kafka
- title: Spark
description: Big data processing
url: https://canonical.com/data/spark
- title: MongoDB
description: NoSQL database management
url: https://canonical.com/data/mongodb
- title: PostgreSQL
description: Relational database management
url: https://canonical.com/data/postgresql
- title: MySQL
description: Relational database management
url: https://canonical.com/data/mysql
- title: OpenSearch
description: Search and analytics suite
url: https://canonical.com/data/opensearch
secondary_links:
- title: Quick links
links:
- title: Kubeflow documentation
url: https://charmed-kubeflow.io/docs
- title: MLflow documentation
url: https://documentation.ubuntu.com/charmed-mlflow/en/latest/
- title: Data documentation
url: https://canonical.com/data/docs
- title: MLOps toolkit
url: /engage/mlops-toolkit/
- title: Guide to big data and AI
url: /engage/open-source-big-data-ai
- title: Certified hardware
primary_links:
- links:
- title: Certified hardware
description: Ubuntu hardware you can trust
url: /certified
- title: PC and laptops
description: Certified for Ubuntu
url: /certified?q=&limit=20&category=Laptop&category=Desktop
- title: Servers
description: Hardware for data centres
url: /certified/servers
- title: IoT devices
description: Stable and secure devices
url: /certified/devices
- title: SoCs
description: System on a Chip hardware
url: /certified/socs
- title: Raspberry Pi
description: Certified Pi devices
url: /certified?q=&limit=20&vendor=Raspberry+Pi+Foundation
secondary_links:
- title: Quick links
links:
- title: Why use Certified devices?
url: /certified/why-certified
- title: Certify your device
url: https://canonical.com/partners/become-a-partner
- title: Why certification matters for AIoT
url: https://www.brighttalk.com/webcast/6793/497538
- title: Industrial Pi use cases webinar
url: https://www.brighttalk.com/webcast/6793/514263
- title: Why buy a preinstalled workstation?
url: /blog/why-you-should-buy-a-pre-installed-ubuntu-workstation
- title: IoT and edge
primary_links:
- links:
- title: Ubuntu Core
description: Embedded Linux
url: /core
- title: IoT App Store
description: Private app store for Linux and IoT
url: /internet-of-things/appstore
- title: Device management
description: Manage fleets of IoT devices
url: /internet-of-things/management
- title: Certified devices
description: Hardware/OS compatibility
url: /certified/devices
- title: Ubuntu Frame
description: Embedded graphical displays
url: https://mir-server.io/ubuntu-frame
- title: Ubuntu Pro for Devices
description: Security maintenance for IoT
url: /pro/devices
- title: ROS ESM
description: Expanded security for robots
url: /robotics/ros-esm
- title: Real-time Ubuntu
description: Low-latency kernel
url: /real-time
- title: IoT Professional Services
description: Bring IoT devices to market
url: /core/services
secondary_links:
- title: Quick links
links:
- title: Breakdown of the Cyber Resilience Act
url: /blog/a-cisos-comprehensive-breakdown-of-the-cyber-resilience-act
- title: Deploying AI at the edge with open source
url: /engage/guide-to-deploying-ai-at-the-edge
- title: Landscape for IoT device Management
url: /engage/iot-management-landscape
- title: "Embedded Linux: Yocto or Ubuntu Core"
url: /engage/embedded-linux-yocto-ubuntu-core-whitepaper
- title: "Software-defined vehicles: recommendations"
url: /engage/software-defined-vehicles-whitepaper
- title: A CTO’s guide to real-time Linux
url: /engage/cto-guide-real-time-kernel
- title: Developer tools
primary_links:
- links:
- title: Snaps
description: Containerised applications for Linux
url: https://snapcraft.io/about
- title: Snapcraft
description: Build and publish your snaps
url: https://snapcraft.io/build
- title: Snap Store
description: App store for Linux
url: https://snapcraft.io
- title: Juju
description: Orchestrator engine for operators
url: https://juju.is/
- title: Charmhub
description: Software operators collection
url: https://charmhub.io/
- title: JAAS
description: Auditing and compliance for Juju
url: https://jaas.ai/
secondary_links:
- title: Quick links
links:
- title: Snap documentation
url: https://snapcraft.io/docs
- title: Create your first snap
url: /tutorials/create-your-first-snap
- title: Juju documentation
url: https://juju.is/docs
- title: Getting started with Juju
url: https://juju.is/docs/juju/tutorial
- title: Write your first charm
url: https://juju.is/docs/sdk/from-zero-to-hero-write-your-first-kubernetes-charm
use_case:
primary_links:
- title: By solution
links:
- title: AI/ML
description: MLOps tools
url: /ai
- title: Compliance
description: Certifications and hardening
url: /security/compliance-automation
- title: Confidential computing
description: Protect your data in use
url: /confidential-computing
- title: Containers
description: Ubuntu for container operations
url: /containers
- title: Data solutions
description: Enterprise data management at scale
url: https://canonical.com/data
- title: Edge computing
description: Micro clouds
url: /edge-computing
- title: HPC and supercomputing
description: High-performance computing
url: /hpc
- title: IoT
description: Internet of Things
url: /internet-of-things
- title: Managed IT services
description: Fully managed open source solutions
url: /managed
- title: Observability
description: Monitoring tools
url: /observability
- title: Private cloud and data centre
description: OpenStack implementation
url: /openstack/consulting
- title: Public cloud
description: Ubuntu across public clouds
url: /cloud/public-cloud
- title: Security
description: Enterprise-grade security
url: /security
- title: Signage
description: Smart displays and kiosks
url: /internet-of-things/smart-displays
- title: Storage
description: Scalable software-defined storage
url: /ceph
highlighted_secondary_links:
- title: By industry
links:
- title: Automotive
description: Smarter vehicles and factories
url: /automotive
- title: Financial services
description: Innovate with open source
url: /financial-services
- title: Government
description: Public sector and federal
url: /gov
- title: Industrial
description: The factory of the future
url: /industrial
- title: Robotics
description: Build and deploy robots with Ubuntu
url: /robotics
- title: Telco
description: Carrier-grade solutions
url: /telco
support:
side_nav_sections:
- title: Enterprise
primary_links:
- links:
- title: Enterprise-grade support
description: 24/7 support for the full-stack
url: /support
- title: Ubuntu Pro
description: Security & compliance subscription
url: /pro
- title: Ubuntu Pro for Azure
description: Microsoft Azure cloud support
url: /azure/pro
- title: Ubuntu Pro for AWS
description: Amazon Web Services support
url: /aws/pro
- title: Ubuntu Pro for GCP
description: Google Cloud support
url: /gcp/pro
- title: Managed apps
description: Fully managed open source
url: /managed/apps
- title: Managed infrastructure
description: Managed IT services
url: /managed
secondary_links:
- title: Quick links
links:
- title: Upgrade from 18.04
url: /18-04
- title: Why Ubuntu Pro?
url: /pro/why-pro
- title: Expanded Security Maintenance
url: /security/esm
- title: Pricing
url: /pricing/pro
- title: Open infrastructure consulting
url: /pricing/consulting
- title: Resources
primary_links:
- links:
- title: Read documentation
description: Official Ubuntu Documentation
url: https://help.ubuntu.com/
- title: Read the blogs
description: Blogs from Canonical
url: /blog
- title: Case studies, whitepapers & webinars
description: Resource hub
url: /engage
- title: Tutorials
description: Guides for development
url: /tutorials
- title: Ask Ubuntu
description: Q&A site for users and developers
url: https://askubuntu.com
- title: Certified hardware
description: Ubuntu hardware you can trust
url: /certified
- title: About Ubuntu
description: Introduction to the OS
url: /about
- title: Ubuntu forums
description: Discuss Ubuntu with other users
url: https://ubuntuforums.org/
secondary_links:
- title: Quick links
links:
- title: Webinars
url: /engage?resource=webinar
- title: Case studies
url: /engage?resource=case+study
- title: Whitepapers
url: /engage?resource=whitepaper
- title: Become an Ubuntu-certified engineer
url: /credentials
- title: Videos
url: https://www.youtube.com/c/UbuntuOS
community:
side_nav_sections:
- title: Learning resources
primary_links:
- links:
- title: Tutorials
description: Guides for development
url: /tutorials/
- title: Documentation
description: Official Ubuntu documentation
url: https://help.ubuntu.com/
- title: Ubuntu on Air
description: Community-focused videos
url: https://www.youtube.com/ubuntuonair
- title: Discourse
description: Coordinating the Ubuntu project
url: https://discourse.ubuntu.com/
- title: Ask Ubuntu
description: Q&A for users and developers
url: https://askubuntu.com/
- title: Forums
description: Discuss Ubuntu with other users
url: https://ubuntuforums.org/
- title: Ubuntu Masters
description: Get inspired by IT practitioners
url: /masters-conference
secondary_links:
- title: Quick links
links:
- title: Upgrade Ubuntu
url: /tutorials/upgrading-ubuntu-desktop
- title: Official Ubuntu documentation
url: https://help.ubuntu.com/
- title: Install guide
url: /tutorials/install-ubuntu-desktop
- title: How to write a tutorial
url: /tutorials/tutorial-guidelines
- title: Forums
primary_links:
- links:
- title: Ask Ubuntu
description: Q&A for users and developers
url: https://askubuntu.com/
- title: Forums
description: Discuss Ubuntu with other users
url: https://ubuntuforums.org/
- title: Chat on IRC
description: Speak to Ubuntu users
url: https://help.ubuntu.com/community/InternetRelayChat
- title: Discourse
description: Coordinating the Ubuntu project
url: https://discourse.ubuntu.com/
secondary_links:
- title: Quick links
links:
- title: "Forum: New to Ubuntu"
url: https://ubuntuforums.org/forumdisplay.php?f=125
- title: "Forum: Ubuntu Official Flavours Support"
url: https://ubuntuforums.org/forumdisplay.php?f=327
- title: "Forum: Ubuntu, Linux and OS Chat"
url: https://ubuntuforums.org/forumdisplay.php?f=434
- title: Ubuntu Community on Discourse
url: https://discourse.ubuntu.com/c/community/78
- title: Contribute to Ubuntu
primary_links:
- links:
- title: Translate and localise
description: Translate into your language
url: /community/contribute/translation-localisation
- title: QA and testing
description: Test releases and features
url: /community/contribute/qa-testing
- title: Report bugs
description: Report bugs on Launchpad
url: https://help.ubuntu.com/community/ReportingBugs
- title: Ubuntu development
description: Help maintain Ubuntu OS
url: /community/contribute/ubuntu-development
- title: Application development
description: Create and maintain software
url: /community/contribute/application-development
- title: Improve documentation
description: Help write the docs
url: https://wiki.ubuntu.com/DocumentationTeam/SystemDocumentation
- title: Art and design
description: Contribute your artwork
url: /community/contribute/art-design
- title: Donate
description: Donate to the Ubuntu project
url: /download/desktop/thank-you
- title: Local community teams
description: Join a community team
url: /community/locos/join
- title: Mission and governance
primary_links:
- links:
- title: Our mission
description: What we stand for
url: /community/mission
- title: Ubuntu code of conduct
description: Expectations of participants
url: /community/code-of-conduct
- title: Diversity policy
description: Our stance on diversity
url: /community/diversity
- title: Project governance
description: How the project is governed
url: /community/governance
- title: Community Council
description: Governing body for the project
url: https://discourse.ubuntu.com/t/what-is-the-ubuntu-community-council/706
- title: Teams
description: The teams in the project
url: /community/governance/teams
- title: Local community teams
description: Join a community team
url: /community/locos/join
secondary_links:
- title: Quick links
links:
- title: Community Council agenda
url: https://discourse.ubuntu.com/t/community-council-meeting-agendas-schedule/708
- title: Ubuntu Technical Board
url: https://wiki.ubuntu.com/TechnicalBoard
- title: Technical Board agenda
url: https://wiki.ubuntu.com/TechnicalBoardAgenda
- title: Keep up to date
primary_links:
- links:
- title: Read the blogs
description: Ubuntu blogs
url: /blog
- title: Weekly Newsletter
description: Sign up for our newsletter
url: https://discourse.ubuntu.com/c/uwn/124
- title: Mailing lists
description: All the public mailing lists
url: https://lists.ubuntu.com/
- title: Ubuntu Planet
description: Blogs by Ubuntu members
url: http://planet.ubuntu.com/
- title: Teams
description: The teams in the project
url: /community/governance/teams
secondary_links:
- title: Quick links
links:
- title: Join the Weekly Newsletter Team
url: https://discourse.ubuntu.com/t/joining-the-ubuntu-weekly-newsletter-team/40929
- title: Facebook
url: https://www.facebook.com/ubuntulinux
- title: Twitter
url: https://twitter.com/ubuntu
- title: YouTube
url: https://www.youtube.com/c/UbuntuOS
- title: Instagram
url: https://www.instagram.com/ubuntu_os/
- title: GitHub
url: https://github.com/ubuntu
get_ubuntu:
side_nav_sections:
- title: Desktop
primary_links:
- links:
- title: Ubuntu Desktop
description: Free and reliable desktop OS
url: /desktop
secondary_cta_title: Download Ubuntu Desktop
secondary_cta_url: /download/desktop
- title: Ubuntu flavours
description: Variations of Ubuntu OS
url: /download/flavours
- title: Ubuntu-ready PC and laptops
description: Certified hardware
url: /certified
secondary_links:
- title: Quick links
links:
- title: Upgrade Ubuntu Desktop
url: /tutorials/upgrading-ubuntu-desktop
- title: 24.04 desktop guide
url: https://help.ubuntu.com/lts/ubuntu-help/index.html
- title: 22.04 desktop guide
url: https://help.ubuntu.com/22.04/ubuntu-help/index.html
- title: Installation tutorial
url: /tutorials/install-ubuntu-desktop
- title: Try before installing
url: /tutorials/try-ubuntu-before-you-install
- title: Case studies, whitepapers & webinars
url: /engage
- title: All Ubuntu tutorials
url: /tutorials
- title: Server
primary_links:
- links:
- title: Ubuntu Server
description: Scalable Linux for the cloud
url: /server
secondary_cta_title: Get Ubuntu Server
secondary_cta_url: /download/server
- title: MAAS
description: Bare metal provisioning
url: https://maas.io/
- title: Certified hardware
description: Ubuntu hardware you can trust
url: /certified/servers
- title: Public clouds
description: AWS, Azure and Google Cloud
url: /cloud/public-cloud
- title: Multipass
description: VMs for Windows, macOS & Linux
url: https://multipass.run/
secondary_links:
- title: Quick links
links:
- title: Server guide
url: /server/docs
- title: Installation tutorial
url: /tutorials/install-ubuntu-server
- title: ARM
url: /download/server/arm
- title: IBM Power
url: /download/server/power
- title: s390x
url: /download/server/s390x
- title: RISC-V
url: /download/risc-v
- title: Raspberry Pi
primary_links:
- links:
- title: Ubuntu for Raspberry Pi
description: Single board computer
url: /download/raspberry-pi
secondary_cta_title: Get Ubuntu for Raspberry Pi
secondary_cta_url: /download/raspberry-pi
- title: Ubuntu Core for Raspberry Pi
description: Embedded Linux
url: /download/raspberry-pi-core
- title: Ubuntu-ready Pi devices
description: Certified hardware
url: /certified?q=&limit=20&vendor=Raspberry+Pi+Foundation
secondary_links:
- title: Quick links
links:
- title: Desktop installation tutorial
url: /tutorials/install-ubuntu-desktop
- title: Server installation tutorial
url: /tutorials/how-to-install-ubuntu-on-your-raspberry-pi
- title: Core installation tutorial
url: /download/raspberry-pi-core
- title: Introduction video
url: /engage/raspberry-pi-livestream
- title: Build a Kubernetes cluster on Raspberry Pi
url: /tutorials/how-to-kubernetes-cluster-on-raspberry-pi
- title: Ubuntu for IoT
primary_links:
- links:
- title: Ubuntu Core
description: Embedded Linux
url: /core
secondary_cta_title: Get Ubuntu Core
secondary_cta_url: /download/core
- title: Internet of Things
description: Ubuntu for IoT
url: /internet-of-things
- title: Smart things as a service
description: Deliver IoT devices to market
url: /core/services
- title: Ubuntu-ready devices
description: Certified hardware
url: /certified?q=&limit=20&category=Device&category=SoC
- title: Embedded Linux
description: Developers, apps and hardware
url: /embedded
- title: Real-time Ubuntu
description: Low-latency kernel
url: /real-time
secondary_links:
- title: Quick links
links:
- title: AMD Evaluation kits & SOMs
url: /download/xilinx
- title: Intel IoT platforms
url: /download/iot/intel-iotg
- title: Mediatek Genio
url: /download/mediatek-genio
- title: NVIDIA Jetson
url: /download/nvidia-jetson
- title: Raspberry Pi
url: /raspberry-pi
- title: RISC-V platforms
url: /download/risc-v
- title: Develop on Ubuntu
primary_links:
- links:
- title: Deb, snap and charm packages
description: Deliver Ubuntu software
url: /about/packages
- title: Publish apps
description: For users, servers and devices
url: https://snapcraft.io/
- title: Cloud packages
description: Deploy and operate cloud software
url: https://charmhub.io/
- title: AI and machine learning
description: Develop AI models
url: /ai
- title: Ubuntu certification for engineers
description: Professional endorsement
url: /credentials
secondary_links:
- title: Quick links
links:
- title: Ubuntu on public clouds
url: /cloud/public-cloud
- title: Minimal Ubuntu for containers
url: /blog/minimal-ubuntu-released
- title: Customise cloud instances
url: https://cloud-init.io/
- title: Model driven operations
url: /model-driven-operations
- title: Juju for standardised operations
url: https://jaas.ai/
- title: Charmed Kubernetes
url: /kubernetes
- title: MicroK8s - single node k8s
url: https://microk8s.io/
- title: MAAS - fast server provisioning
url: https://maas.io/
section_footer:
cta_title: Develop on Ubuntu
cta_url: /desktop/developers
- title: Windows & macOS
primary_links:
- links:
- title: WSL
description: Windows Subsystem for Linux
url: /desktop/wsl
- title: Multipass
description: Ubuntu VMs for Windows and macOS
url: https://multipass.run/
secondary_links:
- title: Quick links
links:
- title: Install Ubuntu on WSL for Windows 11
url: /tutorials/install-ubuntu-on-wsl2-on-windows-11-with-gui-support
- title: Install Ubuntu on WSL for Windows 10
url: /tutorials/install-ubuntu-on-wsl2-on-windows-10