nsenter - run program in different namespaces
| Use Case | Command | Description |
|---|---|---|
| đī¸ Enter a specific namespace (e.g., mount) | nsenter -t PID -m /bin/bash | Enter the mount namespace of a target process and run a shell |
| đ Enter all namespaces | nsenter -t PID -a /bin/bash | Enter all namespaces of the target process (user namespace may be skipped) |
| đ Run command in container's namespace | nsenter -t CONTAINER_PID -m -u -i -n -p /bin/sh | Enter multiple namespace types (mount, UTS, IPC, network, PID) of a container |
| đ¤ Set user/group ID in namespace | nsenter -t PID -U -S 1000 -G 1000 /bin/bash | Enter user namespace with specific UID and GID |
| đ Use custom namespace file | nsenter --mount=/path/to/ns/mnt /bin/bash | Enter a namespace using a custom file path |
| đĢ No fork (PID namespace) | nsenter -t PID -p -F /bin/bash | Enter PID namespace without forking (exec directly) |
nsenter [options] [program [arguments]]
The nsenter command executes program in the namespace(s) that are specified in the command-line options (described below). If program is not given, then "${SHELL}" is run (default: /bin/sh).
Enterable namespaces are:
mount --make-shared; see /proc/self/mountinfo for the shared flag). For further details, see mount_namespaces(7) and the discussion of the CLONE_NEWNS flag in clone(2)./proc/net and /sys/class/net directory trees, sockets, etc. For further details, see network_namespaces(7).--no-fork is used, the new program will be exec'ed without forking. For further details, see pid_namespaces(7)./proc/self/cgroup, and new cgroup mounts will be rooted at the namespace cgroup root. For further details, see cgroup_namespaces(7).CLOCK_MONOTONIC and/or CLOCK_BOOTTIME which can be changed using /proc/self/timens_offsets. For further details, see time_namespaces(7).Various of the options below that relate to namespaces take an optional file argument. This should be one of the /proc/[pid]/ns/* files described in namespaces(7), or the pathname of a bind mount that was created on one of those files.
Enter all namespaces of the target process by the default /proc/[pid]/ns/* namespace paths. The default paths to the target process namespaces may be overwritten by namespace specific options (e.g., --all --mount=[path]).
The user namespace will be ignored if the same as the caller's current user namespace. It prevents a caller that has dropped capabilities from regaining those capabilities via a call to setns(2). See setns(2) for more details.
Specify a target process to get contexts from. The paths to the contexts specified by pid are:
/proc/pid/ns/mnt â the mount namespace/proc/pid/ns/uts â the UTS namespace/proc/pid/ns/ipc â the IPC namespace/proc/pid/ns/net â the network namespace/proc/pid/ns/pid â the PID namespace/proc/pid/ns/user â the user namespace/proc/pid/ns/cgroup â the cgroup namespace/proc/pid/ns/time â the time namespace/proc/pid/root â the root directory/proc/pid/cwd â the working directory respectivelyEnter the mount namespace. If no file is specified, enter the mount namespace of the target process. If file is specified, enter the mount namespace specified by file.
Enter the UTS namespace. If no file is specified, enter the UTS namespace of the target process. If file is specified, enter the UTS namespace specified by file.
Enter the IPC namespace. If no file is specified, enter the IPC namespace of the target process. If file is specified, enter the IPC namespace specified by file.
Enter the network namespace. If no file is specified, enter the network namespace of the target process. If file is specified, enter the network namespace specified by file.
Enter the PID namespace. If no file is specified, enter the PID namespace of the target process. If file is specified, enter the PID namespace specified by file.
Enter the user namespace. If no file is specified, enter the user namespace of the target process. If file is specified, enter the user namespace specified by file. See also the --setuid and --setgid options.
Enter the cgroup namespace. If no file is specified, enter the cgroup namespace of the target process. If file is specified, enter the cgroup namespace specified by file.
Enter the time namespace. If no file is specified, enter the time namespace of the target process. If file is specified, enter the time namespace specified by file.
Set the group ID which will be used in the entered namespace and drop supplementary groups. nsenter always sets GID for user namespaces, the default is 0.
Set the user ID which will be used in the entered namespace. nsenter always sets UID for user namespaces, the default is 0.
Don't modify UID and GID when enter user namespace. The default is to drops supplementary groups and sets GID and UID to 0.
Set the root directory. If no directory is specified, set the root directory to the root directory of the target process. If directory is specified, set the root directory to the specified directory.
Set the working directory. If no directory is specified, set the working directory to the working directory of the target process. If directory is specified, set the working directory to the specified directory.
Do not fork before exec'ing the specified program. By default, when entering a PID namespace, nsenter calls fork before calling exec so that any children will also be in the newly entered PID namespace.
Set the SELinux security context used for executing a new process according to already running process specified by --target PID. (The util-linux has to be compiled with SELinux support otherwise the option is unavailable.)
Display version information and exit.
Display help text and exit.
Eric Biederman <biederm AT xmission.com>, Karel Zak <kzak AT redhat.com>
clone(2), setns(2), namespaces(7)
For bug reports, use the issue tracker at https://github.com/karelzak/util-linux/issues.
The nsenter command is part of the util-linux package which can be downloaded from Linux Kernel Archive <https://www.kernel.org/pub/linux/utils/util-linux/>.
Generated by phpman v4.9.26-1-g511901d Author: Che Dong Under GNU General Public License
2026-08-05 22:51 @216.73.216.192
CrawledBy Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
Enhanced by LLM: deepseek-v4-flash / taotoken.net / www.chedong.com - original format