- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- lvcreate and 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
01-11-2006 03:46 AM
01-11-2006 03:46 AM
Is it possible to do lvcreate and put the disk you want to assign?
I'am working with 11.11
something like
#lvcreate -n lvdat1 -L 100 /dev/vg02 /dev/dsk/c1t2d0
Thanks a lot of!
Carmen.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2006 03:49 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2006 03:51 AM
01-11-2006 03:51 AM
Re: lvcreate and disk
I don't believe this is possible. You would "vgextend" your vg02 to span additional disk devices, can not do so via lvextend command.
Andy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2006 03:57 AM
01-11-2006 03:57 AM
Re: lvcreate and disk
learn something new every day, you can in fact lvextend a mirrored copy of a logical volume to a disk device. You just can't do it via the lvcreate command.
Andy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2006 04:08 AM
01-11-2006 04:08 AM
Re: lvcreate and disk
You can't define a disk path while creating an LVOL. You have to create a blank LV with the following command.
#lvcreate -n lvdat1 vg02
Then you have to extend that lvol to a purticular disk with
#lvextend -L 100 /dev/vg02/lvdat1 /dev/dsk/c1t2d0
Regards
Shameer
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2006 10:16 PM
01-11-2006 10:16 PM
Re: lvcreate and disk
Andy,
You can assign the LE's to a desired disk while creating as well as while extending mirrors.
While Creating
#lvcreate /dev/vg00
#lvextend -L xxxx /dev/vgxx/lvol? /dev/dsk/cxtydz
While Extending
#lvextend -m 1 /dev/vgxx/lvol? /dev/dsk/cxtydz
HTH,
Devender