- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: vgdisplay and bdf
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
10-09-2001 10:53 AM
10-09-2001 10:53 AM
vgdisplay and bdf
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2001 10:57 AM
10-09-2001 10:57 AM
Re: vgdisplay and bdf
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2001 11:02 AM
10-09-2001 11:02 AM
Re: vgdisplay and bdf
However, if vgdisplay shows 8GB that is what it is. If you post your vgdisplay -v output, we may be able to help. It looks like you simply created an 8GB vg. It is possible than when you dis the pcvreate you specified a smaller disk size arg. Normally, -s is not specfied and pvcreate is able to determine the disk size itself.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2001 11:03 AM
10-09-2001 11:03 AM
Re: vgdisplay and bdf
Is there a possibility that you have alternate paths to the same disk?
The output of vgdisplay -v would be helpful in analyzing the problem.
-Ramesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2001 11:10 AM
10-09-2001 11:10 AM
Re: vgdisplay and bdf
vgdisplay
--- Logical volumes ---
LV Name /dev/vg12/lvol1
LV Status available/syncd
LV Size (Mbytes) 12000
Current LE 3000
Allocated PE 3000
Used PV 1
bdf
/dev/vg12/lvol1 8192000 2754792 5099275 35% /zrtph0ag_u01/home/oracle/admin/dcodb1/arch
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2001 11:14 AM
10-09-2001 11:14 AM
Re: vgdisplay and bdf
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2001 11:19 AM
10-09-2001 11:19 AM
Re: vgdisplay and bdf
Vgdisplay does show it to be a 12GB lvol; you simply created a smaller filesystem within it.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2001 11:19 AM
10-09-2001 11:19 AM
Re: vgdisplay and bdf
--- Logical volumes ---
LV Name /dev/vg12/lvol1
LV Status available/syncd
LV Size (Mbytes) 12000
Current LE 3000
Allocated PE 3000
Used PV 1
LV Name /dev/vg12/lvol2
LV Status available/syncd
LV Size (Mbytes) 8000
Current LE 2000
Allocated PE 2000
Used PV 2
LV Name /dev/vg12/lvol3
LV Status available/syncd
LV Size (Mbytes) 18800
Current LE 4700
Allocated PE 4700
Used PV 2
LV Name /dev/vg12/lvol4
LV Status available/syncd
LV Size (Mbytes) 18124
Current LE 4531
Allocated PE 4531
Used PV 1
--- Physical volumes ---
PV Name /dev/dsk/c19t14d4
PV Name /dev/dsk/c21t14d4 Alternate Link
PV Status available
Total PE 4744
Free PE 0
Autoswitch On
PV Name /dev/dsk/c19t14d5
PV Name /dev/dsk/c21t14d5 Alternate Link
PV Status available
Total PE 4744
Free PE 0
Autoswitch On
PV Name /dev/dsk/c19t14d6
PV Name /dev/dsk/c21t14d6 Alternate Link
PV Status available
Total PE 4744
Free PE 1
Autoswitch On
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2001 11:20 AM
10-09-2001 11:20 AM
Re: vgdisplay and bdf
Is it possible you did lvextend but did not do a fsadm or a extendfs. You DON'T want to do a newfs(newfs will overwrite all the data).
If you have online JFS, you could just do
fsadm -F vxfs -b $((12*1024*1024)) /zrtph0ag_u01/home/oracle/admin/dcodb1/arch
If you don't have online JFS, you will have to unmount the filesystem
umount /zrtph0ag_u01/home/oracle/admin/dcodb1/arch
and then extend the filesystem extendfs -F vxfs /dev/vg12/lvol1
and then mount it back
mount /zrtph0ag_u01/home/oracle/admin/dcodb1/arch
-Ramesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2001 11:22 AM
10-09-2001 11:22 AM
Re: vgdisplay and bdf
If you have 'lvextend'ed your logical volume but *not* used 'extendfs' or 'fsadm' (if you are using Online JFS (VxFS) to extend the filesystem, then 'bdf' will not show your expected size.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2001 11:22 AM
10-09-2001 11:22 AM
Re: vgdisplay and bdf
One more thought, it your don't have a lost+found directory, fsadm cannot create a .fsadm file and the extend of the filesystem will fail (if this was an extend of an existing filesystem).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2001 11:23 AM
10-09-2001 11:23 AM
Re: vgdisplay and bdf
fsadm -F vxfs -b 12288000
If not, do:
umount
extendfs
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2001 11:23 AM
10-09-2001 11:23 AM
Re: vgdisplay and bdf
This could be after an lvdisplay. In this case you should run:
extendfs ?F
You have to umount the filesystem.
bye
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2001 12:03 PM
10-09-2001 12:03 PM
Re: vgdisplay and bdf
extendfs -F vxfs /dev/vg12/rlvol1
Otherwise, if you have OnlineJFS, use fsadm:
fsadm -F vxfs -b 12000M /zrtph0ag_u01/home/oracle/admin/dcodb1/arch
-Santosh