I'm on a quest to access /cow/upper
when Linux is booted from liveUSB
$ mount | grep over
/cow on / type overlay (rw,relatime,lowerdir=filesystem.squashfs,upperdir=/cow/upper,workdir=/cow/work)
Recently I've got a new idea to use unshare --mount
, but on trying after that # umount /
I get "target busy". Doing it right away was "overoptimistic", I did not think that namespace might be dependent on file structure. Is there a way to make a namespace to be able to unmount root?
P.S. other creative ways to read /cow/upper
?