4 echo "termux-chroot: Setup a chroot to mimic a normal Linux file system"
6 echo "Execute without arguments to run a chroot with traditional file system"
7 echo "hierarchy (having e.g. the folders /bin, /etc and /usr) within Termux."
11 # For the /system/bin/linker(64) to be found:
12 ARGS="-b /system:/system"
14 # Bind $PREFIX so Termux programs expecting
15 # to find e.g. configurations files there work.
16 ARGS="$ARGS -b $PREFIX/..:$PREFIX/.."
18 # Expose external and internal storage:
19 if [ -d /storage ]; then
20 ARGS="$ARGS -b /storage:/storage"
23 # Mimic traditional Linux file system hierarchy - /usr:
24 ARGS="$ARGS -b $PREFIX:/usr"
26 # Mimic traditional Linux file system hierarchy - other Termux dirs:
27 for f in bin etc lib share tmp var; do
28 ARGS="$ARGS -b $PREFIX/$f:/$f"
31 # Mimic traditional Linux file system hierarchy- system dirs:
33 ARGS="$ARGS -b /$f:/$f"
36 # Set /home as current directory:
37 ARGS="$ARGS --cwd=/home"
39 # Root of the file system:
40 ARGS="$ARGS -r $PREFIX/.."
44 if [ -x $HOME/.termux/shell ]; then
45 PROGRAM=`readlink -f $HOME/.termux/shell`
47 ARGS="$ARGS $PROGRAM -l"
50 $PREFIX/bin/proot $ARGS