Skip to content

Instantly share code, notes, and snippets.

View rexberg's full-sized avatar

Markus Rexhepi-Lindberg rexberg

View GitHub Profile
@rexberg
rexberg / archlinux-wsl2.md
Last active February 12, 2023 16:53
Installing Arch Linux in WSL2

Start a temporary Linux system.

Create a temporary directory.

$ tempdir="/tmp/archlinux_$(date +%Y-%m-%d_%H-%M)"
$ mkdir $tempdir

Download, unpack the latest archlinux-bootstrap archive to the temporary directory, stripping the top level directory, packs it to a new ~/root.tar.gz archive and removes the temporary directory.

$ curl https://mirrors.edge.kernel.org/archlinux/iso/latest/archlinux-bootstrap-x86_64.tar.gz | sudo tar -xvz --strip-components=1 -C $tempdir && sudo tar -cvf - -C $tempdir . --remove-files > ~/root.tar.gz