- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Unsplitting mirrored disks
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-17-2002 04:11 AM - last edited on 05-18-2014 07:56 PM by Lisa198503
07-17-2002 04:11 AM - last edited on 05-18-2014 07:56 PM by Lisa198503
I have a system with multiple mirrored disks (eg /dev/vg09/lvol1). I would like to lose this mirror and make the filesystem (eg. /user16) twice it's mirrored size. How do I do this ?
P.S. This thread has been moved from Disk to HP-UX > sysadmin. -HP Forum Moderator
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-17-2002 04:31 AM
07-17-2002 04:31 AM
Re: Unsplitting mirrored disks
You need to execute the following command for all logical volumes you have:
lvreduce -m 0 /dev/vgname/lvname
where vgname is the name of the vg and lv name is the name of the logical volume.
You don't need to extend your harddisks again since they are already in the lvmtab.
HTH,
Vince
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-17-2002 01:20 PM
07-17-2002 01:20 PM
Re: Unsplitting mirrored disks
You can also do this with SAM.
HTH
Marty
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-17-2002 01:51 PM
07-17-2002 01:51 PM
SolutionWithout OnlineJFS
=================
# umount /user16
# lvreduce -m 0 /dev/vg09/lvol1
# vgdisplay vg09
==> Take note of how many "Free PE" is now available for the extension (lets say its 400 free PEs which means you got additional 400x4=1600MB space assuming your PE size stays default at 4MB).
# lvextend -L 3200 /dev/vg09/lvol1
==> Extending your LV to the "new" size 3.2GB (just an example here)
# extendfs -F vxfs /dev/vg09/rlvol1
==> Assuming you're using "vxfs", if HFS just replace that with "hfs".
# mount -a
# bdf
==> Check the FS size.
With OnlineJFS (can be done on the fly)
=======================================
# lvreduce -m 0 /dev/vg09/lvol1
# lvextend -L 3200 /dev/vg09/lvol1
# fsadm -b 3276800 /user16
# bdf
==> Check the FS size.
==> 3200*1024=3276800
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-17-2002 11:35 PM
07-17-2002 11:35 PM
Re: Unsplitting mirrored disks
George