|
mingetty is short for minimal getty. It provides the consoles (hit Ctrl+Alt+F1 to F6 to cycle through them, Ctrl+Alt+F7 to get back to your graphical X session) and uses about 8KB of kernelspace memory for each instance.
As for httpd, or Apache, the default is starting multiple instances. Edit your config file if it doesn't suite you, but know that if you do lower the number of instances you will probably encounter worse performance. The default should be OK.
Regarding memory usage, I believe Apache uses shared memory - five Apache processes using 9.2MB "each" actually use 9.2MB combined. In Apache2 the "processes" (as shown in top) are actually different threads in the same single Apache2 process.
Addition (edited post): Memory usage is measured quite differently in Linux than in Windows. In Windows, if the NT/2K/XP/03 Task Manager shows 200MB used by programs, that's what is actually in active used, in-RAM swap is not shown by default. The top and free in Linux include the amount of memory used as in-RAM swap. So to get a more Windows-like representation of used memory check the "buffers/cache" line in the output from free -m.
Håkan
Last edited by hw-tph; 03-04-2004 at 07:20 AM.
|