- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Disk space pbm
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-09-2003 08:24 AM
07-09-2003 08:24 AM
Disk space pbm
i am not able to use this space.If we are seeing PVDISPLAY -v /dev/dsk/c0t0d0 , it showing that no free PE avilable.All the 4374 PVs are allocated. Further i am seeing ??? instead of /dev/vg00/lvol? starting from PE 1171 to 2450.
regards
Madhu Gopalakrishnan
MY os is 11.0 and server is D380.
Any one help me use this free space w/o recreating PV.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-09-2003 08:30 AM
07-09-2003 08:30 AM
Re: Disk space pbm
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-09-2003 08:31 AM
07-09-2003 08:31 AM
Re: Disk space pbm
It must be using some space.
Run swapinfo -tam.
I have approximzately 30 GB of space based on your figures. There should be 6 GB left, except the usual location of swap is /dev/vg00/lvol2
Also, the Volume Group may not be able to use all available disk space.
This should have been accounted for at install time, but if you did a disk upgrade and restored with Ignite, the Volume group may not be able to use all the Physical extents.
Run and post this:
vgdisplay /dev/vg00
That would help.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-09-2003 08:31 AM
07-09-2003 08:31 AM
Re: Disk space pbm
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-09-2003 08:41 AM
07-09-2003 08:41 AM
Re: Disk space pbm
This would happen if someone did "rm /dev/vg00/lvolx" instead of "lvremove /dev/vg00/lvolx".
Do a "vgdisplay -v vg00 |grep "LV Name"" and compare the lvols against what you have in /dev/vg00
Find out the missing "minor number". of the lvols in /dev/vg00. You can do it by "ll /dev/vg00/r*" and observe the 0x00000x". They should be sequential. Say "1-9". Say if you don't find "7", then it was logical volume that got removed. You can recreate it by using mknod command.
#mknod /dev/vg00/lvol7 b 64 0x000007
#mknod /dev/vg00/rlvol7 c 64 0x000007
If you do a pvdisplay now, lvol7 should show up instead of ???s.
If you don't have break in the sequence, then create the device files with the next number in the sequence. In the example I gave, it would be a (next to 9).
#mknod /dev/vg00/lvol10 b 64 0x00000a
#mknod /dev/vg00/rlvol10 c 64 0x00000a
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-09-2003 08:46 AM
07-09-2003 08:46 AM
Re: Disk space pbm
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-09-2003 08:59 AM
07-09-2003 08:59 AM
Re: Disk space pbm
Sri has the most logical explanation for what you see.
With regard to the minor number, he is correct. The device file for 'lvol1' on 'vg03' would look like:
brw-r----- 1 root sys 64 0x030001 Jun 17 15:58 lvol1
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-09-2003 09:05 AM
07-09-2003 09:05 AM
Re: Disk space pbm
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-09-2003 09:10 AM
07-09-2003 09:10 AM
Re: Disk space pbm
No problem. I too had to look twice, since the device files are for vg00. :-))
Regards!
...JRF...