about summary refs log tree commit diff stats
path: root/linux/scripts/chroot.sh
diff options
context:
space:
mode:
Diffstat (limited to 'linux/scripts/chroot.sh')
-rw-r--r--linux/scripts/chroot.sh9
1 files changed, 9 insertions, 0 deletions
diff --git a/linux/scripts/chroot.sh b/linux/scripts/chroot.sh
new file mode 100644
index 0000000..00fbd78
--- /dev/null
+++ b/linux/scripts/chroot.sh
@@ -0,0 +1,9 @@
+#!/bin/bash
+
+CHROOT=/mnt
+
+chroot $CHROOT /usr/bin/env -i \
+  HOME=/root TERM="$TERM" PS1='\u:\w\$ ' \
+  PATH=/bin:/usr/bin:/sbin:/usr/sbin \
+  /bin/bash --login
+