<?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 a logical volume? in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/create-a-logical-volume/m-p/2604574#M34892</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;The 'xxxx' part of the line was a name. You&lt;BR /&gt;can use any name you wish. I personally use&lt;BR /&gt;names relevant to what the lgical volume is&lt;BR /&gt;for. The 'pvcreate' command tells the disk&lt;BR /&gt;that it is to be used as an LVM disk. The&lt;BR /&gt;'lvcreate' command is used to name a &lt;BR /&gt;logical volume that will live on the disk.&lt;BR /&gt;The main difference is that you can have up&lt;BR /&gt;to 255 logical volumes in a volume group or&lt;BR /&gt;if there is one disk 255 logical partitions&lt;BR /&gt;on the one disk.&lt;BR /&gt;&lt;BR /&gt;If you make a mistake is fairly easy to get &lt;BR /&gt;it back and start again. Hope that this &lt;BR /&gt;explains things.&lt;BR /&gt;&lt;BR /&gt;-Michael&lt;BR /&gt;</description>
    <pubDate>Wed, 31 Oct 2001 07:28:10 GMT</pubDate>
    <dc:creator>Michael Tully</dc:creator>
    <dc:date>2001-10-31T07:28:10Z</dc:date>
    <item>
      <title>Create a logical volume?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-a-logical-volume/m-p/2604568#M34886</link>
      <description>Thank you in advance to all experts,&lt;BR /&gt;&lt;BR /&gt;My company bought a C1800 HP workstation and have two hardisk. The first harddisk is 9GB. That is now problem for that. Now, I want to add another hardisk about 36GB and want to do "partition" in HPUX is known as create a logical volume in 10GB disk space for a logical volume.&lt;BR /&gt;&lt;BR /&gt;So, 36GB will become 10GB, 10GB, 16GB.&lt;BR /&gt;&lt;BR /&gt;How do I start, please help?&lt;BR /&gt;&lt;BR /&gt;Thank you every much to all,&lt;BR /&gt;Peston. &lt;BR /&gt;</description>
      <pubDate>Wed, 31 Oct 2001 04:18:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-a-logical-volume/m-p/2604568#M34886</guid>
      <dc:creator>Peston</dc:creator>
      <dc:date>2001-10-31T04:18:37Z</dc:date>
    </item>
    <item>
      <title>Re: Create a logical volume?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-a-logical-volume/m-p/2604569#M34887</link>
      <description>Michael Tully explained this in your other thread:&lt;BR /&gt;&lt;BR /&gt;&amp;gt;&amp;gt;pvcreate /dev/rdsk/cxtxdx (substitute your &lt;BR /&gt;disk) &lt;BR /&gt;&lt;BR /&gt;&amp;gt;&amp;gt;mkdir /dev/vg01 (assuming you don't have one)&lt;BR /&gt;&lt;BR /&gt;&amp;gt;&amp;gt;mknod /dev/vg01/group c 64 0x010000 &lt;BR /&gt;&lt;BR /&gt;&amp;gt;&amp;gt;vgcreate -p 128 /dev/vg01 /dev/dsk/cxtxdx &lt;BR /&gt;&lt;BR /&gt;&amp;gt;&amp;gt;lvcreate -n xxxx (use name you wish)&lt;BR /&gt; &lt;BR /&gt;&amp;gt;&amp;gt;lvextend -L 1024 /dev/vg01/xxxx &lt;BR /&gt;(substitute the size to what you like, this is &lt;BR /&gt;in Mb)&lt;BR /&gt; &lt;BR /&gt;to mount it etc &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;gt;&amp;gt;mkdir /mountpoint &lt;BR /&gt;&lt;BR /&gt;&amp;gt;&amp;gt;newfs -F vxfs /dev/vg01/rxxxx &lt;BR /&gt;&lt;BR /&gt;&amp;gt;&amp;gt;mount /dev/vg01/xxxx /mountpoint &lt;BR /&gt;&lt;BR /&gt;Edit your /etc/fstab file so that the filesystem &lt;BR /&gt;gets mounted next time you reboot. &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 31 Oct 2001 04:24:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-a-logical-volume/m-p/2604569#M34887</guid>
      <dc:creator>harry d brown jr</dc:creator>
      <dc:date>2001-10-31T04:24:50Z</dc:date>
    </item>
    <item>
      <title>Re: Create a logical volume?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-a-logical-volume/m-p/2604570#M34888</link>
      <description>Check the output if # ioscan -fnCdisk .&lt;BR /&gt;&lt;BR /&gt;If all your disks are identified, run sam&lt;BR /&gt;and create logical volumes as you like.&lt;BR /&gt;&lt;BR /&gt;~ Karvendhan M.</description>
      <pubDate>Wed, 31 Oct 2001 04:43:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-a-logical-volume/m-p/2604570#M34888</guid>
      <dc:creator>Karvendhan M</dc:creator>
      <dc:date>2001-10-31T04:43:09Z</dc:date>
    </item>
    <item>
      <title>Re: Create a logical volume?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-a-logical-volume/m-p/2604571#M34889</link>
      <description>Hi,&lt;BR /&gt; &lt;BR /&gt;yes have a look at your previous posting for&lt;BR /&gt;the answer. All you need to do is do an&lt;BR /&gt;'lvcreate -n xxxx /dev/vg01' for each volume&lt;BR /&gt;you wish to create and a &lt;BR /&gt;'lvextend -L 10240 /dev/vg01/xxxx' &lt;BR /&gt;(for a 10gb logical volume)&lt;BR /&gt;'lvextend -L 16384 /dev/vg01/xxxx'&lt;BR /&gt;(for a 16Gb logical volume)&lt;BR /&gt;&lt;BR /&gt;generate the filesystems using 'newfs' and&lt;BR /&gt;mount them.&lt;BR /&gt;&lt;BR /&gt;HTH&lt;BR /&gt;-Michael</description>
      <pubDate>Wed, 31 Oct 2001 04:48:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-a-logical-volume/m-p/2604571#M34889</guid>
      <dc:creator>Michael Tully</dc:creator>
      <dc:date>2001-10-31T04:48:27Z</dc:date>
    </item>
    <item>
      <title>Re: Create a logical volume?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-a-logical-volume/m-p/2604572#M34890</link>
      <description>If new harddisk was seen from ioscan &lt;BR /&gt;easily using sam , goto disk and file system&lt;BR /&gt;-&amp;gt; Volume group &lt;BR /&gt;you can extend existing VG or create new VG using new disk.&lt;BR /&gt;then create or extend logical volume using Logical volume menu.&lt;BR /&gt;</description>
      <pubDate>Wed, 31 Oct 2001 04:48:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-a-logical-volume/m-p/2604572#M34890</guid>
      <dc:creator>Printaporn_1</dc:creator>
      <dc:date>2001-10-31T04:48:57Z</dc:date>
    </item>
    <item>
      <title>Re: Create a logical volume?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-a-logical-volume/m-p/2604573#M34891</link>
      <description>Hi,Thanks all. Yap, Micheal&lt;BR /&gt;&lt;BR /&gt;What does this mean 'xxxx' as you given here&lt;BR /&gt;lvcreate -n xxxx /dev/vg01?&lt;BR /&gt;&lt;BR /&gt;How is difference pvcreate and lvcreate? &lt;BR /&gt;&lt;BR /&gt;I really hit the pressure when this my first time hand-on experince to do a creat logical volume?&lt;BR /&gt;&lt;BR /&gt;If I done wrongly, anyway to bring back normal?&lt;BR /&gt;&lt;BR /&gt;Thanks a lot.&lt;BR /&gt;Peston.&lt;BR /&gt;</description>
      <pubDate>Wed, 31 Oct 2001 06:04:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-a-logical-volume/m-p/2604573#M34891</guid>
      <dc:creator>Peston</dc:creator>
      <dc:date>2001-10-31T06:04:34Z</dc:date>
    </item>
    <item>
      <title>Re: Create a logical volume?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-a-logical-volume/m-p/2604574#M34892</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;The 'xxxx' part of the line was a name. You&lt;BR /&gt;can use any name you wish. I personally use&lt;BR /&gt;names relevant to what the lgical volume is&lt;BR /&gt;for. The 'pvcreate' command tells the disk&lt;BR /&gt;that it is to be used as an LVM disk. The&lt;BR /&gt;'lvcreate' command is used to name a &lt;BR /&gt;logical volume that will live on the disk.&lt;BR /&gt;The main difference is that you can have up&lt;BR /&gt;to 255 logical volumes in a volume group or&lt;BR /&gt;if there is one disk 255 logical partitions&lt;BR /&gt;on the one disk.&lt;BR /&gt;&lt;BR /&gt;If you make a mistake is fairly easy to get &lt;BR /&gt;it back and start again. Hope that this &lt;BR /&gt;explains things.&lt;BR /&gt;&lt;BR /&gt;-Michael&lt;BR /&gt;</description>
      <pubDate>Wed, 31 Oct 2001 07:28:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-a-logical-volume/m-p/2604574#M34892</guid>
      <dc:creator>Michael Tully</dc:creator>
      <dc:date>2001-10-31T07:28:10Z</dc:date>
    </item>
    <item>
      <title>Re: Create a logical volume?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-a-logical-volume/m-p/2604575#M34893</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;do you initially really need the 10GB, 10GB &amp;amp; 16GB ??&lt;BR /&gt;It might be a good idea to start with smaller sizes, and leave some disk space unallocated.  Later, when needed, you can increase the size of these logical volumes.&lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;Thierry.</description>
      <pubDate>Wed, 31 Oct 2001 08:08:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-a-logical-volume/m-p/2604575#M34893</guid>
      <dc:creator>Thierry Poels_1</dc:creator>
      <dc:date>2001-10-31T08:08:44Z</dc:date>
    </item>
    <item>
      <title>Re: Create a logical volume?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-a-logical-volume/m-p/2604576#M34894</link>
      <description>Thierry makes a good suggestion:  only create the logical volumes you need now at the size you need.  With LVM you don't have to allocate all the disk space when you set up the system. You can easily allocate more logical volumes (and filesystems on thoses LVs) on the fly.  You can also increase the size of LVs later.  If you have online JFS you can expand your current logical volumes with them up and running.&lt;BR /&gt;&lt;BR /&gt;Of course, you can go ahead and allocate all the disk if you like.  Just remember you won't have any free space to add to current LVs later or to add new LVs.&lt;BR /&gt;&lt;BR /&gt;Darrell</description>
      <pubDate>Wed, 31 Oct 2001 13:19:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-a-logical-volume/m-p/2604576#M34894</guid>
      <dc:creator>Darrell Allen</dc:creator>
      <dc:date>2001-10-31T13:19:00Z</dc:date>
    </item>
    <item>
      <title>Re: Create a logical volume?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-a-logical-volume/m-p/2604577#M34895</link>
      <description>I would suggest you start to read some of the documentation available at &lt;A href="http://docs.hp.com" target="_blank"&gt;http://docs.hp.com&lt;/A&gt; to get up to speed with what you ar eattempting to do.&lt;BR /&gt;The I would recommend contacting an HP Education Centre to get onto the HP-UX Sys Admin course. This will help you to feel a lot more comfortable with the tasks you will be doing.</description>
      <pubDate>Wed, 31 Oct 2001 13:34:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-a-logical-volume/m-p/2604577#M34895</guid>
      <dc:creator>melvyn burnard</dc:creator>
      <dc:date>2001-10-31T13:34:45Z</dc:date>
    </item>
    <item>
      <title>Re: Create a logical volume?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-a-logical-volume/m-p/2604578#M34896</link>
      <description>And as a last comment for someone starting in HP-UX with a common task, the program called sam will do this quite well. Start sam, go into the disks/filesystems area, create a new volume group for the 36 Gb disk, then you can partition the new volume from the menus.  sam will even ask you about permanent mounting and will modify fstab for you.</description>
      <pubDate>Wed, 31 Oct 2001 13:49:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-a-logical-volume/m-p/2604578#M34896</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2001-10-31T13:49:07Z</dc:date>
    </item>
    <item>
      <title>Re: Create a logical volume?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-a-logical-volume/m-p/2604579#M34897</link>
      <description>Hi Peston,&lt;BR /&gt;&lt;BR /&gt;Refer to the hp manual for ux 11.0 "Managing Systems and workgroups"&lt;BR /&gt;&lt;BR /&gt;here is a thread from that manual for your refrence.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://docs.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/B2355-90742/B2355-90742_top.html&amp;amp;con=/hpux/onlinedocs/B2355-90742/00/00/49-con.html&amp;amp;toc=/hpux/onlinedocs/B2355-90742/00/00/49-toc.html&amp;amp;searchterms=LVM%20Procedures%20%20&amp;amp;queryid=20011031-083754" target="_blank"&gt;http://docs.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/B2355-90742/B2355-90742_top.html&amp;amp;con=/hpux/onlinedocs/B2355-90742/00/00/49-con.html&amp;amp;toc=/hpux/onlinedocs/B2355-90742/00/00/49-toc.html&amp;amp;searchterms=LVM%20Procedures%20%20&amp;amp;queryid=20011031-083754&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Hope this helps.&lt;BR /&gt;&lt;BR /&gt;thanks&lt;BR /&gt;</description>
      <pubDate>Wed, 31 Oct 2001 16:36:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-a-logical-volume/m-p/2604579#M34897</guid>
      <dc:creator>Sanjay_6</dc:creator>
      <dc:date>2001-10-31T16:36:10Z</dc:date>
    </item>
  </channel>
</rss>

