Skip to content

Instantly share code, notes, and snippets.

@schtobia
Last active March 22, 2024 18:13
Show Gist options
  • Star 9 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save schtobia/ea1b786d915415f86099 to your computer and use it in GitHub Desktop.
Save schtobia/ea1b786d915415f86099 to your computer and use it in GitHub Desktop.
Mount /tmp, /dev/pts, /dev/shm and /proc into chroot and change into chroot
#! /bin/sh
[ ! -d "$1" ] && echo "$1 is not a valid directory." && exit 1;
trap "umount \"${1}\"/tmp \"${1}\"/dev/null \"${1}\"/dev/pts \"${1}\"/dev/random \"${1}\"/dev/shm \"${1}\"/dev/urandom \"${1}\"/proc" EXIT INT TERM HUP PIPE &&
mount --bind /tmp "${1}/tmp" && \
mount --bind /dev/null "${1}/dev/null" && \
mount --bind /dev/pts "${1}/dev/pts" && \
mount --bind /dev/random "${1}/dev/random" && \
mount --bind /dev/shm "${1}/dev/shm" && \
mount --bind /dev/urandom "${1}/dev/urandom" && \
mount --bind /proc "${1}/proc" && \
chroot "$@";
@schtobia
Copy link
Author

The shortened URL for this script is https://tms.pw/tschroot .

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment