- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Re- sizing logical volumes
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
04-17-2005 11:50 PM
04-17-2005 11:50 PM
Re- sizing logical volumes
bdf command reveals..
/dev/vg01/lvol1 35921920 34385433 1459293 96% /BASE
/dev/vg00/lvol9 1024000 719272 285819 72% /USERS
How can I increase the space allocated to /BASE and reduce that allocated to /USERS?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-17-2005 11:53 PM
04-17-2005 11:53 PM
Re: Re- sizing logical volumes
Sorry not possible, you can not move space between volume groups.
post the ouput of
# vgdisplay -v
Regards,
Robert-Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-17-2005 11:58 PM
04-17-2005 11:58 PM
Re: Re- sizing logical volumes
Both the filesystems are on different volume group and there are very less chances that you can allocate the unused space to /BASE.
Regards,
Naveej
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2005 12:00 AM
04-18-2005 12:00 AM
Re: Re- sizing logical volumes
Yes, you can not free space of a lvol in one VG to a lvol in another VG. You can not even assign unallocated space of one VG to another VG. Allthough you can remove one complete Physical Volume from one VG and move to another if it is totally free. So post the output of vgdisplay -v for both volume groups i.e. /dev/vg00 and /dev/vg01.
HTH,
Devender
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2005 12:04 AM
04-18-2005 12:04 AM
Re: Re- sizing logical volumes
The only thing you could do would be to put a soft link from one filesystem to another.
Let's say you had a lot of your data in /BASE in a subdirectory called "mydata"
(i.e. /BASE/mydata)
What you could do is:
mv /BASE/mydata /USERS
Then:
ln -s /USERS/mydata /BASE
The files will move to /USERS but you can access them on /BASE.
It's not the cleanest, but it would help in the short term till you can get another disk to add to /dev/vg01.
Best regards,
Kent M. Ostby
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2005 12:12 AM
04-18-2005 12:12 AM
Re: Re- sizing logical volumes
--- Logical volumes ---
LV Name /dev/vg01/lvol1
LV Status available/syncd
LV Size (Mbytes) 35080
Current LE 8770
Allocated PE 8770
Used PV 1
LV Name /dev/vg00/lvol9
LV Status available/syncd
LV Size (Mbytes) 1000
Current LE 250
Allocated PE 250
Used PV 1
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2005 12:15 AM
04-18-2005 12:15 AM
Re: Re- sizing logical volumes
The only way what can help you for time being is creating link. Nothing else is possible as you have only one disk per VG. Meanwhile you can arrange a spare disk for adding to you vg01.
HTH,
Devender
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-19-2005 04:23 AM
04-19-2005 04:23 AM
Re: Re- sizing logical volumes
Get a good ignite image after loading the latest pax patch, and then Ignite the server.
It creates a bootable tape. If you have the storage on another server then make an IGNITE network server.
Then you may take the system down and repartition your drive to your hearts desire safely and redistribute the storage safely and that will buy you time. Get more storage and either use sam or the pvcreate, lvadd, lvextend,extendfs procedure...
Tim Sanko
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-19-2005 04:25 AM
04-19-2005 04:25 AM
Re: Re- sizing logical volumes
Tim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-19-2005 01:09 PM
04-19-2005 01:09 PM
Re: Re- sizing logical volumes
Reason: /Users file system belong to vg00
and /BASE belong to vg01.
thing to think:(If vg00 contains more than two physical disk)
1. Backup all data inside two Partition
2. Reduce disk from vg00
3. Add disk to vg01
4. Increase /BASE file system.
That's all
tienna