<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: raw device size in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/raw-device-size/m-p/3742185#M256328</link>
    <description>ANd if you want to find know the sizes of your RAW devices:&lt;BR /&gt;&lt;BR /&gt;HP-UX/SOlaris running VxVM:&lt;BR /&gt;&lt;BR /&gt;vxprint -Aht|grep "^v"&lt;BR /&gt;vxprint -Aht&lt;BR /&gt;&lt;BR /&gt;HP-UX Running LVM:&lt;BR /&gt;&lt;BR /&gt;vgdisplay -v&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Solaris running Disksuite/SVM:&lt;BR /&gt;&lt;BR /&gt;metastat &lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Wed, 01 Mar 2006 23:06:26 GMT</pubDate>
    <dc:creator>Alzhy</dc:creator>
    <dc:date>2006-03-01T23:06:26Z</dc:date>
    <item>
      <title>raw device size</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/raw-device-size/m-p/3742181#M256324</link>
      <description>dear all&lt;BR /&gt;&lt;BR /&gt;I want to know how take the size of raw devices &amp;amp; how to add new raw device both in solaris 9 and HP-UX 11i&lt;BR /&gt;&lt;BR /&gt;thanks in adv&lt;BR /&gt;regards&lt;BR /&gt;wish</description>
      <pubDate>Wed, 01 Mar 2006 19:17:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/raw-device-size/m-p/3742181#M256324</guid>
      <dc:creator>wish_1</dc:creator>
      <dc:date>2006-03-01T19:17:15Z</dc:date>
    </item>
    <item>
      <title>Re: raw device size</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/raw-device-size/m-p/3742182#M256325</link>
      <description>In HP-UX - diskinfo will show you the size of the raw device.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;"Managing Disks"&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://docs.hp.com/en/B2355-90950/ch06s01.html" target="_blank"&gt;http://docs.hp.com/en/B2355-90950/ch06s01.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;In Solaris - I believe the command is prtvtoc and metainit to create raw devices - check out &lt;A href="http://docsun.cites.uiuc.edu/sun_docs/C/solaris_9/SUNWaadm/LOGVOLMGRADMIN/toc.html" target="_blank"&gt;http://docsun.cites.uiuc.edu/sun_docs/C/solaris_9/SUNWaadm/LOGVOLMGRADMIN/toc.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff</description>
      <pubDate>Wed, 01 Mar 2006 20:29:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/raw-device-size/m-p/3742182#M256325</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2006-03-01T20:29:20Z</dc:date>
    </item>
    <item>
      <title>Re: raw device size</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/raw-device-size/m-p/3742183#M256326</link>
      <description>In HPUX you add RAW device by adding a LV&lt;BR /&gt;lvcreate -L &lt;SIZE&gt; -n &lt;NAME&gt; &lt;VG name=""&gt;&lt;BR /&gt;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)&lt;BR /&gt;&lt;BR /&gt;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&lt;/VG&gt;&lt;/NAME&gt;&lt;/SIZE&gt;</description>
      <pubDate>Wed, 01 Mar 2006 20:33:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/raw-device-size/m-p/3742183#M256326</guid>
      <dc:creator>Rajeev  Shukla</dc:creator>
      <dc:date>2006-03-01T20:33:11Z</dc:date>
    </item>
    <item>
      <title>Re: raw device size</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/raw-device-size/m-p/3742184#M256327</link>
      <description>Wish, Peace.&lt;BR /&gt;&lt;BR /&gt;If you use VxVM on Solaris and HP-UX as most shops nowadays do, the command is something like:&lt;BR /&gt;&lt;BR /&gt;vxassist -g sapdg make maaster01_dbf 8g layout=striped ncols=8 stwidth=64&lt;BR /&gt;&lt;BR /&gt;Your RAW device will then be: &lt;BR /&gt;&lt;BR /&gt;/dev/vx/rdsk/sapdg/master01_dbf&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;If using Solaris' native volume manager (Disksuite or SVM):&lt;BR /&gt;&lt;BR /&gt;metainit &lt;OPTIONS&gt;&lt;BR /&gt;&lt;BR /&gt;Your Raw device will be something like:&lt;BR /&gt;&lt;BR /&gt;/dev/md/rdsk/d100&lt;BR /&gt;&lt;BR /&gt;If using HP's native LVM (Above VxVM stripe will be built simlarly using:):&lt;BR /&gt;&lt;BR /&gt;lvcreate -i 8 -I 64 -L 8192 -n master01 vgsap&lt;BR /&gt;&lt;BR /&gt;Your RAW device will be(note the r):&lt;BR /&gt;&lt;BR /&gt;/dev/vgsap/rmaster01&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Hope this helps.&lt;BR /&gt;&lt;/OPTIONS&gt;</description>
      <pubDate>Wed, 01 Mar 2006 22:56:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/raw-device-size/m-p/3742184#M256327</guid>
      <dc:creator>Alzhy</dc:creator>
      <dc:date>2006-03-01T22:56:44Z</dc:date>
    </item>
    <item>
      <title>Re: raw device size</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/raw-device-size/m-p/3742185#M256328</link>
      <description>ANd if you want to find know the sizes of your RAW devices:&lt;BR /&gt;&lt;BR /&gt;HP-UX/SOlaris running VxVM:&lt;BR /&gt;&lt;BR /&gt;vxprint -Aht|grep "^v"&lt;BR /&gt;vxprint -Aht&lt;BR /&gt;&lt;BR /&gt;HP-UX Running LVM:&lt;BR /&gt;&lt;BR /&gt;vgdisplay -v&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Solaris running Disksuite/SVM:&lt;BR /&gt;&lt;BR /&gt;metastat &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 01 Mar 2006 23:06:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/raw-device-size/m-p/3742185#M256328</guid>
      <dc:creator>Alzhy</dc:creator>
      <dc:date>2006-03-01T23:06:26Z</dc:date>
    </item>
  </channel>
</rss>

