- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- raw device size
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
Discussions
Discussions
Discussions
Forums
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
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
тАО03-01-2006 11:17 AM
тАО03-01-2006 11:17 AM
I want to know how take the size of raw devices & how to add new raw device both in solaris 9 and HP-UX 11i
thanks in adv
regards
wish
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-01-2006 12:29 PM
тАО03-01-2006 12:29 PM
Re: raw device size
"Managing Disks"
http://docs.hp.com/en/B2355-90950/ch06s01.html
In Solaris - I believe the command is prtvtoc and metainit to create raw devices - check out http://docsun.cites.uiuc.edu/sun_docs/C/solaris_9/SUNWaadm/LOGVOLMGRADMIN/toc.html
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-01-2006 12:33 PM
тАО03-01-2006 12:33 PM
Re: raw device size
lvcreate -L
this will create block and character device files in the VG and the character device files are the RAW device files (starting with a prefix of r)
Now to get the size of that RAW device file you use lvdisplay command but use the block device file instaed of character device file
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-01-2006 02:56 PM
тАО03-01-2006 02:56 PM
SolutionIf you use VxVM on Solaris and HP-UX as most shops nowadays do, the command is something like:
vxassist -g sapdg make maaster01_dbf 8g layout=striped ncols=8 stwidth=64
Your RAW device will then be:
/dev/vx/rdsk/sapdg/master01_dbf
If using Solaris' native volume manager (Disksuite or SVM):
metainit
Your Raw device will be something like:
/dev/md/rdsk/d100
If using HP's native LVM (Above VxVM stripe will be built simlarly using:):
lvcreate -i 8 -I 64 -L 8192 -n master01 vgsap
Your RAW device will be(note the r):
/dev/vgsap/rmaster01
Hope this helps.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-01-2006 03:06 PM
тАО03-01-2006 03:06 PM
Re: raw device size
HP-UX/SOlaris running VxVM:
vxprint -Aht|grep "^v"
vxprint -Aht
HP-UX Running LVM:
vgdisplay -v
Solaris running Disksuite/SVM:
metastat