Translations:Chroot/23/ja

From Gentoo Wiki
Jump to:navigation Jump to:search

start() {

    ebegin "Mounting chroot directories"
    mount -o bind /dev /mnt/mychroot/dev > /dev/null &
    mount -t proc none /mnt/mychroot/proc > /dev/null &
    mount -o bind /sys /mnt/mychroot/sys > /dev/null &
    mount -o bind /tmp /mnt/mychroot/tmp > /dev/null &
    eend $? "An error occurred while mounting chroot directories"

}