- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: How to combine multiple changes into (1) reboo...
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
10-01-2007 08:59 AM
10-01-2007 08:59 AM
How to combine multiple changes into (1) reboot ?
Hello All,
I'm trying to find out if it's possible to combine multiple changes that effect the kernel into (1) reboot ? example :
Need to make the following changes
(2) static parms that need to be modified
- st_san_safe
- st_ats_enabled
(1) FCD driver needs to upfraded
- FibrChanl-01
depot has been created for FCD :
# swlist -d @ /swdepot/general/HP/FCD
# Initializing...
# Contacting target "hohp120"...
#
# Target: hohp120:/swdepot/general/HP/FCD
#
#
# Bundle(s):
#
FibrChanl-00 B.11.11.12 PCI/HSC FibreChannel;Supptd HW=A6684A,A6685A,A5158A,A6795A
FibrChanl-01 B.11.11.12 FibreChannel;HW=A6826A,A9782A,A9784A,AB378A/B,AB379A/B,AB465A,AD193A,AD194A
############################
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-01-2007 09:30 AM
10-01-2007 09:30 AM
Re: How to combine multiple changes into (1) reboot ?
use swcopy to create a single depot from many depots.
http://hpux-tips.blogspot.com/2005/01/create-hp-ux-depot.html
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
10-01-2007 09:39 AM
10-01-2007 09:39 AM
Re: How to combine multiple changes into (1) reboot ?
That's good info for multiple depots, but what about the :
(2) static parms that need to be modified
- st_san_safe
- st_ats_enabled
How do you get those into a depot ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-01-2007 09:58 AM
10-01-2007 09:58 AM
Re: How to combine multiple changes into (1) reboot ?
Write a kmtune script to change them, move all the files where they need to be, make that into a depot and include it in the depot build directory.
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
10-01-2007 10:10 AM
10-01-2007 10:10 AM
Re: How to combine multiple changes into (1) reboot ?
So, if I had a script called "tune" which executed the following :
#cat tune
####################
cd /stand
/usr/lbin/sysadm/system_prep -s ./system
kmtune -s st_san_safe=1 -S ./system
kmtune -s st_ats_enabled=0 -S ./system
/usr/sbin/mk_kernel
cd build
/usr/sbin/kmupdate
#####################
How do you copy or make "tune" a depot ?