Granny's Programming Pearls
"inside of every large program is a small program struggling to get out"
JavaRanch.com/granny.jsp
  • Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

How can I check the remote host parameters?

 
Ranch Hand
Posts: 120
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
How can I check the remote host parameters like memory size, speed of CPU, size of hard drive, number of hard disks?

I used "uname -a" and it just showed the following information:

OSF1 something.myuniversityname.edu V4.0 1229 alpha

I think it means that the OS is OSF1, version 4.0 1229, and the CPU is alpha. Nothing more about the remote host.

I wanna know more about it, any guru please?
 
High Plains Drifter
Posts: 7289
Netbeans IDE VI Editor
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Reporting the hardware of a particular system is, not surprisingly, varies with the OS.
Solaris carries several command to report on the aspects you're interested in. For example, prtdiag (1M) will tell you the component types installed for CPU, memory and I/O cards. uname is a SVID (System V Interface Definition) standard, but how it is implemented depends on the vendor. In other words, the output of uname will only represent a lowest common denominator of information that every hardware/OS vendor agrees on.
 
Sheriff
Posts: 7001
6
Eclipse IDE Python C++ Debian Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
OSF/1 is a bit backward in such things (no dmesg, no proc addons etc.) but you can look at the boot log information in /var/adm/messages or the (supposedly) more readable version of the same information using
/usr/sbin/uerf
Hope that helps
 
Eat that pie! EAT IT! Now read this tiny ad. READ IT!
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic