<?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: Partions on Disk in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/partions-on-disk/m-p/3543008#M223641</link>
    <description>It's amazing to see both answer YES|NO...actually i had made up my mind with "NO" becuase i was also thinking the same.&lt;BR /&gt;&lt;BR /&gt;Well Bernhard and Senthil kumar have cracked the funda with the idisk utility :). Well i am going to try that one and hopefully it should work.&lt;BR /&gt;&lt;BR /&gt;Well, point assignment was too early so both answers enjoys the rabbit.... &lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Girish..&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Sun, 15 May 2005 09:41:22 GMT</pubDate>
    <dc:creator>Girish_17</dc:creator>
    <dc:date>2005-05-15T09:41:22Z</dc:date>
    <item>
      <title>Partions on Disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/partions-on-disk/m-p/3542994#M223627</link>
      <description>Hi friends,&lt;BR /&gt;Is there any way of creating two partitions on a single disk (internal)?&lt;BR /&gt;If yes ...how do i do it!!!&lt;BR /&gt;Thanks in advance.&lt;BR /&gt;Regards,&lt;BR /&gt;Girish&lt;BR /&gt;</description>
      <pubDate>Thu, 12 May 2005 02:14:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/partions-on-disk/m-p/3542994#M223627</guid>
      <dc:creator>Girish_17</dc:creator>
      <dc:date>2005-05-12T02:14:48Z</dc:date>
    </item>
    <item>
      <title>Re: Partions on Disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/partions-on-disk/m-p/3542995#M223628</link>
      <description>I take it we're talking about filesystems.&lt;BR /&gt;&lt;BR /&gt;If you've not created a new filesystem before I would advise you to use sam.&lt;BR /&gt;&lt;BR /&gt;Provide us with details of bdf -il, tell us what you want the new filesystem to be for, and you'll get pleny of help here.&lt;BR /&gt;&lt;BR /&gt;Mark Syder (like the drink but spelt different)</description>
      <pubDate>Thu, 12 May 2005 02:23:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/partions-on-disk/m-p/3542995#M223628</guid>
      <dc:creator>MarkSyder</dc:creator>
      <dc:date>2005-05-12T02:23:39Z</dc:date>
    </item>
    <item>
      <title>Re: Partions on Disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/partions-on-disk/m-p/3542996#M223629</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;LVM - logical volume manager&lt;BR /&gt;&lt;BR /&gt;internal as in vg00 ?&lt;BR /&gt;&lt;BR /&gt;# vgdisplay -v vg00&lt;BR /&gt;# lvcreate -L size_in_mb -n lvolx /dev/vg00&lt;BR /&gt;# newfs -F vxfs /dev/vg00/rlvolX&lt;BR /&gt;&lt;BR /&gt;or use sam.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Robert-Jan</description>
      <pubDate>Thu, 12 May 2005 02:24:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/partions-on-disk/m-p/3542996#M223629</guid>
      <dc:creator>Robert-Jan Goossens</dc:creator>
      <dc:date>2005-05-12T02:24:31Z</dc:date>
    </item>
    <item>
      <title>Re: Partions on Disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/partions-on-disk/m-p/3542997#M223630</link>
      <description>Girish,&lt;BR /&gt;&lt;BR /&gt;2 logical volumes??&lt;BR /&gt;&lt;BR /&gt;Yes possible&lt;BR /&gt;&lt;BR /&gt;pvcreate -f /dev/rdsk/cXtYdZ&lt;BR /&gt;mkdir /dev/vgtest&lt;BR /&gt;mknod /dev/vgtest/group c 64 0x070000&lt;BR /&gt;vgcreate vgtest /dev/dsk/cXtYdZ&lt;BR /&gt;lvcreate vgtest&lt;BR /&gt;lvcreate vgtest&lt;BR /&gt;&lt;BR /&gt;now 2 logical volumes have been created&lt;BR /&gt;/dev/vgtest/lvol1 and lvol2&lt;BR /&gt;&lt;BR /&gt;create lvol1 with 100 MB and lvol2 with 200MB&lt;BR /&gt;&lt;BR /&gt;lvextend -L 100 /dev/vgtest/lvol1&lt;BR /&gt;lvextend -L 200 /dev/vgtest/lvol2&lt;BR /&gt;&lt;BR /&gt;Activate VG&lt;BR /&gt;vgchange -a y /dev/vgtest&lt;BR /&gt;&lt;BR /&gt;create filesystems:&lt;BR /&gt;mkfs -F vxfs -o largefiles /dev/vgtest/lvol1&lt;BR /&gt;mkfs -F vxfs -o largefiles /dev/vgtest/lvol2&lt;BR /&gt;&lt;BR /&gt;Create mountpoints:&lt;BR /&gt;mkdir /dir1 /dir2&lt;BR /&gt;&lt;BR /&gt;Mount the filesystems:&lt;BR /&gt;mount -F vxfs -o largefiles /dev/vgtest/lvol1 /dir1&lt;BR /&gt;mount -F vxfs -o largefiles /dev/vgtest/lvol2 /dir2&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Naveej</description>
      <pubDate>Thu, 12 May 2005 02:30:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/partions-on-disk/m-p/3542997#M223630</guid>
      <dc:creator>Naveej.K.A</dc:creator>
      <dc:date>2005-05-12T02:30:22Z</dc:date>
    </item>
    <item>
      <title>Re: Partions on Disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/partions-on-disk/m-p/3542998#M223631</link>
      <description>And after you do all this, don't forget to add them to /etc/fstab so they will be mounted next time you boot.</description>
      <pubDate>Thu, 12 May 2005 02:43:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/partions-on-disk/m-p/3542998#M223631</guid>
      <dc:creator>Alex Lavrov.</dc:creator>
      <dc:date>2005-05-12T02:43:10Z</dc:date>
    </item>
    <item>
      <title>Re: Partions on Disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/partions-on-disk/m-p/3542999#M223632</link>
      <description>as an add on.&lt;BR /&gt;&lt;BR /&gt;don't forget to add the filesystems in the /etc/fstab.&lt;BR /&gt;&lt;BR /&gt;so as an example. create new filesystem /rob&lt;BR /&gt;&lt;BR /&gt;# lvcreate -L 100 -n lvol8 /dev/vg00&lt;BR /&gt;Logical volume "/dev/vg00/lvol8" has been successfully created with&lt;BR /&gt;character device "/dev/vg00/rlvol8".&lt;BR /&gt;Logical volume "/dev/vg00/lvol8" has been successfully extended.&lt;BR /&gt;Volume Group configuration for /dev/vg00 has been saved in /etc/lvmconf/vg00.cof&lt;BR /&gt;# newfs -F vxfs /dev/vg00/rlvol8&lt;BR /&gt;    version 3 layout&lt;BR /&gt;    102400 sectors, 102400 blocks of size 1024, log size 1024 blocks&lt;BR /&gt;    unlimited inodes, 102400 data blocks, 101280 free data blocks&lt;BR /&gt;    4 allocation units of 32768 blocks, 32768 data blocks&lt;BR /&gt;    last allocation unit has 4096 data blocks&lt;BR /&gt;    first allocation unit starts at block 0&lt;BR /&gt;    overhead per allocation unit is 0 blocks&lt;BR /&gt;# mkdir /rob&lt;BR /&gt;# mount /dev/vg00/lvol8 /rob&lt;BR /&gt;# bdf /rob&lt;BR /&gt;Filesystem          kbytes    used   avail %used Mounted on&lt;BR /&gt;/dev/vg00/lvol8     102400    1133   94945    1% /rob&lt;BR /&gt;&lt;BR /&gt;add to the /etc/fstab&lt;BR /&gt;/dev/vg00/lvol8 /rob vxfs defaults 0 2&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Robert-Jan</description>
      <pubDate>Thu, 12 May 2005 02:48:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/partions-on-disk/m-p/3542999#M223632</guid>
      <dc:creator>Robert-Jan Goossens</dc:creator>
      <dc:date>2005-05-12T02:48:00Z</dc:date>
    </item>
    <item>
      <title>Re: Partions on Disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/partions-on-disk/m-p/3543000#M223633</link>
      <description>Thanks a lot for your answer but i think it's my mistake of not making the question clear.&lt;BR /&gt;&lt;BR /&gt;I actually mean Physically partitioning the disk.&lt;BR /&gt;e.g. i have one disk /dev/dsk/c0t0d0 &lt;BR /&gt;&lt;BR /&gt;when i do "pvcreate /dev/dsk/c0t0d0" i get one LUN i.e one Physical Volume and this is what i am calliing it as partition.&lt;BR /&gt;&lt;BR /&gt;Finally is it possible to have two PV's on a single disk??&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;</description>
      <pubDate>Thu, 12 May 2005 03:17:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/partions-on-disk/m-p/3543000#M223633</guid>
      <dc:creator>Girish_17</dc:creator>
      <dc:date>2005-05-12T03:17:02Z</dc:date>
    </item>
    <item>
      <title>Re: Partions on Disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/partions-on-disk/m-p/3543001#M223634</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Not possible on a sigle device file.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Naveej</description>
      <pubDate>Thu, 12 May 2005 03:19:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/partions-on-disk/m-p/3543001#M223634</guid>
      <dc:creator>Naveej.K.A</dc:creator>
      <dc:date>2005-05-12T03:19:06Z</dc:date>
    </item>
    <item>
      <title>Re: Partions on Disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/partions-on-disk/m-p/3543002#M223635</link>
      <description>No, it's not possible. One physical disk (LUN in your case) can belong to only one vg.</description>
      <pubDate>Thu, 12 May 2005 03:19:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/partions-on-disk/m-p/3543002#M223635</guid>
      <dc:creator>Alex Lavrov.</dc:creator>
      <dc:date>2005-05-12T03:19:54Z</dc:date>
    </item>
    <item>
      <title>Re: Partions on Disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/partions-on-disk/m-p/3543003#M223636</link>
      <description>A simple answer NO&lt;BR /&gt;it cant be done.&lt;BR /&gt;you can have only one disk device for every disk.</description>
      <pubDate>Thu, 12 May 2005 03:20:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/partions-on-disk/m-p/3543003#M223636</guid>
      <dc:creator>Mark Nieuwboer</dc:creator>
      <dc:date>2005-05-12T03:20:44Z</dc:date>
    </item>
    <item>
      <title>Re: Partions on Disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/partions-on-disk/m-p/3543004#M223637</link>
      <description>no &lt;BR /&gt;again repeating the sane but its not possible&lt;BR /&gt;regards&lt;BR /&gt;Pravin</description>
      <pubDate>Thu, 12 May 2005 06:23:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/partions-on-disk/m-p/3543004#M223637</guid>
      <dc:creator>Pravin Salgaonkar</dc:creator>
      <dc:date>2005-05-12T06:23:42Z</dc:date>
    </item>
    <item>
      <title>Re: Partions on Disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/partions-on-disk/m-p/3543005#M223638</link>
      <description>Well, the answer is NO as long as the disk is connected to a simple SCSI/IDE controller.&lt;BR /&gt;&lt;BR /&gt;But, if you have a hardware RAID controller, you can access the RAID utility, and make two logical drives on this disk. Then the OS will see two disks, and you will be able to create 2 VGs.&lt;BR /&gt;&lt;BR /&gt;Hope i am clear...&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Suraj</description>
      <pubDate>Thu, 12 May 2005 09:41:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/partions-on-disk/m-p/3543005#M223638</guid>
      <dc:creator>Suraj Singh_1</dc:creator>
      <dc:date>2005-05-12T09:41:00Z</dc:date>
    </item>
    <item>
      <title>Re: Partions on Disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/partions-on-disk/m-p/3543006#M223639</link>
      <description>Girish,&lt;BR /&gt;&lt;BR /&gt;the answer is YES,&lt;BR /&gt;&lt;BR /&gt;IF you are on HP-UX 11.23&lt;BR /&gt;&lt;BR /&gt;man idisk&lt;BR /&gt;&lt;BR /&gt;In fact you *need to* partition the disks to mirror your internal boot disks on an Itanium machine.&lt;BR /&gt;&lt;BR /&gt;You can also use idisk to slice other disks and put individual slices (partitions) into into different VGs like you do with the entire disks on HP-UX 11.11.&lt;BR /&gt;&lt;BR /&gt;This is a nice feature but bears some complications regarding the event of a disk failure....&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Bernhard&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 13 May 2005 04:53:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/partions-on-disk/m-p/3543006#M223639</guid>
      <dc:creator>Bernhard Mueller</dc:creator>
      <dc:date>2005-05-13T04:53:05Z</dc:date>
    </item>
    <item>
      <title>Re: Partions on Disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/partions-on-disk/m-p/3543007#M223640</link>
      <description>Hi Girish, &lt;BR /&gt;&lt;BR /&gt; I agree with Bernhard Mueller ,&lt;BR /&gt;&lt;BR /&gt; I have tried this in itanium, but i tried finding for post 9.X HPUX for PA-RISC but failed.&lt;BR /&gt;&lt;BR /&gt;  So to your question, The answer is yes as before.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;  Lets assume that your disk is 34 GB and u wanna make it 3 parts of 10 GB each,..then do as follows...lets say the device file is /dev/[r]dsk/c1t2d0...idisk is a interactive command. First answere yes ,when prompted if the data will be destroyed.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;#idisk -w -f - /dev/rdsk/c1t2d0&lt;BR /&gt;4&lt;BR /&gt;EFI 100MB&lt;BR /&gt;HPUX 10000MB&lt;BR /&gt;HPUX 10000MB&lt;BR /&gt;HPUX 10000MB&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;  I think you can use "3" instead of "4" and omit the "EFI" line, but i din't try that.&lt;BR /&gt;&lt;BR /&gt;  After issue of the above command, you need to get the hardware path of the disk "ioscan -funC disk"...&lt;BR /&gt;&lt;BR /&gt;then &lt;BR /&gt;&lt;BR /&gt;#insf -e -H "H/W path"&lt;BR /&gt;&lt;BR /&gt;  ex H/w path : 0/3/2/5/2.0.1.2&lt;BR /&gt;&lt;BR /&gt;Then do ioscan -funC disk , VOILA..you will have the following files...&lt;BR /&gt;/dev/[r]dsk/c1t2d0s0&lt;BR /&gt;/dev/[r]dsk/c1t2d0s1&lt;BR /&gt;/dev/[r]dsk/c1t2d0s2&lt;BR /&gt;/dev/[r]dsk/c1t2d0s3&lt;BR /&gt;&lt;BR /&gt;Do &lt;BR /&gt;&lt;BR /&gt;#diskinfo "on all the newly created raw device files and you can confirm the size".&lt;BR /&gt;&lt;BR /&gt;So the statement "a disk can only belong to one VG" ....hahaha..... its bursted as a myth atleast in itanium servers. I will try something for PA-RISC OS version...wish me luck......&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sun, 15 May 2005 05:43:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/partions-on-disk/m-p/3543007#M223640</guid>
      <dc:creator>Senthil Kumar .A_1</dc:creator>
      <dc:date>2005-05-15T05:43:27Z</dc:date>
    </item>
    <item>
      <title>Re: Partions on Disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/partions-on-disk/m-p/3543008#M223641</link>
      <description>It's amazing to see both answer YES|NO...actually i had made up my mind with "NO" becuase i was also thinking the same.&lt;BR /&gt;&lt;BR /&gt;Well Bernhard and Senthil kumar have cracked the funda with the idisk utility :). Well i am going to try that one and hopefully it should work.&lt;BR /&gt;&lt;BR /&gt;Well, point assignment was too early so both answers enjoys the rabbit.... &lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Girish..&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sun, 15 May 2005 09:41:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/partions-on-disk/m-p/3543008#M223641</guid>
      <dc:creator>Girish_17</dc:creator>
      <dc:date>2005-05-15T09:41:22Z</dc:date>
    </item>
  </channel>
</rss>

