Script to get system configuration


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users Script to get system configuration
# 1  
Old 10-27-2008
Script to get system configuration

Hi,

We have >1000 UNIX boxes in our environment with various UNIX flavors like Solaris, HP-UX and Redhat Linux ES 3/4/5. We need to collect their system configuration like

- No. of CPUs and their frequencies
- RAM Size
- No. of HDDs installed and their usage
- Exact OS Version and its revision.

I think it's best to write a Generic Script so that it can be run on ALL UNIX flavors and get the system configuration and pipe to a file.

Does anyone have this script? Please help.

Thanks
Prvn
# 2  
Old 10-27-2008
I doubt that anyone has such script, but I'll be happy to see it. My suggestion is :
write an TCL / expect script, that will connect to all your servers, and get the info based on OS type.
Sample logic as follows :
Code:
$ list of servers to connect to = server1, server2, server3, etc.
# few functions : 
function Linux { 
# execute list of commands to get the info you want : 
exec (uname -a, cat /proc/cpuinfo, free -mt, etc)
}
function Solaris { 
exec (prtconf, prtdiag, psrinfo, etc)
}
main { 
if OS = Linix then Linux()
elsif OS = Solaris then Solaris(), etc
}
# Define a way to write to a log file, based on the selected language, and some date/timestamp.

You can use TCL/Expect, as I said, or use Perl, in particular Perl's implementation of Expect library.
HTH. I'd love to see ready script, this can be very useful, as writing such script from scratch may be extensive and time consuming task.
# 3  
Old 10-27-2008
Hi.

I think I responded to a similar query in another forum recently. I'll look around.

In the meantime, there are a few items found here: freshmeat.net: Search results - +System +Configuration +Collector

An interview with the author of one is at Interview with Siem Korteweg: System Configuration Collector - The Community's Center for Security

Another item posted long ago is at Sysinfo - A Linux Box System Information Retriever - sysinfo

A commercial utility is MagniComp - SysInfo(TM) Total System and Storage Asset Information

cheers, drl
# 4  
Old 10-27-2008
Hi.

Apparently it was on this self-same forum: https://www.unix.com/shell-programmin...ight=magnicomp
... cheers, drl
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Ubuntu

Create a CD with snapshot of the system after install and configuration

Hello folks, I pretend install Lubuntu 16.04 LTS in pc for any employer use this pc! I think create an user with, only, permission to read and write, 770. This is the best scenario? I think create this user through terminal, because I pretend create a script, and I don't where wizard has... (0 Replies)
Discussion started by: enodev
0 Replies

2. Shell Programming and Scripting

Wich tool for check that two system have the same configuration

Hello , On a couple of system I have to check that systems have the same configuration. This system are part of manual cluster but when application are going to switch from one side to another side I would like to be sure I am not going to experience incidents. It is why I wonder if on the web... (2 Replies)
Discussion started by: xavier38450
2 Replies

3. Shell Programming and Scripting

my system configuration

Here with I am submitting a script , which is made for my use. It may be useful for anyone. I did't given in functions and all.... I am posting in this forum , because anyone can reply to this thread , for any change/addition. And yea , suggestions awaiting..:) #!/bin/bash # #... (3 Replies)
Discussion started by: linuxadmin
3 Replies

4. Solaris

system configuration

how to identify if the machine is sun4u ? is this model a sun4u machine ? Model : Sun Ultra 5/10 UPA/PCI (UltraSPARC-IIi 300MHz), (2 Replies)
Discussion started by: sudhiroracle
2 Replies

5. Shell Programming and Scripting

To check the system configuration on Sun solaris

Hi, Could you pls. let me know what is cammand in unix to check the system configuration on Sun solaris. Thanks in advance. Cheers (2 Replies)
Discussion started by: krackjack
2 Replies

6. Shell Programming and Scripting

System Configuration Extraction

Hi All, Im trying to extract a bunch of systems configuration. I have created a file called data.txt and used the below scripts to run extraction of data. Content of data.txt: /etc/passwd /etc/shadow /etc/cron.allow On the Linux terminal, I entered the following commands to execute my... (4 Replies)
Discussion started by: nerd
4 Replies

7. UNIX for Dummies Questions & Answers

Gathering system configuration

Hi there, I have been asked to write a script that gathers enough information on our Sun Solaris machines to be able to rebuild and configure them if they should go pop. My question is does anybody have any suggestions on the files that I need to take a copy of, to ensure that everything is... (4 Replies)
Discussion started by: hcclnoodles
4 Replies

8. UNIX for Dummies Questions & Answers

System boot configuration

On my PC I have two hard disks, the first with Windows 98 SE and the second with Linux Mandrake 8.0 (Traktopel). When I have installed Linux, it has modified the boot record of the 1st HD and it has added a graphic menu (LILO) for selecting the OS to use. By default, if I don't press a key, Linux... (2 Replies)
Discussion started by: robotronic
2 Replies

9. UNIX for Dummies Questions & Answers

How to the configuration of the system

How to know configuration information of the system. like (1) memory assigned for RAM - ? (2) How much is the Hard disk -? (3) processor I used uname and du -k commands. But i couldn't get information about RAM. which command gives this info (3 Replies)
Discussion started by: ds_sastry
3 Replies
Login or Register to Ask a Question