diff options
author | terminaldweller <thabogre@gmail.com> | 2022-02-13 16:58:00 +0000 |
---|---|---|
committer | terminaldweller <thabogre@gmail.com> | 2022-02-13 16:58:00 +0000 |
commit | 32fc608650b5aa824d87182e0491e0d9f5da7efe (patch) | |
tree | 70bb1649076c5964fc058a30abb86d4ba5a34a57 /chroot/voidglibc.sh | |
parent | more polishing for clipd (diff) | |
download | scripts-32fc608650b5aa824d87182e0491e0d9f5da7efe.tar.gz scripts-32fc608650b5aa824d87182e0491e0d9f5da7efe.zip |
updates
Diffstat (limited to 'chroot/voidglibc.sh')
-rwxr-xr-x | chroot/voidglibc.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/chroot/voidglibc.sh b/chroot/voidglibc.sh index 90b440b..bc2c47b 100755 --- a/chroot/voidglibc.sh +++ b/chroot/voidglibc.sh @@ -5,4 +5,6 @@ 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/ +mkdir -p "$CHROOT_DIR/dev/pts" +sudo mount -t devpts none "$CHROOT_DIR/dev/pts" -o ptmxmode=0666,newinstance sudo chroot $CHROOT_DIR |