<?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 volume group in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/volume-group/m-p/2643843#M646465</link>
    <description>want to bring a disk into an existing volume group,and need to create hfs filesystem on it after creating logical volumes.Will any body tell the necessary command or steps.appreciation</description>
    <pubDate>Sun, 13 Jan 2002 19:18:22 GMT</pubDate>
    <dc:creator>navin</dc:creator>
    <dc:date>2002-01-13T19:18:22Z</dc:date>
    <item>
      <title>volume group</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/volume-group/m-p/2643843#M646465</link>
      <description>want to bring a disk into an existing volume group,and need to create hfs filesystem on it after creating logical volumes.Will any body tell the necessary command or steps.appreciation</description>
      <pubDate>Sun, 13 Jan 2002 19:18:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/volume-group/m-p/2643843#M646465</guid>
      <dc:creator>navin</dc:creator>
      <dc:date>2002-01-13T19:18:22Z</dc:date>
    </item>
    <item>
      <title>Re: volume group</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/volume-group/m-p/2643844#M646466</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;This should be close. Let's assume that your existing VG is /dev/vg02 and that your new disk is c9t1d0. I assume that you have already created the device nodes for /dev/dsk/c9t1d0 and /dev/rdsk/c9t1d0.&lt;BR /&gt;&lt;BR /&gt;1) pvcreate -f /dev/rdsk/c9t1d0&lt;BR /&gt;2) vgextend /dev/vg02 /dev/dsk/c9t1d0&lt;BR /&gt;3) lvcreate -L 2000 -n lvol5 /dev/vg02&lt;BR /&gt;   This will create a 2000MB LV /dev/vg02/lvol5&lt;BR /&gt;4) newfs -F hfs /dev/vg02/rlvol5&lt;BR /&gt;5) mkdir /mountpoint&lt;BR /&gt;6) mount -F hfs /dev/vg02/lvol5 /mountpoint&lt;BR /&gt;&lt;BR /&gt;You will proabably want to make an /etc/fstab entry to automate the mounting. &lt;BR /&gt;&lt;BR /&gt;Note that if your new disk has more extents than your existing VG will allow some of your new disk will go unused.&lt;BR /&gt;&lt;BR /&gt;By the way, you can do everybit of this in SAM&lt;BR /&gt;including making the device files and doing the /etc/fstab entry. If you are a novice, that may be your best choice.&lt;BR /&gt;&lt;BR /&gt;Regards, Clay&lt;BR /&gt;</description>
      <pubDate>Sun, 13 Jan 2002 19:30:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/volume-group/m-p/2643844#M646466</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2002-01-13T19:30:11Z</dc:date>
    </item>
    <item>
      <title>Re: volume group</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/volume-group/m-p/2643845#M646467</link>
      <description>Hi Navin,&lt;BR /&gt;&lt;BR /&gt;Try this:&lt;BR /&gt;&lt;BR /&gt;1) Add the disk to the server.&lt;BR /&gt;2) Find out the device file for the new disk - 'ioscan -fnC disk' - (/dev/dsk/cxtxdx)&lt;BR /&gt;3) Extend VG - 'vgextend vg_name PV_name' - 'vgextend vgxx /dev/dsk/cxtxdx'&lt;BR /&gt;4) Create LV - 'lvcreate -L LV_size vg_name PV-name' - 'lvcreate -L XXX vgxx /dev/dsk/cxtxdx'&lt;BR /&gt; (here the LV-size should be in MB)&lt;BR /&gt;5) Create HFS file system - 'newfs -F hfs lv_name' - 'newfs -F hfs /dev/vgxx/rlvolx' (here the lv_name should be the raw device'&lt;BR /&gt;6) Mount file system - 'mount /mount_dir lv_name' - 'mount /mount_dir /dev/vgxx/lvolx'&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Shiju</description>
      <pubDate>Sun, 13 Jan 2002 19:39:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/volume-group/m-p/2643845#M646467</guid>
      <dc:creator>Helen French</dc:creator>
      <dc:date>2002-01-13T19:39:06Z</dc:date>
    </item>
    <item>
      <title>Re: volume group</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/volume-group/m-p/2643846#M646468</link>
      <description>Hi again,&lt;BR /&gt;&lt;BR /&gt;Missed one step. You need to 'pvcreate' the new disk before extending the VG.&lt;BR /&gt;&lt;BR /&gt;# pvcreate -f /dev/rdsk/cxtxdx&lt;BR /&gt;&lt;BR /&gt;Also if you use SAM, it will be so easy for u. Just open SAM - Disk Devices - Volume group - Add new disk.&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Shiju</description>
      <pubDate>Sun, 13 Jan 2002 19:42:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/volume-group/m-p/2643846#M646468</guid>
      <dc:creator>Helen French</dc:creator>
      <dc:date>2002-01-13T19:42:42Z</dc:date>
    </item>
  </channel>
</rss>

