- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Extending logical volume
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
11-28-2006 06:51 AM
11-28-2006 06:51 AM
Extending logical volume
One disk is 100GB free space.
I want to extend /var/mail that its size may be 246GB.
I want to know if there is posible or is there is some alternative.
One disk is member of VG00.
Tks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-28-2006 06:56 AM
11-28-2006 06:56 AM
Re: Extending logical volume
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-28-2006 07:18 AM
11-28-2006 07:18 AM
Re: Extending logical volume
Is the filesystem presently /var with a subdirectory within it called mail or is the filesystem actually /var/mail?
Are you running OnlineJFS?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-28-2006 06:56 PM
11-28-2006 06:56 PM
Re: Extending logical volume
Mark Syder (like the drink but spelt different)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-07-2006 04:21 AM
12-07-2006 04:21 AM
Re: Extending logical volume
It could be possible if i add the disk to VG00??
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-07-2006 04:45 AM
12-07-2006 04:45 AM
Re: Extending logical volume
It is possible if the the disk is part of vg00.
If you have online JFS installed, you can extend it real time.
If you do not, then mount point needs to be idle in order to extend it. (off line)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-07-2006 04:58 AM
12-07-2006 04:58 AM
Re: Extending logical volume
# vgdisplay -v /dev/vg00
# ioscan -funC disk
# bdf
Thanks,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-07-2006 04:58 AM
12-07-2006 04:58 AM
Re: Extending logical volume
# vgdisplay -v /dev/vg00
# ioscan -funC disk
# bdf
Thanks,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-07-2006 06:38 AM
12-07-2006 06:38 AM
Re: Extending logical volume
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-07-2006 06:50 AM
12-07-2006 06:50 AM
Re: Extending logical volume
So, you want to know if you can take the free space from VG00 and increase the size of /var/mail on vg01? If that is what you are asking, then the answer is no. You would have to remove vg01 completely and then add the disk c2t1d0 to vg00 and then you could extend the size of /var/mail. There is another way, but would involve making an ignite tape and basically reconfiguring the filesystems/disks as I see you have a c0t0d0 disk as well.
Anyway, I hope I answered your question and if not....just write back.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-07-2006 07:03 AM
12-07-2006 07:03 AM
Re: Extending logical volume
I have to extend vg00 thats ok, but i want to know how to extend /var/mail to occupy the resto of the disk c2t0d0 and the complete space of c2t1d0??
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-07-2006 07:15 AM
12-07-2006 07:15 AM
Re: Extending logical volume
# pvcreate -f /dev/rdsk/c2t1d0
# vgextend vg00 /dev/dsk/c2t1d0
# lvcreate -L SIZE IN MB -n mail vg00
# newfs -F vxfs /dev/vg00/mail
# mount /var/mail
Hopefully I covered it all for you.