- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Adding hard disk
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-17-2003 11:11 PM
02-17-2003 11:11 PM
Adding hard disk
I have a hard disk and configured with LVM. I removed from one controller and put in another controller for a controller failure.
Sam just now created device files like /dev/dsk/c0t5d0.
Can anybody tell me how to add a hard disk which has data previously in "vg05" with only one "lvol1"...
The problem is the hard disk contains data and should be carefully restored.
Thanks in advance
Vijay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-17-2003 11:39 PM
02-17-2003 11:39 PM
Re: Adding hard disk
#vgreduce -f /dev/vg05 (since vg05 has been eliminated)
#vgscan -v
#mkdir /dev/vg05
#cd /dev/vg05
#mknod group c 64 0x050000
#vgimport -v /dev/vg05 /dev/dsk/c0t5d0 (new path for hard disk)
#vgchange -a y /dev/vg05
# mount /dev/vg05/lvol1 /
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-17-2003 11:52 PM
02-17-2003 11:52 PM
Re: Adding hard disk
#vgreduce -f /dev/vg05
vgreduce: The volume group "/dev/vg05" is not active. Only an active
volume group can be extended.
Thanks
Vijay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-17-2003 11:59 PM
02-17-2003 11:59 PM
Re: Adding hard disk
could you use vgremove /dev/vg05 which remove vg05 definitions from root disk
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-18-2003 03:37 AM
02-18-2003 03:37 AM
Re: Adding hard disk
I did a vgexport vg05
that works fine.
Thanks for the fantastic help.
Vijay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-18-2003 04:46 AM
02-18-2003 04:46 AM
Re: Adding hard disk
Pete
Pete