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.