Having just written an answer about moving /usr to a new partition I was wondering about deleting files once a new partition has been mounted. To use the example from the question, is it possible to mount a new partition on /usr
and then delete all the files under /usr
on the root partition to free up space on the root partition.
Not directly, but there is a way around that:
mount --bind
is your friend:See also
man mount
-- search for "bind mounts".