- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Unable to create logical volume - command line
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-09-2003 05:44 AM
08-09-2003 05:44 AM
Unable to create logical volume - command line
#lvcreate -L test -n lvol3 /dev/vg00
where lvol3-logical volume name
/dev/vg00-volume group
iam getting the following error
"LogicalVolumeSize": Must be a number.
Kindly help me out.
Thanks in advance
Jagadesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-09-2003 06:10 AM
08-09-2003 06:10 AM
Re: Unable to create logical volume - command line
#lvcreate -L test -n lvol3 /dev/vg00
shout be
#lvcreate -L 100 -n lvol3 /dev/vg00
where 100 is the size in Megabytes.
Robert-Jan.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-09-2003 06:26 AM
08-09-2003 06:26 AM
Re: Unable to create logical volume - command line
lvcreate -L 100 -n test /dev/vg00
The lvol3 in your command should not be there. The above command will create: /dev/vg00/test and /dev/vg00/rtest. If this lvol is to contain a filesystem, you'll need to create an empty directory structure using newfs as in:
newfs /dev/vg00/rtest
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-09-2003 06:38 AM
08-09-2003 06:38 AM
Re: Unable to create logical volume - command line
check the man pages of lvcreate.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-10-2003 08:36 PM
08-10-2003 08:36 PM
Re: Unable to create logical volume - command line
See this link for more information for LVM .
http://www.introcomp.co.uk/hpux/lvm_filesystem.html
Bye
S.Muthu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-10-2003 08:42 PM
08-10-2003 08:42 PM
Re: Unable to create logical volume - command line
These is syntex error in command.
You say logical volume "test: in first line and in command you given name lvol3.
if you want to create logical volume name test correct syntex is like this.
#lvcreate -L
-L option is for specifing Logical volume's size in MB.
Sunil Sharma