Skip to content

Instantly share code, notes, and snippets.

@nevmerzhitsky
Last active June 16, 2024 08:07
Show Gist options
  • Save nevmerzhitsky/edb04bad208dd82d6d615f938ac7215c to your computer and use it in GitHub Desktop.
Save nevmerzhitsky/edb04bad208dd82d6d615f938ac7215c to your computer and use it in GitHub Desktop.
Shrink a WSL2 Virtual Disk
# Link https://stephenreescarter.net/how-to-shrink-a-wsl2-virtual-disk/
wsl -l -v
wsl --shutdown
diskpart
select vdisk file="D:\WSL\...\ext4.vhdx"
attach vdisk readonly
compact vdisk
detach vdisk
# To shrink a VHDX file (which is used by WSL 2), run as the Power Shell as Administrator and type:
$FilePath = "C:\Path\To\ext4.vhdx"
wsl --shutdown
Mount-VHD -Path $FilePath -ReadOnly
Optimize-VHD -Path $FilePath -Mode Full
Dismount-VHD -Path $FilePath
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment