What is tmpfs and why is it using most of my hdd space?

I installed Ubuntu Server to run a local Ark server, and am running out of disk space. When I went to check why (Since the ark install is only ~6GB and I allocated 30GB to the VM) I found that there are 5 filesystems called tmpfs that together use 16GB of HDD space, and another called udev that's using an additional 5GB.

Result of df -h:

enter image description here

Why are these eating up the majority of my space, and how do I move that space over to my filesystem so I can utilize it?

Edit: /dev/sda1 is already 30GB, but I can only use 15GB of it?

1

1 Answer

tmpfs and udev are virtual file systems. They don't allocate any disk space but dynamically use RAM to store their files. As their content is lost when you shutdown the system they are used for files which should not survive a reboot.

2

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like