InterviewSolution
Saved Bookmarks
| 1. |
How Can You Find Out How Much Memory Linux Is Using? |
|
Answer» From a COMMAND shell, use the “concatenate” command: CAT /proc/meminfo for memory usage information. You should see a LINE starting something like: MEM: 64655360, etc. This is the total memory Linux thinks it has available to use. From a command shell, use the “concatenate” command: cat /proc/meminfo for memory usage information. You should see a line starting something like: Mem: 64655360, etc. This is the total memory Linux thinks it has available to use. |
|