GNU/Linux >> Linux Esercitazione >  >> Linux

Visualizza/manipola gli spazi dei nomi di montaggio in Linux

Sì. Puoi guardare il suo /proc/$PID/mountinfo oppure puoi usare il findmnt -N switch - su quale findmnt --help dice:

  • -N, --task <tid>
    • usa uno spazio dei nomi alternativo (/proc/<tid>/mountinfo file)

findmnt tiene traccia anche del PROPAGATION flag che è un mountinfo campo che riporta esattamente queste informazioni - quali processi condividono quali mount.

Inoltre, puoi sempre nsenter qualsiasi tipo di spazio dei nomi che ti piace, purché tu disponga delle autorizzazioni corrette, ovviamente.

 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).

Linux
  1. Spazi dei nomi Linux

  2. Come visualizzare i metadati delle immagini su Linux

  3. Come eseguire Chroot con gli spazi dei nomi Linux?

  4. Linux – Kernel:supporto per gli spazi dei nomi?

  5. Linux:come elencare gli spazi dei nomi in Linux?

Come montare una condivisione NFS in Linux

Come montare file ISO su Linux

Costruire un contenitore a mano usando gli spazi dei nomi:lo spazio dei nomi di montaggio

Come visualizzare le informazioni sull'hardware in Linux

Comando cronologia in Linux:visualizza la cronologia del terminale Linux

Come montare e visualizzare il file ISO come utente root e normale in Linux