<?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: create raw devices. in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/create-raw-devices/m-p/4864475#M747535</link>
    <description>Thanks for all the guide. ;)</description>
    <pubDate>Thu, 07 Oct 2004 05:21:16 GMT</pubDate>
    <dc:creator>anilezfa</dc:creator>
    <dc:date>2004-10-07T05:21:16Z</dc:date>
    <item>
      <title>create raw devices.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-raw-devices/m-p/4864469#M747529</link>
      <description>Could some one guide me on how to create a raw devices for a database? Thanks.</description>
      <pubDate>Thu, 07 Oct 2004 03:36:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-raw-devices/m-p/4864469#M747529</guid>
      <dc:creator>anilezfa</dc:creator>
      <dc:date>2004-10-07T03:36:21Z</dc:date>
    </item>
    <item>
      <title>Re: create raw devices.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-raw-devices/m-p/4864470#M747530</link>
      <description>It's the same way you create logical volume. In this case no need to create FS on volume and /dev/vgnn/rlvolmm will be used as raw volumes fro database.&lt;BR /&gt;&lt;BR /&gt;Sunil</description>
      <pubDate>Thu, 07 Oct 2004 03:39:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-raw-devices/m-p/4864470#M747530</guid>
      <dc:creator>Sunil Sharma_1</dc:creator>
      <dc:date>2004-10-07T03:39:12Z</dc:date>
    </item>
    <item>
      <title>Re: create raw devices.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-raw-devices/m-p/4864471#M747531</link>
      <description>Informix right?&lt;BR /&gt;&lt;BR /&gt;Just create a logical volume as you would normally, but do not create a filesystem on it.&lt;BR /&gt;&lt;BR /&gt;e.g.&lt;BR /&gt;lvcreate -n myrawlv /dev/myvg&lt;BR /&gt;lvextend -L &lt;SIZE&gt; /dev/myvg/myrawlv&lt;BR /&gt;&lt;BR /&gt;You then need to create a symbolic link somewhere to point to the device of the logical volume.&lt;BR /&gt;&lt;BR /&gt;ln -s /dev/myvg/myrawlv /links/dbspace1&lt;/SIZE&gt;</description>
      <pubDate>Thu, 07 Oct 2004 03:42:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-raw-devices/m-p/4864471#M747531</guid>
      <dc:creator>Michael Tully</dc:creator>
      <dc:date>2004-10-07T03:42:17Z</dc:date>
    </item>
    <item>
      <title>Re: create raw devices.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-raw-devices/m-p/4864472#M747532</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;just create a LV as normally with lvcreate but don't put a FS on it&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;&lt;BR /&gt;Franky</description>
      <pubDate>Thu, 07 Oct 2004 04:00:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-raw-devices/m-p/4864472#M747532</guid>
      <dc:creator>Franky_1</dc:creator>
      <dc:date>2004-10-07T04:00:57Z</dc:date>
    </item>
    <item>
      <title>Re: create raw devices.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-raw-devices/m-p/4864473#M747533</link>
      <description>If I want :&lt;BR /&gt;&lt;BR /&gt;device: /dev/myraw/&lt;BR /&gt;char,block name: abc,rabc&lt;BR /&gt;&lt;BR /&gt;So I just run the following :&lt;BR /&gt;&lt;BR /&gt;1) lvcreate -L 2048 -n abc /dev/myraw&lt;BR /&gt;&lt;BR /&gt;and that's it? How can I check that it was created properly?</description>
      <pubDate>Thu, 07 Oct 2004 04:05:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-raw-devices/m-p/4864473#M747533</guid>
      <dc:creator>anilezfa</dc:creator>
      <dc:date>2004-10-07T04:05:51Z</dc:date>
    </item>
    <item>
      <title>Re: create raw devices.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-raw-devices/m-p/4864474#M747534</link>
      <description>lvdisplay -v /dev/myraw/abc&lt;BR /&gt;vgdispplay -v /dev/myraw&lt;BR /&gt;&lt;BR /&gt;Although if there was a problem, the command line would tell you.</description>
      <pubDate>Thu, 07 Oct 2004 04:10:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-raw-devices/m-p/4864474#M747534</guid>
      <dc:creator>Michael Tully</dc:creator>
      <dc:date>2004-10-07T04:10:47Z</dc:date>
    </item>
    <item>
      <title>Re: create raw devices.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-raw-devices/m-p/4864475#M747535</link>
      <description>Thanks for all the guide. ;)</description>
      <pubDate>Thu, 07 Oct 2004 05:21:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-raw-devices/m-p/4864475#M747535</guid>
      <dc:creator>anilezfa</dc:creator>
      <dc:date>2004-10-07T05:21:16Z</dc:date>
    </item>
  </channel>
</rss>

