- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Create a volume
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
05-24-2007 05:21 PM
05-24-2007 05:21 PM
Create a volume
I have a VG whih 4 disk. It`s possible to I create a volume pointing to one disk??? I need to create 4 volumes for Oracle ( System, Index, Datafiles and Redo ) and don`t want to have risk of I/O concorrent.
Tks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-24-2007 05:22 PM
05-24-2007 05:22 PM
Re: Create a volume
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-24-2007 05:39 PM
05-24-2007 05:39 PM
Re: Create a volume
/dev/vgoracle
/dev/dsk/c15t0d0
/dev/dsk/c15t0d1
/dev/dsk/c15t0d2
/dev/dsk/c15t0d3
I need to create four volumes:
/dev/vgoracle/redo in c15t0d0
/dev/vgoracle/system in c15t0d1
/dev/vgoracle/undo in c15t0d2
/dev/vgoracle/temp in c15t0d3
Tks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-24-2007 06:37 PM
05-24-2007 06:37 PM
Re: Create a volume
I have suggestion for you. why you not create 4 volume group, each volume group have 1 disk and 1 lvol. it's more easier.
thanks
freddy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-24-2007 06:46 PM
05-24-2007 06:46 PM
Re: Create a volume
Using LVM:
$ lvcreate -n redo vgoracle
$ lvextend -l 1000 /dev/vgoracle/redo c15t0d0
means first create size zero lvol.
Second extend it on the disk in question.
rgds
HGH
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-24-2007 06:58 PM
05-24-2007 06:58 PM
Re: Create a volume
Thanks
Freddy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2007 05:35 PM
05-29-2007 05:35 PM
Re: Create a volume
Thanks,
Vivek