Close Menu
    Facebook X (Twitter) Instagram
    Command Linux
    • About
    • How to
      • Q&A
    • OS
      • Windows
      • Arch Linux
    • AI
    • Gaming
      • Easter Eggs
    • Statistics
    • Blog
      • Featured
    • MORE
      • IP Address
      • Man Pages
    • Write For Us
    • Contact
    Command Linux
    Home - man page - UNSHARE

    UNSHARE

    WillieBy WillieApril 25, 2026Updated:April 25, 2026No Comments3 Mins Read
     

    NAME

    unshare – run program with some namespaces unshared from parent  

    SYNOPSIS

    unshare [options] program [arguments]  

    DESCRIPTION

    Unshares the indicated namespaces from the parent process and then executes the specified program. The namespaces to be unshared are indicated via options. Unshareable namespaces are:
    mount namespace
    Mounting and unmounting filesystems will not affect the rest of the system (CLONE_NEWNS flag), except for filesystems which are explicitly marked as shared (with mount –make-shared; see /proc/self/mountinfo for the shared flags).

    It’s recommended to use mount –make-rprivate or mount –make-rslave after unshare –mount to make sure that mountpoints in the new namespace are really unshared from the parental namespace.

    UTS namespace
    Setting hostname or domainname will not affect the rest of the system. (CLONE_NEWUTS flag)
    IPC namespace
    The process will have an independent namespace for System V message queues, semaphore sets and shared memory segments. (CLONE_NEWIPC flag)
    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. (CLONE_NEWNET flag)
    pid namespace
    Children will have a distinct set of PID to process mappings from their parent. (CLONE_NEWPID flag)
    user namespace
    The process will have a distinct set of UIDs, GIDs and capabilities. (CLONE_NEWUSER flag)

    See clone(2) for the exact semantics of the flags.  

    OPTIONS

    -h, –help
    Display help text and exit.
    -i, –ipc
    Unshare the IPC namespace.
    -m, –mount
    Unshare the mount namespace.
    -n, –net
    Unshare the network namespace.
    -p, –pid
    Unshare the pid namespace. See also the –fork and –mount-proc options.
    -u, –uts
    Unshare the UTS namespace.
    -U, –user
    Unshare the user namespace.
    -f, –fork
    Fork the specified program as a child process of unshare rather than running it directly. This is useful when creating a new pid namespace.
    –mount-proc[=mountpoint]
    Just before running the program, mount the proc filesystem at mountpoint (default is /proc). This is useful when creating a new pid namespace. It also implies creating a new mount namespace since the /proc mount would otherwise mess up existing programs on the system. The new proc filesystem is explicitly mounted as private (by MS_PRIVATE|MS_REC).
    -r, –map-root-user
    Run the program only after the current effective user and group IDs have been mapped to the superuser UID and GID in the newly created user namespace. This makes it possible to conveniently gain capabilities needed to manage various aspects of the newly created namespaces (such as configuring interfaces in the network namespace or mounting filesystems in the mount namespace) even when run unprivileged. As a mere convenience feature, it does not support more sophisticated use cases, such as mapping multiple ranges of UIDs and GIDs.
     

    Willie
    • Website

    Willie has over 15 years of experience in Linux system administration and DevOps. After managing infrastructure for startups and enterprises alike, he founded Command Linux to share the practical knowledge he wished he had when starting out. He oversees content strategy and contributes guides on server management, automation, and security.

    Related Posts

    XMAG

    April 30, 2026

    GIT-SUBTREE

    April 30, 2026

    XARGS

    April 30, 2026

    EPOLL_WAIT

    April 30, 2026
    Top Posts

    GJAR

    February 2, 2026

    REALPATH

    February 20, 2026

    NC

    January 16, 2026

    How To Check RHEL Version in Linux

    January 8, 2026
    • Home
    • Contact Us
    • Privacy Policy
    • Terms of Use

    Type above and press Enter to search. Press Esc to cancel.