List the advantages of the PureFTPd Server.
What will be an ideal response?
SLES 11 includes two FTP servers, the Very Secure FTP daemon vsftpd and the PureFTPd FTP server. Several other FTP servers are available for Linux, such as the standard FTP server, in.ftpd, the FTP server from Washington University, wu.ftpd, and proftpd, but these are not included with SLES 11.
PureFTPd has several features that make it stand out from other FTP servers:
* Consistent use of chroot environments
* Uncomplicated configuration of virtual FTP servers
* Virtual users independent of the system users listed in the /etc/passwd file
* Configuration via command line parameters or with a configuration file
You might also like to view...
In the following code that uses recursion to find the greatest common divisor of a number, what is the base case?
``` public static int gcd(int x, int y) { if (x % y == 0) return y; else return gcd(y, x % y); } ``` a. gcd(int x, int y) b. if (x % y == 0) return y; c. else return gcd(y, x % y); d. Cannot tell from this code
The __________ incorporates routines that allow the user or programmer to create, delete, modify, and manipulate files by name.
a. file system b. shell c. user interface d. IOCS
Giving each process a slice of time before being preempted is a technique known as ________
Fill in the blank(s) with the appropriate word(s).
Create an HTML page that a restaurant could use to display its daily specials. Include a price and description for each special. Include the applet for computing a tip from the previous exercise.
What will be an ideal response?