Where small furry rodents roam free.

This is my little pied-a-terre on the web where I can give my 2 euro-cents about the world.
Feel free to roam around, everything here is cool.
chrooting with udev July 6, 2009
Filed under: Technical — Tags: , , — Gabe @ 11:34 pm

If you’re having issues about commands failing with “function not implemented” when you’re in a chroot, make sure you’ve:

mounted dev:

mount -o bind /dev /mnt/chroot/dev

mounted proc:

mount proc -t proc /mnt/chroot/proc

That should be enough to get stuff working with (as root):

chroot /mnt/chroot/ /bin/bash


Gabe 2008