Skip to content

Commit 07c9546

Browse files
committed
download: add info about wsl tarballs
1 parent c551fd6 commit 07c9546

File tree

2 files changed

+47
-0
lines changed

2 files changed

+47
-0
lines changed

_includes/download_wsl.html

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<div class="split-section">
2+
<div>
3+
<h3 id="{{ page.name | slugify }}"><a href="#{{ page.name | slugify }}">{{ page.name }}</a></h3>
4+
{{ include.content | markdownify }}
5+
</div>
6+
<div>
7+
{% for device in page.devices %}
8+
<div class="download-device-title">
9+
<h4>{{ device.name }}</h4>
10+
<small>{{ site.download_build_date }}</small>
11+
</div>
12+
<ul class="inline-download-links">
13+
<li>
14+
<a
15+
href="{{ site.download_mirror }}/void-{{ device.name }}-{{ site.download_build_date | date: '%Y%m%d' }}.wsl"
16+
>rootfs tarball</a
17+
>
18+
<span class="label label-default">glibc</span>
19+
</li>
20+
<li>
21+
<a
22+
href="{{ site.download_mirror }}/void-{{ device.name }}-musl-{{ site.download_build_date | date: '%Y%m%d' }}.wsl"
23+
>rootfs tarball</a
24+
>
25+
<span class="label label-warning">musl</span>
26+
</li>
27+
</ul>
28+
{% endfor %}
29+
</div>
30+
</div>

_platforms/wsl.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
name: wsl
3+
date: 1970-01-01 06:00:00
4+
devices:
5+
- name: x86_64
6+
- name: aarch64
7+
---
8+
9+
{% capture download_details %}
10+
ROOTFS tarballs compatible with Windows Subsystem for Linux (WSL) 1 and 2 can be installed by downloading the file and running `wsl --install --from-file path/to/void.wsl`.
11+
12+
You can log into these images as `root` with the password `voidlinux`. Creation of a non-root user is prompted on first launch.
13+
14+
Documentation for WSL-specific topics is [available from Microsoft](https://learn.microsoft.com/en-us/windows/wsl).
15+
{% endcapture %}
16+
17+
{% include download_wsl.html content=download_details %}

0 commit comments

Comments
 (0)