Q1) Chroot jail is used to _______ process and its children by ________ to the supplied directory name. isolate, changing the root directory -> change, the name execute, renaming it All of the above Reason : A chroot jail is a way to isolate a process and its children from the rest of the system. It should only be used for processes that don't run as root, as root users can break out of the jail very easily Q2) Taliking about FreeBSD jail, which of the following is true ? It can only bind to sockets with specified IP address and authorized ports -> It can communicate with processes inside and outside of jail Root is limited (example: cannot load kernel modules) None of the above Reason : The jail mechanism is an implementation of FreeBSD's OS-level virtualisation that allows system administrators to partition a FreeBSD-derived computer system into several independent mini-systems called jails, all sharing the sam...