- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Change Kernel Parameters -- not using SAM
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
Forums
Discussions
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
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
11-17-2003 11:55 PM
11-17-2003 11:55 PM
Change Kernel Parameters -- not using SAM
To date, I've been using SAM to change kernel params. There is a kernel parameter that does not appear in SAM's Kernel Tunables that I think needs to be added manually.
How do I go about this in HPUX 11i v1.0?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2003 12:17 AM
11-18-2003 12:17 AM
Re: Change Kernel Parameters -- not using SAM
What kernel parameters do you whish to modify?
If it is a real kernel parameter youcan indeed
add it to /stand/system
Then mk_kernel
Then kmupdate
Then cd / ; shutdown -r -y 0
Before doing that type of thing be sure to make a backup of /stand/system, and of
/stand/vmunix and /stand/dlkm in the /stand directory.
for instance rename
cp /stand/vmunix /stand/vmunix.ok
cp -r /stand/dlkm /stand/dlkm.vmunix.ok
then if the reboot fails you will be able to reboot from the kernel vmunix.ok
There are some other tunables:
dlkm or dynamique tunables specific to dlkm drivers, or dynamic tables.
use kmtune to modify them
ndd tunables for tcp/ip and socket relative parameters. use ndd to modify them
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2003 12:18 AM
11-18-2003 12:18 AM
Re: Change Kernel Parameters -- not using SAM
There are some hidden nfs kernel parameters too, we added these in manually to /stand/system and built a new kernel successfully.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2003 12:19 AM
11-18-2003 12:19 AM
Re: Change Kernel Parameters -- not using SAM
as root
# cd /stand/build
# /usr/lbin/sysadm/system_prep -s system
# vi system (and add make your changes)
save file
# /usr/sbin/mk_kernel -s system
# /usr/sbin/kmupdate
Reboot..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2003 12:55 AM
11-18-2003 12:55 AM
Re: Change Kernel Parameters -- not using SAM
# cd /stand/build
# /usr/lbin/sysadm/system_prep -s system
# vi /STAND/BUILD/system (and add make your changes)
save file
# /usr/sbin/mk_kernel -s system
# /usr/sbin/kmupdate
##########################################
# cp /stand/system /stand/system_old
# cp /stand/build/system /stand/system
# cd /
############################################
# shutdown -r now
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2003 01:06 AM
11-18-2003 01:06 AM
Re: Change Kernel Parameters -- not using SAM
And thanks to the HP Docs site as well...