- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- addind disk in volume group
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-12-2003 10:28 PM
02-12-2003 10:28 PM
addind disk in volume group
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-12-2003 10:44 PM
02-12-2003 10:44 PM
Re: addind disk in volume group
I think you cannot do that without re-creating the VG,because the MAX PE would have been set to the largest disk on the system i.e. 4Gb on your system.
If you add the 6Gb hard disk then it can only add the 4GB from that disk.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-12-2003 10:47 PM
02-12-2003 10:47 PM
Re: addind disk in volume group
1. Add the 6GB disk to the vg00 and then move all the filesystems from 2GB to 4GB which can be done by either creating a dummy filesystems and then move the data across the filesystem and mount the newly create fileystems(of 6Gb ) on the old mout points.
Do all this in single user mode.
2. If your 2Gb disk is bootable which can be checked by lvlnboot -v command then its easy if you have mirror UX.
Do pvcreate -B and make this disk bootable mirror all data of 2gb disk to 6GB disk and then split the 2gb disk off.
3. If the 2gb disk is bootable and you dont have mirror-ux then this can be done by a make recovery tape.
But u have to be carefull and need extra precaution.
So let us know what is on 2GB disk.
Cheers
rajeev
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-12-2003 10:50 PM
02-12-2003 10:50 PM
Re: addind disk in volume group
http://www2.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&docId=200000062922008
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-12-2003 11:28 PM
02-12-2003 11:28 PM
Re: addind disk in volume group
disk 1 = 4Gb
disk 2 = 6Gb
Although you can actually add the disk, the useable portion of that disk will only be 4Gb. The extra 2Gb of the second disk will be wasted. You would be better served in creating an ignite tape, containing your first disk, and building a second OS onto the 6Gb disk. Once you have it up and running, trash the 4Gb disk and add it to the new volume group that contains the 6gb disk.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-12-2003 11:44 PM
02-12-2003 11:44 PM
Re: addind disk in volume group
Hi,
I would prefer the ignite recovery (make_tape _recovery) Doc Id given by Manikantan says it all
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-15-2003 01:15 AM
02-15-2003 01:15 AM
Re: addind disk in volume group
I think you can remove the 2GB disk but first be sure that the os file systems been moved to the 4GB disk .Check where are your os file systems( /,/stand,/opt,/usr,/tmp..).Or you can do ignite tape with option -I and -A to include all the volume groups and be sure to have a full backup ready.And take out both disks 4 and 2GB and replace them by the 6GB disk.Boot from your ignite_tape interactively by invoking the -I option and you can change the MAX-PE that will reflect your new disk size keep on instaling the ignite tape and recover your date from your full backup .
Have nice exercise,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-18-2003 10:26 AM
02-18-2003 10:26 AM
Re: addind disk in volume group
vgextend /dev/vg00 /dev/dsk/newdisk
Then do a pvmove of contents from 2 GB disk to 6GB disk
pvmove /dev/dsk/c0t0d0 /dev/dsk/newdisk
Then do a vgreduce of the old 2 GB disk to remove it from existing volume group.
-Anil