1850699 Members
4763 Online
104055 Solutions
New Discussion

mount problem

 
SOLVED
Go to solution
gary_35
Advisor

mount problem

the /dev/vg00/lvol12 is 1000M :--- Logical volumes ---
LV Name /dev/vg00/lvol12
VG Name /dev/vg00
LV Permission read/write
LV Status available/syncd
Mirror copies 1
Consistency Recovery MWC
Schedule parallel
LV Size (Mbytes) 1000
Current LE 250
Allocated PE 500
Stripes 0
Stripe Size (Kbytes) 0
Bad block on
Allocation strict
IO Timeout (Seconds) default

but i use the mount cmd mount it on /oradata ,
mount -F vxfs /dev/vg00/lvol12 /oradata

i use bdf found that the /oradata only has 500M :
/dev/vg00/lvol12 512000 1229 478855 0% /oradata

whats the matter ?
2 REPLIES 2
F. X. de Montgolfier
Valued Contributor
Solution

Re: mount problem

Hi,

I don't know how you created your logical volume, but it seems that you created the LV, extended the LV, and didn't extend the FS.
If such is the case, the solution is the following one: as root,
# umount /oradata
# extendfs /dev/vg00/rlvol12
# mount -F vxfs /dev/vg00/lvol12 /oradata

man lvextend gives you more information.

Cheers,

FiX


gary_35
Advisor

Re: mount problem

thank u for so quick response ,u r so helpful