How do I list the mounts of all namespaces?
Linux namespaces allow one to have different mounts for different namespaces. How can I list all mounts of all namespaces?
I have found /proc/*/ns/mnt, but I am not sure what to do with those.
tail -n +1 -- /proc/*/mounts
is per process, but it gets the job done