chroot
chroot FILENAME
chroot
This function works like the system call by the same name: it makes the named directory the new root directory for all further pathnames that begin with a /
by your process and all its children. (It doesn't change your current working directory, which is unaffected.) For security reasons, this call is restricted to the superuser. If FILENAME is omitted, does a chroot
to $_
.
NOTE: It is good security practice to do chdir("/")
(to the root directory) immediately after a chroot()
.
Portability issues: chroot in perlport.
© 1993–2016 Larry Wall and others
Licensed under the GNU General Public License version 1 or later, or the Artistic License.
The Perl logo is a trademark of the Perl Foundation.
https://perldoc.perl.org/5.20.2/functions/chroot.html