Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a windows machine and I am running vmware player. I have 1 centos image. At one point the VM was about 12GB.

I deleted many unnecessary files, dropping the size to 4GB

However, this reduction was not reflected in the vmdk

Windows, reports that the size is about 10GB, while centos only uses 4GB

Is there a way to reclaim this space?

Thanks

share|improve this question

3 Answers

up vote 3 down vote accepted

Yes, you can shrink that using "vmware-vdiskmanager". Checkout this article for details.

Also ask yourself - would you need this space later? If this is a non-production environment, and you use it for "home" purposes I strongly recommend moving to other virtualization platform (VirtualBox for example) as it's more user-friendly, more up-to-date and supports most formats of the VMDK files (so migration would be easy).

share|improve this answer
Thanks for the help. Will have a look at virtual box also – Thomas Mar 16 '12 at 20:19

The problem here is that although you have deleted the files in your CentOS VM image, VMware doesn't try to reclaim that space until you explicitly ask it to. Even then, if the disk blocks used by the files have not been zeroed, they will continue to take up space in the vmdk file(s). If you are used to shrinking Windows VMs then this may be unfamiliar to you.

The basic procedure for reclaiming space is:

  • Remove any unnecessary files
  • Zero all free space (not needed for Windows VMs)
  • Use VMware Player or Workstation to shrink the virtual disks.

The specific procedure I used to reduce my CentOS image was to do the following:

df -h
su
yum clean all
cd / ; cat /dev/zero > zero.fill ; sync ; sleep 1 ; sync ; rm -f zero.fill
exit

I then shut down my CentOS VM and used the Compact utility on the Hardware page for the Hard Disk device in Virtual Machine Settings.

After shrinking, the vmdk for the root file system was around the same size as size of the root file system in use, and the vmdk started expanding again as needed from here.

Note that my VM only had a single root partition, if I'd had any other partitions or disks, I would have replaced the cd / part of the fill line with the mount point of the other partitions and then run the shrink utility on each virtual disk.

For more options, see Shrinking VM Disk Images.

If you need instructions to do the same with a Debian based Linux, or want to use the command line utility vmware-vdiskmanager rather than the VMware GUI to shrink the disks, take a look at the article How To Shrink VMware Virtual Disk Files (.vmdk).


If you have been using the VM for some time, you may also benefit from zeroing the swap file. On my CentOS system, I did the following:

$ su
Password: 
# cat /proc/swaps 
Filename                                Type        Size    Used    Priority
/dev/sda3                               partition   2064376 0       -1
# swapoff -a
# cat /proc/swaps 
Filename                Type        Size    Used    Priority
# dd if=/dev/zero of=/dev/sda3 bs=1M
dd: writing `/dev/sda3': No space left on device
2017+0 records in
2016+0 records out
2113929216 bytes (2.1 GB) copied, 24.6894 s, 85.6 MB/s
  • Note: Since we are wiping a whole partition here, make sure that the device you specify for the dd command is the same one shown by the cat /proc/swaps command. To be on the safe side, back up your VM before attempting this.

After shrinking the virtual disk, you will then need to re-enable the swap file. For example:

$ su
Password: 
# free -o
             total       used       free     shared    buffers     cached
Mem:       1030684     344552     686132          0      20956     175912
Swap:            0          0          0
# mkswap /dev/sda3
Setting up swapspace version 1, size = 2064380 KiB
no label, UUID=80276a48-3581-4f7a-8b05-1f2a97169e22
# gedit /etc/fstab
# swapon -a
# free -o
             total       used       free     shared    buffers     cached
Mem:       1030684     346132     684552          0      20968     175912
Swap:      2064376          0    2064376

The gedit/etc/fstab was to replace the old swap UUID with the new one created by mkswap.

Note that this question would really be more appropriate on Superuser or Serverfault than here on Stack Overflow, which is intended to be for programming questions.

share|improve this answer

What you are looking for is (in Version 5 of Player): 1. power down the VM (after the necessary housekeeping of its disks) 2. Edit Virtual Machine Settings 3. Click on Hard Disk (in the left pane) 4. Click on Utilities 5. Select Compact

JMP

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.