Skip to content

Change root (chroot)

Change root (chroot) is an operation that changes the apparent root directory for the current running process and their children. A program that is run in such a modified environment cannot access files and commands outside that environmental directory tree.

  • Ensure you met all requirements, as per Requirements
  • Mount the temporary API filesystems:
    Terminal window
    cd /location/of/new/root
    mount -t proc proc proc/
    mount --rbind /sys sys/
    mount --rbind /dev dev/
    mount --rbind /run run/ (optionally)
  • If you need to use an internet connection in the chroot environment, copy over the DNS details:
    Terminal window
    cp /etc/resolv.conf etc/resolv.conf
  • Change root into /location/of/new/root, specifying the shell (`/bin/bash` in this example):
    Terminal window
    chroot /location/of/new/root /bin/bash
  • After chrooting it may be necessary to load the local bash configuration:
    Terminal window
    source /etc/profile
    source ~/.bashrc
  • Optionally, create a unique prompt to be able to differentiate your chroot environment:
    Terminal window
    export PS1="(chroot) $PS1"
  • When finished with the chroot, you can exit it via:
    Terminal window
    exit
  • Unmount the temporary file systems:
    Terminal window
    cd /
    umount --recursive /location/of/new/root
    • root privileges
    • another working Linux environment,such as Live CD boot or an existing distribution
    • matching environment architectures of chroot source and destination (check current environment architecture with uname -m)
    • kernel modules which you may need in chroot environment must be loaded (for example, with modprobe)

    Changing root is commonly done for performing system maintenance on systems where booting and/or logging in is no longer possible.

    Common examples are:

    • reinstalling the bootloader
    • rebuilding the initramfs image
    • upgrading or downgrading packages
    • resetting a forgotten password
    • building software in a clean root environment
    • chroot [destination path] [shell or command]