Linux - GeneralThis Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
I don't have to tell you that I am new to *nix.
I have three doubts in my mind reagarding configuration of server.
If someone don't have the physical access to the computer.
Is there any way or command in telnet through which we can check what is the processor speed and brand of the processor.
Like how can we find out between brand and CPU speed.
Celeron 800
Pentium 800
Amd 800
all the above processors are of 800Mhz?
How can we check if ram is working fine in server or not. And how can we increase the virtual memory?
How to find out if the HDD is SCSI or IDE?
to check the proc speed and get info type "cat /proc/cpuinfo"
Most installations have a program called top which will allow you to monitor your memory usage. As well you can CAT another file from /proc out to the screen but its not near as helpfull as top because top updates the info.
To check if a hard drive is SCSI or IDE you can look in /etc/fstab and see what device it is if its /dev/hda1 or /dev/hdaX or /dev/hdbX then its IDE if you are seeing /dev/scdX then its SCSI. You can run hdparm on the devices and get even more info on the drives such as CHS and serial numbers and the like. Also to check HD size and usage you can use "df -h <drive name>"
"To check if a hard drive is SCSI or IDE you can look in /etc/fstab and see what device it is if its /dev/hda1 or /dev/hdaX or /dev/hdbX then its IDE if you are seeing /dev/scdX then its SCSI."
Originally posted by bretthoward to check the proc speed and get info type "cat /proc/cpuinfo"
Most installations have a program called top which will allow you to monitor your memory usage. As well you can CAT another file from /proc out to the screen but its not near as helpfull as top because top updates the info.
To check if a hard drive is SCSI or IDE you can look in /etc/fstab and see what device it is if its /dev/hda1 or /dev/hdaX or /dev/hdbX then its IDE if you are seeing /dev/scdX then its SCSI. You can run hdparm on the devices and get even more info on the drives such as CHS and serial numbers and the like. Also to check HD size and usage you can use "df -h <drive name>"
Hope this helps....
Brett
How to run hdparm like this
#hdparm
and how can I check the RAM and VIRTUAL MEMORY of the server.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.