diff options
Diffstat (limited to 'chroot/ubuntu2204.sh')
-rwxr-xr-x | chroot/ubuntu2204.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/chroot/ubuntu2204.sh b/chroot/ubuntu2204.sh new file mode 100755 index 0000000..792270b --- /dev/null +++ b/chroot/ubuntu2204.sh @@ -0,0 +1,9 @@ +#!/bin/sh + +CHROOT_DIR=/home/devi/chroots/ubuntu2204 +sudo mount -t proc proc $CHROOT_DIR/proc/ +sudo mount -t sysfs sys $CHROOT_DIR/sys/ +# sudo mount -o bind /tmp $CHROOT_DIR/tmp/ +# sudo mount -o bind /dev $CHROOT_DIR/dev/ +sudo mount -t devpts none "$CHROOT_DIR/dev/pts" -o ptmxmode=0666,newinstance +sudo chroot $CHROOT_DIR |