- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- create a volume group
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-02-2009 12:41 AM
06-02-2009 12:41 AM
create a volume group
#mkdir /dev/vg01
#mknod /dev/vg01/group c 64 0x010000
#vgcreate vg01 /dev/disk/disk5
i have receive the message:
increased the number of physical extents per physical volume to 8683
vgcreate: volume group "/dev/vg01" could not be created:
device busy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-02-2009 12:51 AM
06-02-2009 12:51 AM
Re: create a volume group
To fix this you need to increase your PE size from the default of 4Mb to something bigger like 8,16 or 32 ....
vgcerate -s (8,16,32) vg01 /dev/disk/disk5
mikap
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-02-2009 12:55 AM
06-02-2009 12:55 AM
Re: create a volume group
device busy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-02-2009 12:57 AM
06-02-2009 12:57 AM
Re: create a volume group
something might be accessing the disk you plan to include in your volume group. Check with:
# fuser /dev/disk/disk5.
Also check whether the disk is not used for some other purpose apart from LVM config.
J.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-02-2009 12:59 AM
06-02-2009 12:59 AM
Re: create a volume group
Jun 2, 2009 08:51:10 GMT Unassigned
Hi,
To fix this you need to increase your PE size from the default of 4Mb to something bigger like 8,16 or 32 ....
vgcerate -s (8,16,32) -e 65535 vg01 /dev/disk/disk5
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-02-2009 01:01 AM
06-02-2009 01:01 AM
Re: create a volume group
then try once more
#mkdir /dev/vg01
#mknod /dev/vg01/group c 64 0x010000
#vgcreate vg01 /dev/disk/disk5
thanks and regards
Sajjad Sahir
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-02-2009 01:07 AM
06-02-2009 01:07 AM
Re: create a volume group
# fuser /dev/disk/disk5.
I have receive only the error
"device busy"