- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- HOw to chnage a bunch of kernel parameters on 11i
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-22-2003 08:47 AM
09-22-2003 08:47 AM
Thanks,
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-22-2003 08:52 AM
09-22-2003 08:52 AM
Re: HOw to chnage a bunch of kernel parameters on 11i
cd /stand/build
/usr/lbin/sysadm/system_prep -v -s system
2. Modify parameters :
kmtune â S /stand/build/system â s parameter=value
3. Build the kernel:
/usr/sbin/mk_kernel -s system
4. Save current kernel and replace it with updated version:
mv /stand/system /stand/system.prev
mv /stand/vmunix /stand/vmunix.prev
mv /stand/dlkm /stand/dlkm.prev
mv /stand/build/system /stand/system
kmupdate /stand/build/vmunix_test
5. Reboot the s
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-22-2003 08:55 AM
09-22-2003 08:55 AM
Solution1. Create template parameters file:
cd /stand/build
/usr/lbin/sysadm/system_prep -v -s system
2. Modify parameters:
kmtune -S /stand/build/system -s parameter=value
3. Build the kernel:
/usr/sbin/mk_kernel -s system
4. Save current kernel and replace it with updated version:
mv /stand/system /stand/system.prev
mv /stand/vmunix /stand/vmunix.prev
mv /stand/dlkm /stand/dlkm.prev
mv /stand/build/system /stand/system
kmupdate /stand/build/vmunix_test
5. Reboot the system.
And yes you can use decimal numbers.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-22-2003 09:00 AM
09-22-2003 09:00 AM
Re: HOw to chnage a bunch of kernel parameters on 11i
On step 2:
a). does that mean I have to run the same command on all parameters I need to tune?
kmtune -S /stand/build/system -s parameter=value
b). Can I use decimal number to set the "value" here?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-22-2003 09:05 AM
09-22-2003 09:05 AM
Re: HOw to chnage a bunch of kernel parameters on 11i
As you use the kmtune -S command, you need to monitor the output response codes. If you violate formula values, you may not get your epxected changes.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-22-2003 09:18 AM
09-22-2003 09:18 AM
Re: HOw to chnage a bunch of kernel parameters on 11i
If I run the command kmtune -S many times on the bunch of parameters, that would be not as convinient as I expect, and that won't bring me any better than use SAM.
Right?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-22-2003 09:19 AM
09-22-2003 09:19 AM
Re: HOw to chnage a bunch of kernel parameters on 11i
b) Yes.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-22-2003 09:49 AM
09-22-2003 09:49 AM
Re: HOw to chnage a bunch of kernel parameters on 11i
You could also build a file in 'parameter=value' format and use 'for' command to speed up the process.