Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save nosmall/4dcead7ae2758795dd0dd7b8839cd894 to your computer and use it in GitHub Desktop.
Save nosmall/4dcead7ae2758795dd0dd7b8839cd894 to your computer and use it in GitHub Desktop.
Compacting Hyper-V VHDX Files of Ubuntu Linux VMs

Linux

# Optional CRON
crontab -e
0 0 1 * * PATH='/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin' fstrim -v / >> /var/log/cron-fstrim.txt 2>&1

# This is FAAAST
sudo fstrim -v /

# next
sudo shutdown now

PowerShell - Hyper-V

  • -Path ?? "D:\HYPER-V\VM_SRV3"
  • -Filter ?? "*.vhdx"
# If VM is OFF or SAVED
$Path = "D:\HYPER-V\VM_SRV2_old"; $Filter = "*.vhdx"; gci -File -Filter $Filter -Path $Path -Recurse | % {Mount-VHD $_.FullName -ReadOnly; Optimize-VHD $_.FullName -Mode full; Dismount-VHD $_.FullName};

# If a virtual machine is started, it will be stopped and then started
.to do..
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment