<?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 logical volume in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/raw-logical-volume/m-p/3754760#M258279</link>
    <description>raw divice means logical volume without defining fstype(vxfs, hfs...)&lt;BR /&gt;so you can create LV by&lt;BR /&gt;#lvcreate -L sizeinMB -n name /dev/vgxx&lt;BR /&gt;#chown user:group /dev/vgxx/rname&lt;BR /&gt;That's all.&lt;BR /&gt;HTH&lt;BR /&gt;tienna</description>
    <pubDate>Mon, 20 Mar 2006 20:59:32 GMT</pubDate>
    <dc:creator>Nguyen Anh Tien</dc:creator>
    <dc:date>2006-03-20T20:59:32Z</dc:date>
    <item>
      <title>Raw logical volume</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/raw-logical-volume/m-p/3754754#M258273</link>
      <description>Hi, I am new to hp-ux admin. Client want me to create a new raw logical volume and give ownership to sybase. Can any admin tell me what exactly I need to do(commands) to create a raw LV and giving ownership.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;Raj</description>
      <pubDate>Mon, 20 Mar 2006 09:28:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/raw-logical-volume/m-p/3754754#M258273</guid>
      <dc:creator>Suni Raj</dc:creator>
      <dc:date>2006-03-20T09:28:00Z</dc:date>
    </item>
    <item>
      <title>Re: Raw logical volume</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/raw-logical-volume/m-p/3754755#M258274</link>
      <description>You can either use SAM or LVM commands.  The lvcreate command is used to create a logical volume.  If you need to create space for your logical volume, you might have to create or extend a volume group with pvcreate/vgcreate or vgextend.&lt;BR /&gt;&lt;BR /&gt;Once you've created the logical volume, you refer to the raw LV as /dev/vg__/rlvol_&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Mon, 20 Mar 2006 09:31:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/raw-logical-volume/m-p/3754755#M258274</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2006-03-20T09:31:47Z</dc:date>
    </item>
    <item>
      <title>Re: Raw logical volume</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/raw-logical-volume/m-p/3754756#M258275</link>
      <description>Hi Pete, thanks a lot for ur help. Could you also pls tell me how i assign this raw device to sybase user. The user name is sybase and group is sybadm.&lt;BR /&gt;&lt;BR /&gt;Regds&lt;BR /&gt;Suni</description>
      <pubDate>Mon, 20 Mar 2006 09:36:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/raw-logical-volume/m-p/3754756#M258275</guid>
      <dc:creator>Suni Raj</dc:creator>
      <dc:date>2006-03-20T09:36:32Z</dc:date>
    </item>
    <item>
      <title>Re: Raw logical volume</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/raw-logical-volume/m-p/3754757#M258276</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;In order to create a logical volume, run&lt;BR /&gt;&lt;BR /&gt;lvcreate -L sizeMB -n lvolname /dev/vgname&lt;BR /&gt;&lt;BR /&gt;In order to set ownership/permissions, run&lt;BR /&gt;&lt;BR /&gt;chown sybase /dev/vgname/lvolname or&lt;BR /&gt;chown sybase /dev/vgname/rlvolname,&lt;BR /&gt;&lt;BR /&gt;depending on the type of device, which is used (I guess, it's rlvolname).&lt;BR /&gt;&lt;BR /&gt;By the same way you can change permissions, i.e&lt;BR /&gt;chmod 755  /dev/vgname/rlvolname&lt;BR /&gt;&lt;BR /&gt;HTH</description>
      <pubDate>Mon, 20 Mar 2006 09:46:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/raw-logical-volume/m-p/3754757#M258276</guid>
      <dc:creator>Victor Fridyev</dc:creator>
      <dc:date>2006-03-20T09:46:59Z</dc:date>
    </item>
    <item>
      <title>Re: Raw logical volume</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/raw-logical-volume/m-p/3754758#M258277</link>
      <description>Not sure about Sybase, we're an Informix shop.  You might have to "chown sybase:sybadm /dev/vg__/rlvol__".  Instead, you might have to create a link to the raw logical device that is owned by sybase.  You'll have to check with our DBA.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Mon, 20 Mar 2006 09:47:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/raw-logical-volume/m-p/3754758#M258277</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2006-03-20T09:47:47Z</dc:date>
    </item>
    <item>
      <title>Re: Raw logical volume</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/raw-logical-volume/m-p/3754759#M258278</link>
      <description>Sorry - make that "your DBA"&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Mon, 20 Mar 2006 09:50:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/raw-logical-volume/m-p/3754759#M258278</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2006-03-20T09:50:02Z</dc:date>
    </item>
    <item>
      <title>Re: Raw logical volume</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/raw-logical-volume/m-p/3754760#M258279</link>
      <description>raw divice means logical volume without defining fstype(vxfs, hfs...)&lt;BR /&gt;so you can create LV by&lt;BR /&gt;#lvcreate -L sizeinMB -n name /dev/vgxx&lt;BR /&gt;#chown user:group /dev/vgxx/rname&lt;BR /&gt;That's all.&lt;BR /&gt;HTH&lt;BR /&gt;tienna</description>
      <pubDate>Mon, 20 Mar 2006 20:59:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/raw-logical-volume/m-p/3754760#M258279</guid>
      <dc:creator>Nguyen Anh Tien</dc:creator>
      <dc:date>2006-03-20T20:59:32Z</dc:date>
    </item>
    <item>
      <title>Re: Raw logical volume</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/raw-logical-volume/m-p/3754761#M258280</link>
      <description>I had great fun trying to organise a raw volume group for sybase. Simple enough to create raw file, I just used SAM. You then need to link the raw device to the databse filesystem that you are building for the sysbase installation.i.e.&lt;BR /&gt;&lt;BR /&gt;ln -s /dev/vgxx/rlvoly /sybase/dbsys1&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;JASH</description>
      <pubDate>Tue, 21 Mar 2006 04:35:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/raw-logical-volume/m-p/3754761#M258280</guid>
      <dc:creator>JASH_2</dc:creator>
      <dc:date>2006-03-21T04:35:03Z</dc:date>
    </item>
    <item>
      <title>Re: Raw logical volume</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/raw-logical-volume/m-p/3754762#M258281</link>
      <description>Personally, I would't do the linking. Within Sybase your DBA has the possibility to use the raw logical volume filename for the database devices (disk init &amp;lt;...&amp;gt;).&lt;BR /&gt;&lt;BR /&gt;Creating symlinks will increase the burden of System administration and most probably confuse others.&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;&lt;BR /&gt;   Pascal</description>
      <pubDate>Tue, 21 Mar 2006 11:40:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/raw-logical-volume/m-p/3754762#M258281</guid>
      <dc:creator>PAMvDam</dc:creator>
      <dc:date>2006-03-21T11:40:21Z</dc:date>
    </item>
    <item>
      <title>Re: Raw logical volume</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/raw-logical-volume/m-p/3754763#M258282</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;If you feel this issue is resolved,please close this and assign points since you have assigned points to only 11 out 52 posts&lt;BR /&gt;&lt;BR /&gt;Rgds&lt;BR /&gt;&lt;BR /&gt;HGN</description>
      <pubDate>Tue, 21 Mar 2006 13:56:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/raw-logical-volume/m-p/3754763#M258282</guid>
      <dc:creator>HGN</dc:creator>
      <dc:date>2006-03-21T13:56:48Z</dc:date>
    </item>
  </channel>
</rss>

