|
|
|
|
|
by Dylan16807
1832 days ago
|
|
Let's say you want to clear out part of a snapshot of /home, but keep the rest. So you clone it and delete some files. All good so far, but the snapshot is still wasting space and needs to be deleted. But to make this happen, your clone has to stop being copy-on-write. All the data that exists in both /home and the clone will now be duplicated. And you could say "plan ahead more", but even if you split up your drive into many filesystems, now you have the problem that you can't move files between these different directories without making extra copies. |
|