Solaris configuration details.


 
Thread Tools Search this Thread
Operating Systems Solaris Solaris configuration details.
# 1  
Old 09-26-2011
Solaris configuration details.

How to find the entire configuration details of a solaris.
I need to know what partion were made, which OS is used and wat version is used etc...

Thanks to tell
# 2  
Old 09-26-2011
I assume with "partion" you mean how the disks are partitioned.

The answer for that is
Code:
from DISK in $( ls -l /dev/dsk/*c2 )
do
  prtvtoc $DISK
done

Regarding Hardware model, memory, CPU and Plugin cards, run

Code:
prtdiag

regarding operating system, try

Code:
uname -a

regarding disk part numbers, try

Code:
iostat -En

You can get much much more details if you want. prtconf, cfgadm -lav, etc


Moderator's Comments:
Mod Comment Please use [CODE] tags

Last edited by pludi; 09-26-2011 at 08:50 AM..
# 3  
Old 09-26-2011
Thanks for info
for regarding the partition info, imean how many partions were made etc
# 4  
Old 09-26-2011
There is a script called "cfg2html", a quick search for "cfg2html script solaris" found a copy for me straight away.

When run this will give you the full details or the server and includes everything you have asked for. If this isn't available for solaris you can get a copy and modify it for your purposes.
# 5  
Old 09-26-2011
If you need to get some System Configuration Information mainly HW on Solaris.
Issue
Code:
#prtconf

Or with detailed output
Code:
#prtconf –D

For disks you can either issue one of the following but it requires root access
Code:
#echo | format

or
Code:
#format < /dev/null

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Unable to fetch BIOS configuration details

Hi All, unable to fetch the bios configuration information and service provider information in centos 5 using dmidecode command. ServiceProvider=`dmidecode -s system-product-name |awk '{print $1}'` BIOS_Configuration=`dmidecode | grep "BIOS Information" -A10 | grep -e... (4 Replies)
Discussion started by: sravani25
4 Replies

2. Shell Programming and Scripting

Read Oracle connection details from a configuration file

Hi, Is it possible to pass oracle connection information from a configuration file and use that to connect to oracle database in my unix shell scripts. Following is the scenario: (1) I would like to save oracle connection string details in a configuration file (ex., dbconfig.txt) (2) from my... (6 Replies)
Discussion started by: sudhakaratp
6 Replies

3. Solaris

Inventory details - Solaris

i need to extract following information through command line on solaris machine : 1.manufacturer name (hardware as well as OS) 2.Model number 3.Serial number - Serial Number of the device or the Physical device serial number for Virtual Servers 4.whether the server is physical or virtual -... (3 Replies)
Discussion started by: omkar.jadhav
3 Replies

4. Solaris

How to find MQ details on Solaris 5.8?

Hi All, I want to find MQ details on a solaris 5.8 server , does anyone knows the command to findout the details I have used below command to find the following o/p command pkginfo | grep -i mq o/p application mqm WebSphere MQ for Sun Solaris application... (4 Replies)
Discussion started by: Jcpratap
4 Replies

5. Solaris

I/O details of all FS in Solaris

Hi, Can anyone let me know which command should i use to find Filesystem I/O utilization report along with the respective process b/w specific time range (9 Replies)
Discussion started by: ali560045
9 Replies

6. UNIX for Advanced & Expert Users

UNIX / LINUX OS CPU configuration details

Hi, How to find the cpu configuration details of Cores, Speed MHz, virtual processors for the following servers: LINUX OS Servers: Linux 2.6.9-89.0.3.ELsmp #1 SMP Sat Jun 13 07:05:54 EDT 2009 i686 i686 i386 GNU/Linux. (Cores, Speed, Processor) Linux 2.6.18-164.el5 #1 SMP Tue Aug 18... (5 Replies)
Discussion started by: jagtheesh
5 Replies

7. Solaris

Getting Network Interface details in solaris

Hi, /sbin/ifconfig -a when i login as guest user , output like below, lo0: flags=2001000849<UP,LOOPBACK,RUNNING,MULTICAST,IPv4,VIRTUAL> mtu 8232 index 1 inet 127.0.0.1 netmask ff000000 eri0: flags=1004843<UP,BROADCAST,RUNNING,MULTICAST,DHCP,IPv4> mtu 1500 index 2 inet... (5 Replies)
Discussion started by: forumguest
5 Replies

8. Solaris

Configuration details

hi can you please tell me how to get the configuration details from unix server. Rajesh. (6 Replies)
Discussion started by: pmrajesh21
6 Replies

9. Solaris

How to get HBA details in Solaris 9 ?

Hi , How can I collect information about any Hardware , specially HBA (Host Bus Adapter) .... I tried prtdiag but it is not shoing the HBA details. Regards (4 Replies)
Discussion started by: adel8483
4 Replies

10. Solaris

Where can I find details of what various Solaris packages do?

Among varous other items, I'm trying to find out what "Authentication Management Infrastructure" (package SUNWamix) does, and why would a sysadmin disable it? The reason given is 'for security purposes' without explanation ... how and why is AMI such a 'security risk' that it has to be turned off?... (3 Replies)
Discussion started by: muleheadjoe
3 Replies
Login or Register to Ask a Question