- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Displaying Hp 9000 system parameters
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
09-21-2004 12:12 AM
09-21-2004 12:12 AM
Displaying Hp 9000 system parameters
Which hp-ux 11.11 command must I use to see the server configuration parameters such as CPU
setting, RAM capacity ...
Those settings are displayed at the system Setup, but I want to see them without rebooting system !
Thanks for your help !
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-21-2004 12:21 AM
09-21-2004 12:21 AM
Re: Displaying Hp 9000 system parameters
CPU
HPUX=/stand/vmunix
MHZ=$(echo itick_per_tick/D \
| adb -k $HPUX /dev/kmem \
| tail -1 \
| awk '{print $2/10000}')
echo $MHZ
Number of CPUs
ioscan -k |grep -n processor |wc -l
RAM
HPUX=/stand/vmunix
MAJORREV=$(uname -r | cut -f2 -d .)
if [ $MAJORREV -ge "11.0" ]
then
MYSYMBOL="phys_mem_pages"
else
MYSYMBOL="physmem"
fi
MYMEM=$(echo "${MYSYMBOL}/D" \
| adb $HPUX /dev/kmem \
| grep "${MYSYMBOL}: *." \
| awk '{printf "%.0f MB\n",$2/256}')
echo $MYMEM
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-21-2004 12:22 AM
09-21-2004 12:22 AM
Re: Displaying Hp 9000 system parameters
ftp the attached file in to your system through binary mode.
then
#sh hpmem1
it will display output like following.
HP-UX prod5 B.11.11 U 9000/813 2000747627 unlimited-user license
CPU Count: 1
CPU Speed: 160 MHz
CPU HW Support: 32-bit
Kernel Support: 32-bit
RAM Size: 512 MB
bufpages: 158 MB
maxuprc: 75
maxvgs: 10
maxfiles: 512
max_thread_proc: 64
nfile: 4779
nflock: 200
nproc: 2420
ninode: 2888
shmmax: 1073741824
shmmni: 200
dbc_max_pct: 50
you can use model command to see the system model.
regds,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-21-2004 12:25 AM
09-21-2004 12:25 AM
Re: Displaying Hp 9000 system parameters
you can use the "print_manifest" from Ignite (/opt/ignite/bin/print_manifest) or SAM (system properties)
Regards
Franky
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-21-2004 12:27 AM
09-21-2004 12:27 AM
Re: Displaying Hp 9000 system parameters
http://come.to/cfg2html
Also, attached is sysinfo 3.01.
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-21-2004 01:23 AM
09-21-2004 01:23 AM
Re: Displaying Hp 9000 system parameters
/usr/contrib/bin/machinfo
Else use sysinfo script over,
http://www.unixguide.net/scripts/hpsysinfo146
copy and paste in /usr/bin/sysinfo
chmod 755 /usr/bin/sysinfo
Execute as sysinfo -h
It will give options.
-g : general stats (default)
-d : disk info
-n : network info (IP, MAC)
-p : patches installed
-a : all of the above
-q : quiet mode (no progress status; use if redirecting output to a file)
-v : sysinfo version
-? : describe options
It will give disk, cpu informations to you
To get RAM / Physical memory details then do as,
dmesg | grep -iE "Phy|memory"