Expand Directory Size with additional drive but keep using the same directory #1301
-
Hi. I want to use MergeFS but i don't know if the following scenario is possible. We have an app that writes data to The VM is configured without LVM. The The problem is the disk (sda) is near full. I was searching for a way to insert another disk to the VM (sdb) and somehow (with mergefs?) expand the size of sda under For example, this is my current df -kh command from my VM
I want to add another 100GB drive (sdb) and somehow the above df command be like
Is this possbile with mergefs and how? If it is not possible. Can i use the sdb disk to expand the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 11 replies
-
Yes, mergerfs can combine paths. That's it's whole purpose in life... but why not create a new virtual drive and mount it to /app/data or wherever? |
Beta Was this translation helpful? Give feedback.
mergerfs is a union filesystem. It works exactly as described in the docs. It does not work on partitions or raw devices. It works on filesystems. But yes. That's the whole point of a union filesystem. To create a union of other filesystems.