- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: /stand/system
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
02-10-2005 10:21 AM
02-10-2005 10:21 AM
/stand/system
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-10-2005 10:53 AM
02-10-2005 10:53 AM
Re: /stand/system
If you do things manually you must do ALL steps manually, including building the kernel and moving it into place.
Have a look at the TKB document "Building a New Kernel on 10.X/11.X Systems" - Doc ID KBRC00010515 - for all the required steps:
http://www1.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&docId=200000070309309
Make sure you follow the steps EXACTLY. Do not try any shortcuts or you could wind up with a kernel that won't boot.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-10-2005 11:02 AM
02-10-2005 11:02 AM
Re: /stand/system
Editing /stand/system with or without a reboot will do nothing. The preferred method to editing the system file is kmtune.
e.g
kmtune -s bufpages=102400
You repeat the kmtune command for as many values as you wish to change.
Next, mk_kernel
Next, kmupdate
You are now ready to reboot.
Man kntune, mk_kernel, kmupdate for details.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-11-2005 05:02 AM
02-11-2005 05:02 AM
Re: /stand/system
For 11.0 systems .. do this
# cp -p /stand/vmunix /stand/vmunix.old
Edit the /stand/system file with the new parameters ..
# mk_kernel â s /stand/system â o /stand/vmunix.new
# Kmupdate /stand/vmunix.new
This will create the new kernel.
Good luck
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-11-2005 05:07 AM
02-11-2005 05:07 AM
Re: /stand/system
# mk_kernel -s /stand/system -o /stand/vmunix.new
# kmupdate /stand/vmunix.new
James
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-11-2005 06:45 AM
02-11-2005 06:45 AM
Re: /stand/system
What I do is as follows.
Method1
========
Make a copy of /stand/vmunix and /stand/system and Change kernel parameters using SAM.
Using Commandline:-
=======================
#cd /stand/build
# /usr/lbin/sysadm/system_prep -s system
( Prepares new system file )
#vi ./system
(Edit the system file and change the required parameters and save it)
# /usr/sbin/mk_kernel -s system
( Prepares new kernel )
# mv /stand/system /stand/system.
( Move old system file )
# mv /stand/vmunix /stand/vmunix.
( Move old kernel file )
# mv /stand/dlkm /stand/dlkm.vmunix.
# mv /stand/build/system /stand/system
( Move new system file to /stand )
# kmupdate /stand/build/vmunix_test
( Moves new kernel into place during the next reboot )
# shutdown -ry 0 ( Reboots the system )
HTH-
Regards,
Syam