- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- lvcreate problem
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
09-13-2002 09:41 AM
09-13-2002 09:41 AM
here's my script:
for i in 191 192 193 194 195 196 197 198 199 200
do
lvcreate -n lv_ict_2048_raw_$i -L 2048 -i 4 -I 64 /dev/vg_ict_raw
done
I see:
lvcreate: Unable to generate a name for the logical volume.
Invalid argument
lvcreate: Unable to generate a name for the logical volume.
Invalid argument
lvcreate: Unable to generate a name for the logical volume.
Invalid argument
lvcreate: Unable to generate a name for the logical volume.
Invalid argument
lvcreate: Unable to generate a name for the logical volume.
Invalid argument
lvcreate: Unable to generate a name for the logical volume.
Invalid argument
lvcreate: Unable to generate a name for the logical volume.
Invalid argument
lvcreate: Unable to generate a name for the logical volume.
Invalid argument
lvcreate: Unable to generate a name for the logical volume.
Invalid argument
lvcreate: Unable to generate a name for the logical volume.
Invalid argument
Any idea ?
Thanks a lot
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-13-2002 09:47 AM
09-13-2002 09:47 AM
Re: lvcreate problem
Try a shorter string for your logical volume names.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-13-2002 09:50 AM
09-13-2002 09:50 AM
Re: lvcreate problem
1. confirm you have 4 disks with space in the volume group
2. change the sequence a bit:
lvcreate -L xxxx -i x -I xx -n
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-13-2002 09:50 AM
09-13-2002 09:50 AM
Re: lvcreate problem
But it's strange, because till lv_ict_2048_raw_191 it works fine...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-13-2002 09:52 AM
09-13-2002 09:52 AM
Re: lvcreate problem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-13-2002 09:54 AM
09-13-2002 09:54 AM
Re: lvcreate problem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-13-2002 09:55 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-13-2002 09:56 AM
09-13-2002 09:56 AM
Re: lvcreate problem
lvcreate -L 2048 -i 4 -I 64 -n lv_ict_2048_raw_191 /dev/vg_ict_raw
but same result...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-13-2002 09:57 AM
09-13-2002 09:57 AM
Re: lvcreate problem
try and enclose {} around the i... ${i}.. assuming that you are still trying to make this work and you need the lvols named the way you specified at the top
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-13-2002 10:04 AM
09-13-2002 10:04 AM
Re: lvcreate problem
Cur LV 255
Argh!! may be the problem is that.. how to solve it ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-13-2002 10:07 AM
09-13-2002 10:07 AM
Re: lvcreate problem
By the way, that post from the RC ENGINEER was really me. Something really freaky happened when I logged in and posted a response on this thread. I got logged in as myself now, but that was scary.
JP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-13-2002 10:12 AM
09-13-2002 10:12 AM
Re: lvcreate problem
John P (a.k.a. "the engineer") nailed it. If you have 255 logical volumes in a volume group you are at a limit. You simply cannot create anymore within the volume group!
Regards!
...JRF...