# phpman > man > nsenter(1)

> **TLDR:** Run a new command in a running process' namespace.
>
- Run a specific command using the same namespaces as an existing process:
  `nsenter {{-t|--target}} {{pid}} {{-a|--all}} {{command}} {{command_arguments}}`
- Run a specific command in an existing process's mount|UTS|IPC|network|PID|user|cgroup|time namespace:
  `nsenter {{-t|--target}} {{pid}} --{{mount|uts|ipc|net|pid|user|cgroup}} {{command}} {{command_arguments}}`
- Run a specific command in an existing process's UTS, time, and IPC namespaces:
  `nsenter {{-t|--target}} {{pid}} {{-u|--uts}} {{-T|--time}} {{-i|--ipc}} -- {{command}} {{command_arguments}}`
- Run a specific command in an existing process's namespace by referencing procfs:
  `nsenter {{-p|--pid=}}/proc/{{pid}}/pid/net -- {{command}} {{command_arguments}}`

*Source: tldr-pages*

---

[NSENTER(1)](https://www.chedong.com/phpMan.php/man/NSENTER/1/markdown)                                  User Commands                                 [NSENTER(1)](https://www.chedong.com/phpMan.php/man/NSENTER/1/markdown)



## NAME
       nsenter - run program in different namespaces

## SYNOPSIS
       **nsenter** [options] [_program_ [_arguments_]]

## DESCRIPTION
       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 namespace
           Mounting and unmounting filesystems will not affect the rest of the system, except for
           filesystems which are explicitly marked as shared (with **mount** **--make-shared**; see
           _/proc/self/mountinfo_ for the **shared** flag). For further details, see **mount**___**[namespaces**(7)](https://www.chedong.com/phpMan.php/man/namespaces/7/markdown)
           and the discussion of the **CLONE**___**NEWNS** flag in [**clone**(2)](https://www.chedong.com/phpMan.php/man/clone/2/markdown).

### UTS namespace
           Setting hostname or domainname will not affect the rest of the system. For further
           details, see **uts**___**[namespaces**(7)](https://www.chedong.com/phpMan.php/man/namespaces/7/markdown).

### IPC namespace
           The process will have an independent namespace for POSIX message queues as well as System
           V message queues, semaphore sets and shared memory segments. For further details, see
           **ipc**___**[namespaces**(7)](https://www.chedong.com/phpMan.php/man/namespaces/7/markdown).

### network namespace
           The process will have independent IPv4 and IPv6 stacks, IP routing tables, firewall
           rules, the _/proc/net_ and _/sys/class/net_ directory trees, sockets, etc. For further
           details, see **network**___**[namespaces**(7)](https://www.chedong.com/phpMan.php/man/namespaces/7/markdown).

### PID namespace
           Children will have a set of PID to process mappings separate from the **nsenter** process.
           **nsenter** will fork by default if changing the PID namespace, so that the new program and
           its children share the same PID namespace and are visible to each other. If **--no-fork** is
           used, the new program will be exec’ed without forking. For further details, see
           **pid**___**[namespaces**(7)](https://www.chedong.com/phpMan.php/man/namespaces/7/markdown).

### user namespace
           The process will have a distinct set of UIDs, GIDs and capabilities. For further details,
           see **user**___**[namespaces**(7)](https://www.chedong.com/phpMan.php/man/namespaces/7/markdown).

### cgroup namespace
           The process will have a virtualized view of _/proc/self/cgroup_, and new cgroup mounts will
           be rooted at the namespace cgroup root. For further details, see **cgroup**___**[namespaces**(7)](https://www.chedong.com/phpMan.php/man/namespaces/7/markdown).

### time namespace
           The process can have a distinct view of **CLOCK**___**MONOTONIC** and/or **CLOCK**___**BOOTTIME** which can
           be changed using _/proc/self/timens_offsets_. For further details, see **time**___**[namespaces**(7)](https://www.chedong.com/phpMan.php/man/namespaces/7/markdown).

## OPTIONS
       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)](https://www.chedong.com/phpMan.php/man/namespaces/7/markdown), or the pathname of a
       bind mount that was created on one of those files.

### -a --all
           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(). See [**setns**(2)](https://www.chedong.com/phpMan.php/man/setns/2/markdown) for more details.

### -t --target
           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 respectively

### -m --mount
           Enter 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_.

### -u --uts
           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_.

### -i --ipc
           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_.

### -n --net
           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_.

### -p --pid
           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_.

### -U --user
           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.

### -C --cgroup
           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_.

### -T --time
           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_.

### -G --setgid
           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.

### -S --setuid
           Set the user ID which will be used in the entered namespace. **nsenter** always sets UID for
           user namespaces, the default is 0.

### --preserve-credentials
           Don’t modify UID and GID when enter user namespace. The default is to drops supplementary
           groups and sets GID and UID to 0.

### -r --root
           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.

### -w --wd
           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.

### -F --no-fork
           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.

### -Z --follow-context
           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.)

### -V --version
           Display version information and exit.

### -h --help
           Display help text and exit.

## AUTHORS
       Eric Biederman <<biederm@xmission.com>>, Karel Zak <<kzak@redhat.com>>

## SEE ALSO
       [**clone**(2)](https://www.chedong.com/phpMan.php/man/clone/2/markdown), [**setns**(2)](https://www.chedong.com/phpMan.php/man/setns/2/markdown), [**namespaces**(7)](https://www.chedong.com/phpMan.php/man/namespaces/7/markdown)

## REPORTING BUGS
       For bug reports, use the issue tracker at <https://github.com/karelzak/util-linux/issues>.

## AVAILABILITY
       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/>>.



util-linux 2.37.2                            2021-06-02                                   [NSENTER(1)](https://www.chedong.com/phpMan.php/man/NSENTER/1/markdown)
