'm trying to create a folder (directory) for a jailed user on my server that will allow him to access another folder outside of his jail. I'm trying to do this with symlink but all it does is create a file, instead of a folder. He's using FTP and I want a folder that will behave like all his other folders, except it links to a separate folder. Is there a reason why my symlinks all show up as files? Thanks.
Asked
Active
Viewed 2,510 times
1 Answers
7
I think what you want here, is to bind mount the target directory inside the jail of the user. You can't symlink out of a jail. Look at this, for instance:
mount --bind /media/sdb2/mydocs/archive /home/username/archive

Halfgaar
- 8,084
- 6
- 45
- 86
-
The first parameter is the directory, you want to make accessible by the jail user. the second it the local name visible to the jail user – rubo77 Mar 03 '20 at 14:03