- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- lvcreate syntax for creating striped lvol
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
08-08-2003 10:06 AM
08-08-2003 10:06 AM
lvcreate syntax for creating striped lvol
Gracias!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-08-2003 10:31 AM
08-08-2003 10:31 AM
Re: lvcreate syntax for creating striped lvol
# lvcreate -L size-in-MB -i 4 -I 128 vg??
You cannot specify which disks to include at this point. You do that at the VG level when you create the VG.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-08-2003 10:55 AM
08-08-2003 10:55 AM
Re: lvcreate syntax for creating striped lvol
It was actually in the MAN page as well.. but it seems you've no option to pick which LUN (PV) you'd like the LVOL be created on? There must be a way apart from creating separate VG's for particular LUN's...
On VxVM I can specify which lun/disk to create my logical volume on:
vxassist -g somedg make stripevol 90G layout=striped ncols=4 alloc="disk11, disk22, disk33, disk34"
In the above example, I like to pick out those disks as I am sure they are on separate HBA's and arraygroups on my SAN....
Any tricks that will do the same on LVM apart from creating different VG's?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-08-2003 10:59 AM
08-08-2003 10:59 AM
Re: lvcreate syntax for creating striped lvol
To add to Patrick's comments. You can always create a logical volume with *zero* size by omitting the '-L' or '-l' arguments to 'lvcreate'. This allows you to specify the physical volumes to use when you actually allocate space with an 'lvextend'. See the man pages for 'lvcreate' and for 'lvextend' for more information.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-08-2003 11:26 AM
08-08-2003 11:26 AM
Re: lvcreate syntax for creating striped lvol
I did also find links on Google/ITRC/SunManager's List to this fact...