Tagged Questions
4
votes
1answer
361 views
How can I access a directory outside a chroot from within it?
I have a user which is chrooted to her home directory, but I want her to also be able to manage files within /var/www. As such, I did the following:
root@server:/home/username# ln -s /var/www www
...
4
votes
2answers
273 views
How to rsync a chroot without breaking symlinks?
I'd like to rsync (backup) a chroot environment from outside the chroot.
For that I first make a lvm snapshot of the chroot volume and then run rsync on that.
The only problem with this approach: ...
6
votes
2answers
779 views
Providing /bin and /lib inside a chroot jail
I need to be able to provide the /bin and /lib directories inside a chroot jail so that programs can dynamically link properly.
Is there a way to accomplish this without making a copy of the /bin and ...