Đúng. Bạn có thể nhìn vào nó /proc/$PID/mountinfo
hoặc nếu không bạn có thể sử dụng công findmnt -N
tắc - nói về findmnt --help
:
-N, --task <tid>
- sử dụng không gian tên thay thế (
/proc/<tid>/mountinfo
tệp)
findmnt
cũng theo dõi PROPAGATION
cờ là mountinfo
trường báo cáo chính xác thông tin này - quá trình chia sẻ gắn kết nào.
Ngoài ra, bạn luôn có thể nsenter
bất kỳ loại không gian tên nào bạn thích - tất nhiên với điều kiện bạn có quyền chính xác.
nsenter --help
Usage:
nsenter [options] <program> [args...]
Options:
-t, --target <pid> target process to get namespaces from
-m, --mount [=<file>] enter mount namespace
-u, --uts [=<file>] enter UTS namespace (hostname etc)
-i, --ipc [=<file>] enter System V IPC namespace
-n, --net [=<file>] enter network namespace
-p, --pid [=<file>] enter pid namespace
-U, --user [=<file>] enter user namespace
-S, --setuid <uid> set uid in user namespace
-G, --setgid <gid> set gid in user namespace
-r, --root [=<dir>] set the root directory
-w, --wd [=<dir>] set the working directory
-F, --no-fork do not fork before exec'ing <program>
-h, --help display this help and exit
-V, --version output version information and exit
For more details see nsenter(1).