- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- create new vg00 with other manufactory 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
07-22-2002 05:42 AM
07-22-2002 05:42 AM
create new vg00 with other manufactory disk
THANS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-22-2002 05:48 AM
07-22-2002 05:48 AM
Re: create new vg00 with other manufactory disk
pvcreate -f it first;
pvcreate -f /dev/rdsk/c0t1d0
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-22-2002 05:53 AM
07-22-2002 05:53 AM
Re: create new vg00 with other manufactory disk
have u run pvcreate
pvcreate -f
regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-22-2002 05:59 AM
07-22-2002 05:59 AM
Re: create new vg00 with other manufactory disk
is it the disk itself?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-22-2002 06:02 AM
07-22-2002 06:02 AM
Re: create new vg00 with other manufactory disk
First do a pvcreate and then run vgcreate,
pvcreate -f /dev/rdsk/c0t1d0
If this is a new VG, first create the vg control file,
mkdir /dev/vg02
mknod /dev/vg02/group c 64 0x020000
vgcreate /dev/vg02 /dev/dsk/c0t1d0
If this is an existing vg, do a vgextend,
vgextend /dev/vg02 /dev/dsk/c0t1d0
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-22-2002 06:04 AM
07-22-2002 06:04 AM
Re: create new vg00 with other manufactory disk
It certainly sounds like something may be wrong with this disk. Pvcreate and vgcreate only access the first few blocks so may not detect any errors until you try other commands.
Lets do a read test on the entire disk to test its readable;
dd if=/dev/rdsk/c0t1d0 of=/dev/null bs=1024k
Let that run, and either it will return with xxx blocks in+out or it will return an I/O error indicating there is a problem with the disk.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-22-2002 06:12 AM
07-22-2002 06:12 AM
Re: create new vg00 with other manufactory disk
cd /dev
ll v*/group
And check that all group files shown are unique.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-22-2002 06:22 AM
07-22-2002 06:22 AM
Re: create new vg00 with other manufactory disk
In addition to using 'dd' as suggested, it would be useful to see what (if anything) 'diskinfo' returns:
# diskinfo -v /dev/rdsk/c0t1d0
Can 'diskinfo' access the disk? Do you get a non-zero size returned? Does the command take more than a couple of seconds to respond, or does it hang?
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-22-2002 06:45 AM
07-22-2002 06:45 AM
Re: create new vg00 with other manufactory disk
thanks anyone
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-22-2002 06:48 AM
07-22-2002 06:48 AM