What is the NFS server configuration file that lists directories to be made available to NFS clients? Provide an example of an entry in this file and explain what it does.
What will be an ideal response?
The NFS server configuration file that lists directories to be made available to NFS clients is /etc/exports. The following is an example of an entry in this file:
/data 192.168.152.133(rw,root_squash,sync,no_subtree_check)
This entry exports the /data directory to a network host with the IP address 192.168.152.133. The options in parentheses are delimited by commas.
You might also like to view...
Information is said to be ________, or distinct; there is no gray.
Fill in the blank(s) with the appropriate word(s).
Match the following terms with the software examples
I. Retail software II. Subscription III. Freeware IV. Shareware V. Donationware A. 30- or 60-day free trial of products from Microsoft, Adobe B. VLC Media Player and FileZilla C. Microsoft Office, Adobe Photoshop, and TurboTax D. Microsoft Office and Adobe Creative Cloud E. Apple iTunes, Evernote, and 7-Zip
________ view is used to modify the design of a form, but does not contain the more advanced features of design view
Fill in the blank(s) with correct word
Which of the following declares an array of int named beta?
A. int beta; B. int[] beta; C. new int beta[]; D. int beta = int[];