1753618 Members
5747 Online
108797 Solutions
New Discussion юеВ

Disk

 
SOLVED
Go to solution
Wamaitha
Frequent Advisor

Disk

Hello,
i am trying to add disk to a group -- and getting the message below:
vgcreate /dev/vg01 /dev/dsk/c4t0d0
vgcreate: Physical Volume "/dev/dsk/c4t0d0" contains no LVM information

more info -- system rx6600; 11.23 -- disk i am trying to add are part of the SAN disk that the system was allocated.

thanks
3 REPLIES 3
Hasan  Atasoy
Honored Contributor
Solution

Re: Disk

hi wamaitha;

before creating vg ; you need to cretae pv by
pvcreate /dev/dsk/c4t0d0


Hasan.
Anshumali
Esteemed Contributor

Re: Disk

You need to do a pvcreate.

pvcreate /dev/rdsk/c4t0d0

The pvcreate command initializes a direct access storage device (a raw disk device) for use as a physical volume in a volume group.
If this disk was havign a FS but no recorded in /etc/lvmtab, you may need to do pvcreate -f as well.

Anshu
Dreams are not which you see while sleeping, Dreams are which doesnt allow you to sleep while you are chasing for them!!
Wamaitha
Frequent Advisor

Re: Disk

user error --