- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: swinstall message
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
Discussions
Discussions
Discussions
Forums
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
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
тАО11-03-2003 01:20 AM
тАО11-03-2003 01:20 AM
I get the following error from swinstall:
ERROR: "srv:/": This operation will exceed the absolute limit of disk space on 1 volumes.
I thought it means that I don't have enough space on "/", so I tried to extend it.
vgdiplay showed that I have enough space:
Free PE 2021
I did the following:
# lvextend -L 1000 /dev/vg00/lvol3
lvextend: Not enough free physical extents available.
Logical volume "/dev/v00/lvol3" could not be extended.
Failure possibly caused by contiguous allocation policy.
Failure possibly caused by strict allocation policy.
Am I doing something wrong?
thanx
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-03-2003 01:22 AM
тАО11-03-2003 01:22 AM
SolutionYes - there is no need to lvextend / !
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-03-2003 01:25 AM
тАО11-03-2003 01:25 AM
Re: swinstall message
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-03-2003 01:26 AM
тАО11-03-2003 01:26 AM
Re: swinstall message
You wouldn't ba able to extend the root filesystem like that. The only way to extend root is to use ignite to make a boot tape, then boot from the tape and make changes to your vg00 filesystems.
But like he said, you shouldn't need to extent "/", check the swagent.log.
-Rusty
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-03-2003 01:40 AM
тАО11-03-2003 01:40 AM
Re: swinstall message
as the others already pointed out
/dev/vg00/lvol3 usually bears the / filesystem which requires to have contigous allocation of physical extents.
Just check
# bdf /dev/vg00/lvol3
Filesystem kbytes used avail %used Mounted on
/dev/vg00/lvol3 147456 104749 40038 72% /
# lvdisplay /dev/vg00/lvol3|grep Allocation
Allocation strict/contiguous
Anyway I would consider / as an unusual installation target.
You can check the installation target of your depot by doing something like (beware can be a lengthy list)
# swlist -l file -s /where/the/depots/lie/your.depot
You can also sum up the sizes (a little awk oneliner will do) if you parse output from
# swlist -l fileset -a size -s /where/the/depots/lie/your.depot
The reason you extension attempt failed is because free PEs need to be contigous but your free PEs are probably well beyond some PEs used by your last LV of vg00 in sequence.
Either you extend your / LV as suggested.
The easiest method really is by use of an ignite tape.
But I'd rather suggest to create a new regular LV in your vg00, mount it somewhere and let a symlink point to the mount point from your depot's installation target.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-03-2003 05:10 PM
тАО11-03-2003 05:10 PM
Re: swinstall message
It was other FS that had no space, and not "/".
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-26-2004 10:12 PM
тАО07-26-2004 10:12 PM
Re: swinstall message
Regerds,
Dmitry Mugtasimov.