#!/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