- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Kernel Change - Reboot Later
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
06-29-2006 06:52 AM
06-29-2006 06:52 AM
Kernel Change - Reboot Later
1. I want to make changes on the kernel (using SAM) and then reboot later(may be weekend). I know this is possible, but when i am done with the changes it says (are u sure and it also says the system will reboot). i do not want to reboot now. Can i select "do not move the kernel into place" and reboot later?
2. suppose i want to make some more changes after i select "do not move the kernel into place" how would i do it?
Thanks
brian
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-29-2006 07:03 AM
06-29-2006 07:03 AM
Re: Kernel Change - Reboot Later
If you want to stage changes to the kernel and defer rebooting to a later time, I would suggest using the command line tools instead of SAM as they give you greater control. What server and OS are you using?
~cheers
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-29-2006 07:05 AM
06-29-2006 07:05 AM
Re: Kernel Change - Reboot Later
cd /stand/build
cp ../system system
/usr/lbin/sysadm/system_prep -s system
vi system and make your changes
mk_kernel -s system
Then move these into place and reboot later.
mv /stand/system /stand/system.prev
mv /stand/vmunix /stand/vmunix.prev
mv /stand/build/system /stand
mv /stand/build/vmunix_test /stand/vmunix
shutdown -r now
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-29-2006 07:22 AM
06-29-2006 07:22 AM
Re: Kernel Change - Reboot Later
I would not move the kernel using the mv command.
Assuming you are running 11.11, the followign is the process for rebduiling the kernel
# cd /stand/build
# /usr/lbin/sysadm/system_prep -s system
# kmtune -s
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-29-2006 07:37 AM
06-29-2006 07:37 AM
Re: Kernel Change - Reboot Later
Even with sam you can choose not to boot.
But the best practice is to do everything, including kmupdate and then not boot the system until planned.
This does risk an accidental or power caused boot to mess things up, but its a perfectly legitimate practice.
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
06-29-2006 12:17 PM
06-29-2006 12:17 PM
Re: Kernel Change - Reboot Later
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-29-2006 11:05 PM
06-29-2006 11:05 PM
Re: Kernel Change - Reboot Later
replace the commands below...
# mv /stand/system /stand/system.prev
# mv /stand/vmunix /stand/vmunix.prev
...with
# cp /stand/system /stand/system.prev
# cp /stand/vmunix /stand/vmunix.prev
# cp -R /stand/dlkm /stand/dlkm.prev
and the ones below...
# mv /stand/build/system /stand
# mv /stand/build/vmunix_test /stand/vmunix
...with
# kmupdate
~cheers