I am using a cowdancer/debootstrap setup to generate a chroot.
Of course, as I iterate, I generate some chroot configurations that are bad.
I have found myself in an awkward situation where I have a slew of files under /proc that are refusing to be deleted.
When I sudo rm -rf z_needs_to_be_deleted
, I get a ton of messages that look analogous to this:
rm: cannot remove 'z_needs_to_be_deleted/var/cache/pbuilder/build/cow.13620/
proc/6352/task/6358/loginuid': Permission denied
How do I kill off this chroot?
/dev
is typically a writable instance of tmpfs, maintained by udev. – u1686_grawity Jun 03 '11 at 12:28/dev/fd
, which is typically a symlink to/proc/self/fd
. IIRC there are some ALSA symlinks around as well. – geekosaur Jun 03 '11 at 14:49