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-10-2002 06:49 AM
01-10-2002 06:49 AM
kmtune
is possible to put in a script all parameters of kernel and lunch it as script? (For fast change). Example:
kmtune NSTRBLKSC 2
kmtune NSTREVENT 50
kmtune NSTRPUSH 16
kmtune NSTRSCHED 0
kmtune STRCTLSZ 1024
kmtune STRMSGSZ 0
kmtune acctresume 4
Is it works?
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2002 06:52 AM
01-10-2002 06:52 AM
Re: kmtune
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2002 06:52 AM
01-10-2002 06:52 AM
Re: kmtune
I think it should work. You may have to rebuild the kernal to make the new changes effective.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2002 06:54 AM
01-10-2002 06:54 AM
Re: kmtune
Yes. You can. Make sure you have -s following kmtune to set the values.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2002 07:00 AM
01-10-2002 07:00 AM
Re: kmtune
It should be possible..
Here is the sample kernel configuration commands.
/usr/lbin/sysadm/system_prep -v -s system
kmtune -S /stand/build/system -s parm_name=value
or
kmtune -S /stand/build/system -s parm_name+value
kmsystem -S system -c y driver_name # these utilities modify the system
file at 11.0
/usr/sbin/mk_kernel -s ./system
mv /stand/system /stand/system.prev #new for dynamically
linked modules at 11.0
mv /stand/build/system /stand/system
kmupdate # kmupdate automates moving
the kernel files into the
proper directory
Reboot the box.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2002 07:11 AM
01-10-2002 07:11 AM
Re: kmtune
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2002 07:36 AM
01-10-2002 07:36 AM
Re: kmtune
if i understand the right and fast way is: (correct me if i wrong)
/usr/lbin/sysadm/system_prep -v -s system
lunch the script where into there are:
...
kmtune -s scsi_maxphys=1048576
kmtune -s sema=1
kmtune -s semaem=16384
kmtune -s semmap=5112
kmtune -s semmni=5120
kmtune -s semmns=(SEMMNI*2)
kmtune -s semmnu=(NPROC-4)
kmtune -s semume=10
kmtune -s semvmx=32768
kmtune -s sendfile_max=0
kmtune -s shmem=1
...
/usr/sbin/mk_kernel -s ./system
mv /stand/system /stand/system.prev
mv /stand/build/system /stand/system
kmupdate
Thanks