Skip to content

Instantly share code, notes, and snippets.

View miliarch's full-sized avatar
💻
Computing around

miliarch

💻
Computing around
View GitHub Profile
@miliarch
miliarch / arch-linux-essential-post-install-config.md
Last active February 1, 2024 08:58
Arch Linux: Essential Post-Install Configuration
@miliarch
miliarch / install-arch-in-virtual-machine.md
Last active September 23, 2024 23:38
Install Arch Linux in a Virtual Machine
@miliarch
miliarch / docker-desktop-wsl2.md
Last active April 5, 2024 10:20
Install Docker Desktop for Windows with WSL2 backend

Install Docker Desktop for Windows with WSL2 backend

Video tutorial

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

References

I used the following references to learn how to install Docker Desktop and WSL2:

@miliarch
miliarch / get-guestinfo.ps1
Created January 30, 2020 09:01
PowerShell function to list IP address detail for running Hyper-V VMs
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) {