I created a VM using Virtual Box, but I gave it 25 GB, and I had 15 GB free. So I deleted it, and soon, uninstalled Virtual Box, but when I open my filesystem's properties, it is full, I mean to say about 80% of it is still in use, and the vdi file isn't anywhere. How do I free it up?
Asked
Active
Viewed 1,181 times
2 Answers
2
By default your VirtualBox files should be located in $HOME/VirtualBox VMs/ so if you navigate there you should easily see if there are any remaining .vdi files still in place.
If your files were in a non-default location try running the following in a Terminal window to find them:
find $HOME -iname *.vdi
And when you find the files you can manually delete them...
References:
andrew.46
- 39,359
1
Uninstall VirtualBox:
sudo apt-get remove --purge virtualbox
Remove all settings:
sudo rm ~/.config/VirtualBox/ -Rf
Eliah Kagan
- 119,640
Mir Rahed Uddin
- 649