- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- computing kernel values
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
01-14-2002 09:24 AM
01-14-2002 09:24 AM
computing kernel values
Is there any other way to obtain those values.
P.D: I tried to use a single AWK program but it is more difficult than it seems because kmtune reports kernel parameters sorted by its name.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-14-2002 09:31 AM
01-14-2002 09:31 AM
Re: computing kernel values
I've always found it a bit easier to let sam modify the kernel and rebuild it for me.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-14-2002 09:32 AM
01-14-2002 09:32 AM
Re: computing kernel values
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-14-2002 09:35 AM
01-14-2002 09:35 AM
Re: computing kernel values
Cat /stand/system will show the kernel value that are changed from default.
Paula
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-14-2002 09:36 AM
01-14-2002 09:36 AM
Re: computing kernel values
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-14-2002 10:24 AM
01-14-2002 10:24 AM
Re: computing kernel values
root:> grep MAXUSER /stand/build/tune.h
#define MAXUSERS 32
#define NCLIST (100+16*MAXUSERS)
#define NFILE (16*(NPROC+16+MAXUSERS)/10+32+2*(NPTY+NSTRPTY+NSTRTEL))
#define NINODE ((NPROC+16+MAXUSERS)+32+(2*NPTY))
#define NPROC (20+8*MAXUSERS)
g'd luck
t++
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-15-2002 03:03 AM
01-15-2002 03:03 AM
Re: computing kernel values
I know SAM reports numerical values but I didn't mention because SAM cannot be used in a script excepting the right lbin program is executed.
Thanks to Sridhar Bhaskarla who gave me the right clue: the sysdef command
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-15-2002 03:59 AM
01-15-2002 03:59 AM
Re: computing kernel values
Try :
# sysdef
It will reports only values.
Magdi
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-15-2002 05:59 AM
01-15-2002 05:59 AM
Re: computing kernel values
Small script to interogate output from sysdef.
------------cut here-----------
#!/bin/sh
###########################
# Extract from sysdef output
/etc/sysdef >>/tmp/sysdef.out
cat /tmp/sysdef.out | awk '{print $1,$2}'
------------cut here-----------------