- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Adding A new disk and creating new VG
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-10-2004 08:33 PM
09-10-2004 08:33 PM
I am a new baby to this segment,can anyone help me to add a new disk and create new VG.I have hp 11.00.I have VG00 and VG01.I need to add e new VG03 and create a volume for 9 gb for DATA.I know the procedure how to add but no confidence.
Kindly help me,immediet replay is appriciated.
Thanks in advance
M Ganshyam
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-10-2004 08:45 PM
09-10-2004 08:45 PM
SolutionAssume that your new disk is c1t6d0
1. #pvcreate /dev/rdsk/c1t6d0
2. #mknod /dev/vg03/group c 64 0X030000
3. #vgcreate /dev/vg03 /dev/dsk/c1d0s2
4. #lvcreate -L 9126 -n lvdata /dev/vg03
5. #newfs -F vxfs /dev/vg03/rlvdata
6. #mkdir /data
7. #mount /dev/vg03/lvdata /data
regards
SK
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-10-2004 08:53 PM
09-10-2004 08:53 PM
Re: Adding A new disk and creating new VG
One addition to SK's good anser.
Before you add the disk to the server, save or print an output from
# ioscan -fnCdisk
Add the disk to the server.
# ioscan -fnCdisk
now you have the cxtydz numbers.
Regards,
Robert-Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-10-2004 09:13 PM
09-10-2004 09:13 PM
Re: Adding A new disk and creating new VG
One more thing in vgcreate you can specifiey the max no of disks , max_pe
by
#vgcreate -e
eg: #vgcreate -e 9126 -p 5 /dev/vg03 /dev/dsk/c1d0s2
regards
SK
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-10-2004 09:21 PM
09-10-2004 09:21 PM
Re: Adding A new disk and creating new VG
Thanks for sunil and Robert
M Ganshyam