- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: extending /stand with ignite?
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-13-2002 08:36 AM
02-13-2002 08:36 AM
extending /stand with ignite?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-13-2002 08:40 AM
02-13-2002 08:40 AM
Re: extending /stand with ignite?
Check this out:
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x807706295e00d6118ff40090279cd0f9,00.html
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x425a039599eed5118ff40090279cd0f9,00.html
HTH,
Shiju
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-13-2002 08:43 AM
02-13-2002 08:43 AM
Re: extending /stand with ignite?
You take a full ignite backup of the system and using that you reboot the system and reinstall the OS on the root disk. This will wipe out all the previous information from the root disk. While reinstalling you can choose interactive install and select custom sizes for the lv's in the root vg including stand. For security purpose take two ignite backup and one fbackup from the system, if you are attempting this. If you have mirrored root, you have to either redo the mirroring manually or include it as part of the post install script.
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-13-2002 08:46 AM
02-13-2002 08:46 AM
Re: extending /stand with ignite?
2) Create 2 make_tape_recovery tapes:
# /opt/ignite/bin/make_tape_recovery -a /dev/rmt/0mn -I -v -x inc_entire=vg00
3) Boot from one of the tapes you just created.
4) Once you have booted from the tape and are at the Ignite/UX menu, then you can go through the menu options to the Filesystem menu (I think) and resize your LVs as you wish.
Once you are done, select 'GO!' and your server will be rebuilt with the new LV sizes you selected.
Good luck.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-13-2002 08:53 AM
02-13-2002 08:53 AM
Re: extending /stand with ignite?
The procedure I use for this is :
1) Create a recovery tape from which you can
recover your system if anything goes wrong.
make_recovery -A -v
2) run make_recovery in preview mode. This
will create a file config.recover
in /var/opt/ignite/recovery
3) Edit the file config.recover.
logical_volume "lvol1" {
usage=HFS
size=512000KB
mount_point="/stand"
minfree=10
file_length=LONG
blksize=8192
fragsize=1024
ncpg=16
nbpi=6392
rotational_delay=0
largefiles=FALSE
bad_block_relocate=false
contiguous_allocation=true
stripes=0
stripe_size=0KB
minor_number=0x01
disk[10/0.6.0]
You will find a section describing the logical volume containing /stand. In this section you
have to change the size to the size needed.
4) When you have made the changes, take a new tape and continue the make_recovery process with "make_recovery -r"
Since ignite uses the information from the config.recover to build your system again it will rebuild the /stand with size you have put in the config.recover file.