A video is available that walks through these steps if you would prefer that format:
Arch Linux: Essential Post-Install Configuration (plus some tmux and man tips)
I used the following resources when building this runbook:
A video is available that walks through these steps if you would prefer that format:
Arch Linux: Essential Post-Install Configuration (plus some tmux and man tips)
I used the following resources when building this runbook:
A video is available that introduces Arch Linux and covers OS configuration steps if you would prefer that format:
Arch Linux: Base Install in Virtual Machine
I used the following references to learn how to install Arch Linux in a virtual machine:
A video is available that elaborates on the involved technologies and goes through these steps if you would prefer that format:
Installing Docker Desktop with WSL2 back end
I used the following references to learn how to install Docker Desktop and WSL2:
function Get-GuestInfo($VMName) { | |
$VMs = @() | |
if ($VMName) { | |
$VMs += Get-VM $VMName | Where-Object State -eq "Running" | |
} else { | |
$VMs += Get-VM | Where-Object State -eq "Running" | |
} | |
ForEach ($VM in $VMs) { | |
$NICs = $VM | Select-Object -ExpandProperty NetworkAdapters | |
if ($NICs) { |