LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   Processor/RAM speed (https://www.linuxquestions.org/questions/linux-newbie-8/processor-ram-speed-696059/)

an_sush 01-09-2009 05:29 AM

Processor/RAM speed
 
whats the command to print processor speed, RAM available?

linuxlover.chaitanya 01-09-2009 05:30 AM

free -m can give you an idea of your physical memory. For processor you can get information from a file /proc/cpuinfo

divyashree 01-09-2009 10:46 AM

U can see prcessor speed in /proc/cpuinfo and for RAM u can use top or /proc/meminfo

AuroraCA 01-09-2009 11:57 AM

If you ever wonder what the commands are in Linux to perform a specific function you can get a list of commands and a description of what they do with the following command typed in terminal mode:
Code:

apropos {key words}
For instance to find commands which give information about memory:
Code:

apropos memory
Once you find a command you wish to use if you need more information on how to use that command, type:
Code:

man {command}
For example:
Code:

man free
will give the manual page on the free command.


All times are GMT -5. The time now is 01:42 AM.