This repository was archived by the owner on Apr 14, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 98
Expand file tree
/
Copy pathoperating-systems.html
More file actions
38 lines (37 loc) · 1.28 KB
/
operating-systems.html
File metadata and controls
38 lines (37 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
---
layout: default
---
<article class="hosts">
<section>
<div class="host-description">
<h2>Operating Systems</h2>
<p>
Operating systems are used for both running your computer, and running web servers. Whilst you are not going to base your laptop buying decision based on which PHP version it has by default, knowing what versions
are on what operating systems can save you some trouble in the future.
</p>
<p>
More importantly, picking an OS for your web server with the right version is going to save arsing around trying to install (sometimes unofficial) repos to get it up to date.
</p>
<hr>
</div>
<table class="tables" data-sortable>
<thead>
<tr>
<th>Distribution</th>
<th>Family</th>
<th>Default</th>
</tr>
</thead>
<tbody>
{% assign operating_systems = (site.data.operating_systems | semver_sort_by: 'semver') %}
{% for system in operating_systems reversed %}
<tr>
<td class="host-name">{{ system.name }}</td>
<td class="host-info">{{ system.family }}</td>
<td class="host-info version">{{ system | format_version }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</section>
</article>