ssh command to read server resources

 
Thread Tools Search this Thread
Operating Systems Linux Fedora ssh command to read server resources
# 1  
Old 08-13-2009
ssh command to read server resources

what is the ssh command to read my server resources, like system operator, Ram installed, CPU etc....?
# 2  
Old 08-13-2009
The same as on the target system, eg. to get the OS and version:
Code:
$ ssh user@remote 'uname -a'

# 3  
Old 08-13-2009
I guess it really depends on the distro you are running. For example, red hat distros (centos, fedora, etc.) use cpuspeed. Whereas Suse uses cpufreq-info. But any command that doesn't require a TERM environment to be set you should be able to execute just (you couldn't run top or anything this way).
# 4  
Old 08-14-2009
cpuspeed and cpufreq-info said command bash not found.
with top show the processes, the memory used, free and the cpu used or free but does not show how much speed the cpu has.

i haave linux centos 5
# 5  
Old 08-14-2009
If you are doing it as a regular user, you more than likely do not have /usr/sbin in you environment, so you either have to include it into your path or type the entire thing out (/usr/sbin/cpuspeed). If you are unsure, on the box in question do a 'whereis cpuspeed'.
# 6  
Old 08-14-2009
If you don't have special tools available, there's always /proc:
Code:
$ cat /proc/cpuinfo | awk -F: '/MHz/ { total++; print "CPU"total": "$2}'
CPU1:  2207.699
$ cat /proc/memifo | grep -i total
MemTotal:        511176 kB
SwapTotal:       979956 kB

# 7  
Old 08-14-2009
For CPU speed in particular, CentOS should have /proc/cpuinfo. Here's an excerpt from mine:

Quote:
processor : 3
vendor_id : GenuineIntel
cpu family : 15
model : 2
model name : Intel(R) Xeon(TM) CPU 2.66GHz
stepping : 5
cpu MHz : 2658.152
cache size : 512 KB
There's a good bit more than that in there, but it appears that this would answer your question. Note, though, that some CPUs are named without reference to the clock speed. You may need to look up the speed online and compare it to the "cpu MHz" line to see if your system is clocking in the right neighborhood.

Similarly, cat /proc/meminfo gives information about the memory, as does top.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Read several variables from command output via SSH

Hi Folks, I'm currently trying to read several values into different variables. Actually, what I'm doing works, but I get an error message. My attempts are: read strCPROC strIPROC strAPROC <<<$(ssh -n -T hscroot@$HMC "lshwres -r proc -m $strIDENT --level sys -F \"configurable_sys_proc_units... (11 Replies)
Discussion started by: NKaede
11 Replies

2. UNIX for Advanced & Expert Users

Command to check if the server is not reachable using ssh

I have list for servers say server1, server2, server3.....server20 I want to test the ssh connectivity of each server, if any one of the server is down then ssh connectivity fails and the script results something like echo "serever is not reachable" Now I m confused using which command shall I... (2 Replies)
Discussion started by: sam@sam
2 Replies

3. Shell Programming and Scripting

Send command via ssh to another server

Hello, i`m tryeing to execute loop on remote server and i have problems with syntax my command is ssh root@server "for i in /vz/private/*; do b=`ls -la $i/usr/bin/crontab | awk '{print $1}'`; echo $b; done" with this command i`m tryeing to get all permissions of file /usr/bin/crontab... (1 Reply)
Discussion started by: bacarrdy
1 Replies

4. Shell Programming and Scripting

Execute command using ssh server 'cmd'

Hi The command below does not work as it require to take command in the breakers But If I do so the variable values get lost ssh testserver01 'dsmc q b "${ARCHIVE_DIR}*" -sub=yes -querysummary -inactive -fromd="${BACKUP_DATE}"' Thank you. (3 Replies)
Discussion started by: zam
3 Replies

5. Shell Programming and Scripting

Connect (SSH) to Windows server via Linux server through a script and passing command.. but failing

I am trying to connect to Windows server via Linux server through a script and run two commands " cd and ls " But its giving me error saying " could not start the program" followed by the command name i specify e g : "cd" i am trying in this manner " ssh username@servername "cd... (5 Replies)
Discussion started by: sunil seelam
5 Replies

6. UNIX for Dummies Questions & Answers

ssh command to execute shell script in another server

ssh -q <hostname> /opt/tcs/satish/tst.ksh ssh -q <anotherserver> /opt/tcs/satish/tst.ksh tst.ksh has "nohup <command> & " when i execute below script , its throwing error as nohup can not be found ssh -q <anotherserver> /opt/tcs/satish/tst.ksh > log & can someone let me... (5 Replies)
Discussion started by: only4satish
5 Replies

7. UNIX Desktop Questions & Answers

ssh command doesnot excute commands in the destination server

Hi All, I have the below code where Iam connecting from xzur111pap server to xzur0211pap server thru ssh to execute some commands. ssh xzur0211pap spaceleft=`df -k /home |tail -1 | awk '{print $5}'` spaceleft=${spaceleft%\%} if ]; then echo "ALERT : HUFS(/home $spaceleft)" exit 0... (3 Replies)
Discussion started by: gaddamja
3 Replies

8. UNIX for Dummies Questions & Answers

Long listing of files using find command on remote server via SSH

Hi , I am trying to find some files on a remote machine using the find command. >ssh -q atukuri@remotehostname find /home/atukuri/ -name abc.txt /home/atukuri/abc.txt The above command works fine and lists the file, but if I want to do a long listing of files (ls -l) its not working . ... (2 Replies)
Discussion started by: atukuri
2 Replies

9. Shell Programming and Scripting

Retrive the value returned by a command excuted in a remote server using ssh

Hello Everybody, I'm facing a weird problem with the awk command. I try to retrieve in a variable the value returned by a simple ls command. ls /export/home/tmp |tail -1 return a good value (the name of the . But When I try to execute the same command in a remote server using ssh as... (2 Replies)
Discussion started by: Jabarod
2 Replies

10. Solaris

solaris server resources utilized

Hi i have a requirement when i have to check the solaris 9 os resources utilised by the applications( Oracle, veritas cluster, veritas net backup ) what are the commands i should use or any utility to check the resources Regards (7 Replies)
Discussion started by: maooah
7 Replies
Login or Register to Ask a Question