- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Mirror/Disk
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
06-06-2008 05:40 AM
06-06-2008 05:40 AM
Mirror/Disk
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2008 05:46 AM
06-06-2008 05:46 AM
Re: Mirror/Disk
# lvextend -m 1 /dev/vgNN/lvolX /dev/dsk/cXtYdZ
...for example. See the manpages for 'lvextend'. The key to rememember is the LVM mirroring is done at the *logical volume* level.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2008 05:48 AM
06-06-2008 05:48 AM
Re: Mirror/Disk
http://docs.hp.com/en/B2355-90950/ch06s02.html#cdebgaei
Take care, there are different procedures for mirroring boot devices on PA-RISC and Integrity servers.
Hope this helps!
Regards
Torsten.
__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.
__________________________________________________
No support by private messages. Please ask the forum!
If you feel this was helpful please click the KUDOS! thumb below!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2008 06:30 AM
06-06-2008 06:30 AM
Re: Mirror/Disk
# lvextend -L
# umount /FS
# extendfs -F vxfs /dev/vgxx/lvolx
> There is nothing to be done on the Mirror disk
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-08-2008 08:50 PM
06-08-2008 08:50 PM
Re: Mirror/Disk
Check if the free PEs are available by
# vgdisplay
(Note that the space should be in multiple of mirror copies e.g. if you want to extend a LV by 100 MB having one mirror copy you should have 200 MB space free in volume group)
you can check no of mirror copies
# lvdisplay
then simply extend the LV by
# lvextend -L
if you have online JFS use
# fsadm -F
if you do not have online JFS then use
# umount
# extendfs -F
# mount
Hope it will help
Cheers !!