Storage Node Disk Usage 95% Full
-
Hi Guys,
How do I free up space with this? I’ve been creating images and then deleting them, but the Storage Disk Node keeps getting closer and closer to 100%. I’m worried what will happen when it finally gets too full.
-
@jcabuco Run
du -h --max-depth=1 /images
to get an idea of how much space each image uses.In case you really know what you are doing you can also delete those that you really don’t need anymore from the disk:
rm -rf /images/nameofimage
Be aware that there is no recovery as soon as you hit ENTER on the remove command! -
Or you can move those you don’t use too often to an external drive. I do that because my deployment machine is a laptop with an SSD.
The image info remains on the FOG database, so if you need the image again, just copy it back. -
@Sebastian-Roth Brilliant. Thank you so much!