I have created a chroot jail, but now I want to be able to create a link within the jail which links outside of the jail. Is this possible?

link|improve this question

60% accept rate
feedback

2 Answers

up vote 4 down vote accepted

The only method I can think of is used of a bind mount. A quick google found http://docs.1h.com/Bind_mounts

link|improve this answer
This is, pretty much the only way to do it, and it's how openvz does it. – Tom O'Connor Jan 18 at 0:22
1  
Yes, indeed: mount --bind /old /new – yarek Jan 18 at 0:37
Thanks, worked perfectly. – chudapati09 Jan 18 at 22:21
feedback

Yes, as Christopher said, a bind mount will work. But I think it will work only with directories and not at file level.

If you need file links you can use hard links but it will only work within a Linux ext filesystem (don't know if other fs support it)

See Here for a description of the difference between hard and soft links.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.