You have decided to use a third-party web application to manage a Linux server that is a virtualization host for number of VMs. What would be the benefit of installing the application in a chroot directory?

A. encrypts the directory
B. prevents access to the directory
C. prevents the application from accessing any data outside of the directory
D. prevents from unmounting unexpectedly


C
Explanation: The chroot command changes the parent root directory for the current running process and its children. A program that is run in such a modified environment cannot access files outside the designated directory tree.

Computer Science & Information Technology

You might also like to view...

Consider the iostream library, in particular, cout and endl. Assume that the #include has been executed. At this point, there are three ways to specify cout and endl so the compiler will be able to find these names when you output say “Hello World”. Give all three methods.

What will be an ideal response?

Computer Science & Information Technology

Define a FIXED number by the grammar: N -> D. | D.D D -> ND | N N -> 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 Give a regular expression for FIXED numbers.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

________ codes can be used to record Web addresses

Fill in the blank(s) with correct word

Computer Science & Information Technology

What is the result of the following expression?

2 * 7 + 8 - 6 / 2 What will be an ideal response?

Computer Science & Information Technology