CARVIEW |
- #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 achroot
to$_
.NOTE: It is mandatory for security to
chdir("/")
(chdir
to the root directory) immediately after achroot
, otherwise the current working directory may be outside of the new root.Portability issues: "chroot" in perlport.
Perldoc Browser is maintained by Dan Book (DBOOK). Please contact him via the GitHub issue tracker or email regarding any issues with the site itself, search, or rendering of documentation.
The Perl documentation is maintained by the Perl 5 Porters in the development of Perl. Please contact them via the Perl issue tracker, the mailing list, or IRC to report any issues with the contents or format of the documentation.