Last active
June 16, 2024 08:07
-
-
Save nevmerzhitsky/edb04bad208dd82d6d615f938ac7215c to your computer and use it in GitHub Desktop.
Shrink a WSL2 Virtual Disk
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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