13 lines
188 B
Bash
13 lines
188 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
mount -t proc none ./proc
|
||
|
mount -o bind /dev ./dev
|
||
|
mount -o bind /dev/pts ./dev/pts
|
||
|
mount -o bind /tmp ./tmp
|
||
|
chroot .
|
||
|
|
||
|
umount ./tmp
|
||
|
umount ./dev/pts
|
||
|
umount ./dev
|
||
|
umount ./proc
|