- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: System Info
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-27-2002 05:41 AM
08-27-2002 05:41 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-27-2002 05:42 AM
08-27-2002 05:42 AM
Re: System Info
is a good start.
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-27-2002 05:44 AM
08-27-2002 05:44 AM
Re: System Info
http://members.tripod.com/rose_swe/cfg/cfg.html
Cheryl
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-27-2002 05:45 AM
08-27-2002 05:45 AM
Re: System Info
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xee8293e260b0d611abdb0090277a778c,00.html
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-27-2002 05:47 AM
08-27-2002 05:47 AM
Re: System Info
- ioscan -fn
- dmesg
- diskinfo
- bdf
- echo itick_per_usec/D | /usr/bin/adb -k /stand/vmunix /dev/kmem : for cpu speed
- lanscan
- swlist
- swapinfo -mt
- vgdisplay
- lvdisplay
- model
- uname -a
hope it help You
regards Seba
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-27-2002 05:52 AM
08-27-2002 05:52 AM
Re: System Info
# print_manifest (if you have ignite installed)
# dmesg
# stm
# sysdef
# top
# ioscan -fkC processor
# ioscan -fnC disk
# SAM - disk and file systems
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-27-2002 06:53 AM
08-27-2002 06:53 AM
Solutionhttp://www.magnicomp.com/sysinfo/
It is a utility that will give you the following info:
Not only does SysInfoTM provide very deep levels of information but it also provides a very wide breadth of knowledge. Including, but not limited to:
* Hardware (device) information
* Software information
* Storage (disk) partitions
* Kernel parameters
* System configuration parameters
* Printer Queues
* Application architecture
* CPU type
* Host ID
* Host name aliases
* Host name
* Host network addresses
* Kernel architecture
* Kernel version
* Main memory (RAM)
* Manufacturer of the system's hardware
* Operating system distribution
* Operating system name
* Operating system version
* System model name
* System serial number
All the best
-Shekar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-27-2002 07:12 AM
08-27-2002 07:12 AM
Re: System Info
ftp://contrib:9unsupp8@hprc.external.hp.com/sysadmin/inventory/nickel/
I have also attached the nightowl script it is all text format not html.
~ Richard
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-27-2002 09:29 AM
08-27-2002 09:29 AM
Re: System Info
http://come.to/cfg2html
The nice thing is that it runs on multiple platforms.
Rgds...Geoff
PS:
Here's a script to get some basic info:
#!/bin/ksh
#
# Taken from the HP/UniGraphics FAQ
# You must be ROOT to execute this since it uses adb to
# examine the running kernel
#
GetKernelSymbol()
{
echo "$1/D" | adb -k $hpux /dev/kmem | tr "\012" " " | read junk junk2 kval
}
hpux=/hp-ux
rev=$(uname -r | cut -d. -f2)
if ((rev > 9)); then hpux=/stand/vmunix ;fi
/bin/uname -a
GetKernelSymbol "processor_count"
print CPU Count: $kval
GetKernelSymbol "itick_per_tick"
let speed=kval/10000
print CPU Speed: $speed MHz
if ((rev > 10)); then
print CPU HW Support: `getconf HW_CPU_SUPP_BITS`-bit
print Kernel Support: `getconf KERNEL_BITS`-bit
GetKernelSymbol "memory_installed_in_machine"
else
GetKernelSymbol "physmem"
fi
let mb=kval*4/1024 # convert pages to MB
print RAM Size: $mb MB
GetKernelSymbol "bufpages"
let mb=kval*4/1024 # convert pages to MB
print bufpages: $mb MB
GetKernelSymbol "maxuprc"
print maxuprc: $kval
GetKernelSymbol "maxvgs"
print maxvgs: $kval
GetKernelSymbol "maxfiles"
print maxfiles: $kval
GetKernelSymbol "max_thread_proc"
print max_thread_proc: $kval
GetKernelSymbol "nfile"
print nfile: $kval
GetKernelSymbol "nflocks"
print nflock: $kval
GetKernelSymbol "nproc"
print nproc: $kval
GetKernelSymbol "ninode"
print ninode: $kval
GetKernelSymbol "vfd_cw"
print shmmax: $kval
GetKernelSymbol "shmmni"
print shmmni: $kval
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-27-2002 09:39 AM
08-27-2002 09:39 AM
Re: System Info
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-28-2002 05:58 AM
08-28-2002 05:58 AM
Re: System Info
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-28-2002 06:18 AM
08-28-2002 06:18 AM
Re: System Info
You can find Sysinfo at following link also.
http://hpux.cs.utah.edu/hppd/hpux/Sysadmin/sysinfo-3.3.1/
Prashant.